GizmoCommon.bslinc 198 B

1234567891011121314
  1. mixin GizmoCommon
  2. {
  3. code
  4. {
  5. cbuffer Uniforms
  6. {
  7. float4x4 gMatViewProj;
  8. float4 gViewDir;
  9. float gInvViewportWidth;
  10. float gInvViewportHeight;
  11. float gViewportYFlip;
  12. }
  13. };
  14. };