| 12345678910111213141516171819 |
- mixin PerObjectData
- {
- code
- {
- cbuffer PerObject
- {
- float4x4 gMatWorld;
- float4x4 gMatInvWorld;
- float4x4 gMatWorldNoScale;
- float4x4 gMatInvWorldNoScale;
- float gWorldDeterminantSign;
- }
- cbuffer PerCall
- {
- float4x4 gMatWorldViewProj;
- }
- };
- };
|