| 123456789101112131415161718192021 |
- mixin PerObjectData
- {
- code
- {
- [internal]
- cbuffer PerObject
- {
- float4x4 gMatWorld;
- float4x4 gMatInvWorld;
- float4x4 gMatWorldNoScale;
- float4x4 gMatInvWorldNoScale;
- float gWorldDeterminantSign;
- }
- [internal]
- cbuffer PerCall
- {
- float4x4 gMatWorldViewProj;
- }
- };
- };
|