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
float3 lightPosition = { 100, 0, 1000 }; // This makes an implicit constant buffer, but the light position never assigned! | |
float3 CalcLightDir(float3 myPosition) | |
{ | |
return normalize(lightPosition - myPosition); | |
} |
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
static float3 lightPosition = { 100, 0, 1000 }; // 'static' needed. not 'const'! | |
float3 CalcLightDir(float3 myPosition) | |
{ | |
return normalize(lightPosition - myPosition); | |
} |
コードをモダン化するためにD3DX11Effectを取り除く作業中に分かり難いバグに遭遇したら、暗黙のコンスタントバッファがないか確認してみると良いかもしれません。
No comments:
Post a Comment