UnityInput.hlsl 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. // UNITY_SHADER_NO_UPGRADE
  2. #ifndef UNIVERSAL_SHADER_VARIABLES_INCLUDED
  3. #define UNIVERSAL_SHADER_VARIABLES_INCLUDED
  4. #if defined(STEREO_INSTANCING_ON) && (defined(SHADER_API_D3D11) || defined(SHADER_API_GLES3) || defined(SHADER_API_GLCORE) || defined(SHADER_API_PSSL) || defined(SHADER_API_VULKAN))
  5. #define UNITY_STEREO_INSTANCING_ENABLED
  6. #endif
  7. #if defined(STEREO_MULTIVIEW_ON) && (defined(SHADER_API_GLES3) || defined(SHADER_API_GLCORE) || defined(SHADER_API_VULKAN)) && !(defined(SHADER_API_SWITCH))
  8. #define UNITY_STEREO_MULTIVIEW_ENABLED
  9. #endif
  10. #if defined(UNITY_SINGLE_PASS_STEREO) || defined(UNITY_STEREO_INSTANCING_ENABLED) || defined(UNITY_STEREO_MULTIVIEW_ENABLED)
  11. #define USING_STEREO_MATRICES
  12. #endif
  13. #if defined(USING_STEREO_MATRICES)
  14. #define glstate_matrix_projection unity_StereoMatrixP[unity_StereoEyeIndex]
  15. #define unity_MatrixV unity_StereoMatrixV[unity_StereoEyeIndex]
  16. #define unity_MatrixInvV unity_StereoMatrixInvV[unity_StereoEyeIndex]
  17. #define unity_MatrixVP unity_StereoMatrixVP[unity_StereoEyeIndex]
  18. #define unity_CameraProjection unity_StereoCameraProjection[unity_StereoEyeIndex]
  19. #define unity_CameraInvProjection unity_StereoCameraInvProjection[unity_StereoEyeIndex]
  20. #define unity_WorldToCamera unity_StereoWorldToCamera[unity_StereoEyeIndex]
  21. #define unity_CameraToWorld unity_StereoCameraToWorld[unity_StereoEyeIndex]
  22. #define _WorldSpaceCameraPos unity_StereoWorldSpaceCameraPos[unity_StereoEyeIndex]
  23. #endif
  24. #define UNITY_LIGHTMODEL_AMBIENT (glstate_lightmodel_ambient * 2)
  25. // ----------------------------------------------------------------------------
  26. // Time (t = time since current level load) values from Unity
  27. float4 _Time; // (t/20, t, t*2, t*3)
  28. float4 _SinTime; // sin(t/8), sin(t/4), sin(t/2), sin(t)
  29. float4 _CosTime; // cos(t/8), cos(t/4), cos(t/2), cos(t)
  30. float4 unity_DeltaTime; // dt, 1/dt, smoothdt, 1/smoothdt
  31. float4 _TimeParameters; // t, sin(t), cos(t)
  32. #if !defined(USING_STEREO_MATRICES)
  33. float3 _WorldSpaceCameraPos;
  34. #endif
  35. // x = 1 or -1 (-1 if projection is flipped)
  36. // y = near plane
  37. // z = far plane
  38. // w = 1/far plane
  39. float4 _ProjectionParams;
  40. // x = width
  41. // y = height
  42. // z = 1 + 1.0/width
  43. // w = 1 + 1.0/height
  44. float4 _ScreenParams;
  45. // Values used to linearize the Z buffer (http://www.humus.name/temp/Linearize%20depth.txt)
  46. // x = 1-far/near
  47. // y = far/near
  48. // z = x/far
  49. // w = y/far
  50. // or in case of a reversed depth buffer (UNITY_REVERSED_Z is 1)
  51. // x = -1+far/near
  52. // y = 1
  53. // z = x/far
  54. // w = 1/far
  55. float4 _ZBufferParams;
  56. // x = orthographic camera's width
  57. // y = orthographic camera's height
  58. // z = unused
  59. // w = 1.0 if camera is ortho, 0.0 if perspective
  60. float4 unity_OrthoParams;
  61. float4 unity_CameraWorldClipPlanes[6];
  62. #if !defined(USING_STEREO_MATRICES)
  63. // Projection matrices of the camera. Note that this might be different from projection matrix
  64. // that is set right now, e.g. while rendering shadows the matrices below are still the projection
  65. // of original camera.
  66. float4x4 unity_CameraProjection;
  67. float4x4 unity_CameraInvProjection;
  68. float4x4 unity_WorldToCamera;
  69. float4x4 unity_CameraToWorld;
  70. #endif
  71. // ----------------------------------------------------------------------------
  72. // Block Layout should be respected due to SRP Batcher
  73. CBUFFER_START(UnityPerDraw)
  74. // Space block Feature
  75. float4x4 unity_ObjectToWorld;
  76. float4x4 unity_WorldToObject;
  77. float4 unity_LODFade; // x is the fade value ranging within [0,1]. y is x quantized into 16 levels
  78. real4 unity_WorldTransformParams; // w is usually 1.0, or -1.0 for odd-negative scale transforms
  79. // Light Indices block feature
  80. // These are set internally by the engine upon request by RendererConfiguration.
  81. real4 unity_LightData;
  82. real4 unity_LightIndices[2];
  83. float4 unity_ProbesOcclusion;
  84. // Reflection Probe 0 block feature
  85. // HDR environment map decode instructions
  86. real4 unity_SpecCube0_HDR;
  87. // Lightmap block feature
  88. float4 unity_LightmapST;
  89. float4 unity_DynamicLightmapST;
  90. // SH block feature
  91. real4 unity_SHAr;
  92. real4 unity_SHAg;
  93. real4 unity_SHAb;
  94. real4 unity_SHBr;
  95. real4 unity_SHBg;
  96. real4 unity_SHBb;
  97. real4 unity_SHC;
  98. CBUFFER_END
  99. #if defined(UNITY_STEREO_MULTIVIEW_ENABLED) || ((defined(UNITY_SINGLE_PASS_STEREO) || defined(UNITY_STEREO_INSTANCING_ENABLED)) && (defined(SHADER_API_GLCORE) || defined(SHADER_API_GLES3) || defined(SHADER_API_METAL) || defined(SHADER_API_VULKAN)))
  100. #define GLOBAL_CBUFFER_START(name) cbuffer name {
  101. #define GLOBAL_CBUFFER_END }
  102. #else
  103. #define GLOBAL_CBUFFER_START(name) CBUFFER_START(name)
  104. #define GLOBAL_CBUFFER_END CBUFFER_END
  105. #endif
  106. #if defined(USING_STEREO_MATRICES)
  107. GLOBAL_CBUFFER_START(UnityStereoGlobals)
  108. float4x4 unity_StereoMatrixP[2];
  109. float4x4 unity_StereoMatrixV[2];
  110. float4x4 unity_StereoMatrixInvV[2];
  111. float4x4 unity_StereoMatrixVP[2];
  112. float4x4 unity_StereoCameraProjection[2];
  113. float4x4 unity_StereoCameraInvProjection[2];
  114. float4x4 unity_StereoWorldToCamera[2];
  115. float4x4 unity_StereoCameraToWorld[2];
  116. float3 unity_StereoWorldSpaceCameraPos[2];
  117. float4 unity_StereoScaleOffset[2];
  118. GLOBAL_CBUFFER_END
  119. #endif
  120. #if defined(USING_STEREO_MATRICES) && defined(UNITY_STEREO_MULTIVIEW_ENABLED)
  121. GLOBAL_CBUFFER_START(UnityStereoEyeIndices)
  122. float4 unity_StereoEyeIndices[2];
  123. GLOBAL_CBUFFER_END
  124. #endif
  125. #if defined(UNITY_STEREO_MULTIVIEW_ENABLED) && defined(SHADER_STAGE_VERTEX)
  126. // OVR_multiview
  127. // In order to convey this info over the DX compiler, we wrap it into a cbuffer.
  128. #if !defined(UNITY_DECLARE_MULTIVIEW)
  129. #define UNITY_DECLARE_MULTIVIEW(number_of_views) GLOBAL_CBUFFER_START(OVR_multiview) uint gl_ViewID; uint numViews_##number_of_views; GLOBAL_CBUFFER_END
  130. #define UNITY_VIEWID gl_ViewID
  131. #endif
  132. #endif
  133. #if defined(UNITY_STEREO_MULTIVIEW_ENABLED) && defined(SHADER_STAGE_VERTEX)
  134. #define unity_StereoEyeIndex UNITY_VIEWID
  135. UNITY_DECLARE_MULTIVIEW(2);
  136. #elif defined(UNITY_STEREO_INSTANCING_ENABLED) || defined(UNITY_STEREO_MULTIVIEW_ENABLED)
  137. static uint unity_StereoEyeIndex;
  138. #elif defined(UNITY_SINGLE_PASS_STEREO)
  139. GLOBAL_CBUFFER_START(UnityStereoEyeIndex)
  140. int unity_StereoEyeIndex;
  141. GLOBAL_CBUFFER_END
  142. #endif
  143. float4x4 glstate_matrix_transpose_modelview0;
  144. // ----------------------------------------------------------------------------
  145. real4 glstate_lightmodel_ambient;
  146. real4 unity_AmbientSky;
  147. real4 unity_AmbientEquator;
  148. real4 unity_AmbientGround;
  149. real4 unity_IndirectSpecColor;
  150. float4 unity_FogParams;
  151. real4 unity_FogColor;
  152. #if !defined(USING_STEREO_MATRICES)
  153. float4x4 glstate_matrix_projection;
  154. float4x4 unity_MatrixV;
  155. float4x4 unity_MatrixInvV;
  156. float4x4 unity_MatrixVP;
  157. float4 unity_StereoScaleOffset;
  158. int unity_StereoEyeIndex;
  159. #endif
  160. real4 unity_ShadowColor;
  161. // ----------------------------------------------------------------------------
  162. // Unity specific
  163. TEXTURECUBE(unity_SpecCube0);
  164. SAMPLER(samplerunity_SpecCube0);
  165. // Main lightmap
  166. TEXTURE2D(unity_Lightmap);
  167. SAMPLER(samplerunity_Lightmap);
  168. // Dual or directional lightmap (always used with unity_Lightmap, so can share sampler)
  169. TEXTURE2D(unity_LightmapInd);
  170. // We can have shadowMask only if we have lightmap, so no sampler
  171. TEXTURE2D(unity_ShadowMask);
  172. // ----------------------------------------------------------------------------
  173. // TODO: all affine matrices should be 3x4.
  174. // TODO: sort these vars by the frequency of use (descending), and put commonly used vars together.
  175. // Note: please use UNITY_MATRIX_X macros instead of referencing matrix variables directly.
  176. float4x4 _PrevViewProjMatrix;
  177. float4x4 _ViewProjMatrix;
  178. float4x4 _NonJitteredViewProjMatrix;
  179. float4x4 _ViewMatrix;
  180. float4x4 _ProjMatrix;
  181. float4x4 _InvViewProjMatrix;
  182. float4x4 _InvViewMatrix;
  183. float4x4 _InvProjMatrix;
  184. float4 _InvProjParam;
  185. float4 _ScreenSize; // {w, h, 1/w, 1/h}
  186. float4 _FrustumPlanes[6]; // {(a, b, c) = N, d = -dot(N, P)} [L, R, T, B, N, F]
  187. float4x4 OptimizeProjectionMatrix(float4x4 M)
  188. {
  189. // Matrix format (x = non-constant value).
  190. // Orthographic Perspective Combined(OR)
  191. // | x 0 0 x | | x 0 x 0 | | x 0 x x |
  192. // | 0 x 0 x | | 0 x x 0 | | 0 x x x |
  193. // | x x x x | | x x x x | | x x x x | <- oblique projection row
  194. // | 0 0 0 1 | | 0 0 x 0 | | 0 0 x x |
  195. // Notice that some values are always 0.
  196. // We can avoid loading and doing math with constants.
  197. M._21_41 = 0;
  198. M._12_42 = 0;
  199. return M;
  200. }
  201. #endif // UNIVERSAL_SHADER_VARIABLES_INCLUDED