backgroundVertexDeclaration.fx 363 B

123456789101112131415161718
  1. uniform mat4 view;
  2. uniform mat4 viewProjection;
  3. uniform float shadowLevel;
  4. #ifdef DIFFUSE
  5. uniform mat4 diffuseMatrix;
  6. uniform vec2 vDiffuseInfos;
  7. #endif
  8. #ifdef REFLECTION
  9. uniform vec2 vReflectionInfos;
  10. uniform mat4 reflectionMatrix;
  11. uniform vec3 vReflectionMicrosurfaceInfos;
  12. #endif
  13. #ifdef POINTSIZE
  14. uniform float pointSize;
  15. #endif