Created
March 18, 2020 13:35
-
-
Save ryutorion/2d85307766eb8bae9abd9ad7a6aebb9a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cbuffer model | |
{ | |
float4x3 world; | |
}; | |
float4 VS(float4 position : POSITION) : SV_POSITION | |
{ | |
return float4(mul(position, world), 1.0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment