-
-
Save ryutorion/ae6424eddd7918e8ac41ab7fc3cdbd4d 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 | |
{ | |
float4x4 world; | |
}; | |
float4 VS(float4 position : POSITION) : SV_POSITION | |
{ | |
return mul(position, world); | |
// return mul(world, position); | |
} |
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
// | |
// Generated by Microsoft (R) HLSL Shader Compiler 10.1 | |
// | |
// | |
// Buffer Definitions: | |
// | |
// cbuffer model | |
// { | |
// | |
// float4x4 world; // Offset: 0 Size: 64 | |
// | |
// } | |
// | |
// | |
// Resource Bindings: | |
// | |
// Name Type Format Dim HLSL Bind Count | |
// ------------------------------ ---------- ------- ----------- -------------- ------ | |
// model cbuffer NA NA cb0 1 | |
// | |
// | |
// | |
// Input signature: | |
// | |
// Name Index Mask Register SysValue Format Used | |
// -------------------- ----- ------ -------- -------- ------- ------ | |
// POSITION 0 xyzw 0 NONE float xyzw | |
// | |
// | |
// Output signature: | |
// | |
// Name Index Mask Register SysValue Format Used | |
// -------------------- ----- ------ -------- -------- ------- ------ | |
// SV_POSITION 0 xyzw 0 POS float xyzw | |
// | |
vs_5_0 | |
dcl_globalFlags refactoringAllowed | |
dcl_constantbuffer CB0[4], immediateIndexed | |
dcl_input v0.xyzw | |
dcl_output_siv o0.xyzw, position | |
dcl_temps 1 | |
mul r0.xyzw, v0.yyyy, cb0[1].xyzw | |
mad r0.xyzw, cb0[0].xyzw, v0.xxxx, r0.xyzw | |
mad r0.xyzw, cb0[2].xyzw, v0.zzzz, r0.xyzw | |
mad o0.xyzw, cb0[3].xyzw, v0.wwww, r0.xyzw | |
ret | |
// Approximately 5 instruction slots used |
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
// | |
// Generated by Microsoft (R) HLSL Shader Compiler 10.1 | |
// | |
// | |
// Buffer Definitions: | |
// | |
// cbuffer model | |
// { | |
// | |
// float4x4 world; // Offset: 0 Size: 64 | |
// | |
// } | |
// | |
// | |
// Resource Bindings: | |
// | |
// Name Type Format Dim HLSL Bind Count | |
// ------------------------------ ---------- ------- ----------- -------------- ------ | |
// model cbuffer NA NA cb0 1 | |
// | |
// | |
// | |
// Input signature: | |
// | |
// Name Index Mask Register SysValue Format Used | |
// -------------------- ----- ------ -------- -------- ------- ------ | |
// POSITION 0 xyzw 0 NONE float xyzw | |
// | |
// | |
// Output signature: | |
// | |
// Name Index Mask Register SysValue Format Used | |
// -------------------- ----- ------ -------- -------- ------- ------ | |
// SV_POSITION 0 xyzw 0 POS float xyzw | |
// | |
vs_5_0 | |
dcl_globalFlags refactoringAllowed | |
dcl_constantbuffer CB0[4], immediateIndexed | |
dcl_input v0.xyzw | |
dcl_output_siv o0.xyzw, position | |
dp4 o0.x, v0.xyzw, cb0[0].xyzw | |
dp4 o0.y, v0.xyzw, cb0[1].xyzw | |
dp4 o0.z, v0.xyzw, cb0[2].xyzw | |
dp4 o0.w, v0.xyzw, cb0[3].xyzw | |
ret | |
// Approximately 5 instruction slots used |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment