GLES2.hlsl 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. #ifndef SHADER_API_GLES
  2. #error GLES.hlsl should not be included if SHADER_API_GLES is not defined
  3. #endif
  4. #define UNITY_UV_STARTS_AT_TOP 0
  5. #define UNITY_REVERSED_Z 0
  6. #define UNITY_NEAR_CLIP_VALUE (-1.0)
  7. // This value will not go through any matrix projection convertion
  8. #define UNITY_RAW_FAR_CLIP_VALUE (1.0)
  9. #define VERTEXID_SEMANTIC gl_VertexID
  10. #define INSTANCEID_SEMANTIC gl_InstanceID
  11. #define FRONT_FACE_SEMANTIC VFACE
  12. #define FRONT_FACE_TYPE float
  13. #define IS_FRONT_VFACE(VAL, FRONT, BACK) ((VAL > 0.0) ? (FRONT) : (BACK))
  14. #define CBUFFER_START(name)
  15. #define CBUFFER_END
  16. // flow control attributes
  17. #define UNITY_BRANCH [branch]
  18. #define UNITY_FLATTEN [flatten]
  19. #define UNITY_UNROLL [unroll]
  20. #define UNITY_UNROLLX(_x) [unroll(_x)]
  21. #define UNITY_LOOP [loop]
  22. #define uint int
  23. #define rcp(x) 1.0 / (x)
  24. #define ddx_fine ddx
  25. #define ddy_fine ddy
  26. #define asfloat
  27. #define asuint(x) asint(x)
  28. #define f32tof16
  29. #define f16tof32
  30. #define ERROR_ON_UNSUPPORTED_FUNCTION(funcName) #error #funcName is not supported on GLES 2.0
  31. // Initialize arbitrary structure with zero values.
  32. // Do not exist on some platform, in this case we need to have a standard name that call a function that will initialize all parameters to 0
  33. #define ZERO_INITIALIZE(type, name) name = (type)0;
  34. #define ZERO_INITIALIZE_ARRAY(type, name, arraySize) { for (int arrayIndex = 0; arrayIndex < arraySize; arrayIndex++) { name[arrayIndex] = (type)0; } }
  35. // GLES2 might not have shadow hardware comparison support
  36. #if defined(UNITY_ENABLE_NATIVE_SHADOWS_LOOKUPS)
  37. #define SHADOW2D_TEXTURE_AND_SAMPLER sampler2DShadow
  38. #define SHADOWCUBE_TEXTURE_AND_SAMPLER samplerCUBEShadow
  39. #define SHADOW2D_SAMPLE(textureName, samplerName, coord3) shadow2D(textureName, coord3)
  40. #define SHADOWCUBE_SAMPLE(textureName, samplerName, coord4) ((texCUBE(textureName,(coord4).xyz) < (coord4).w) ? 0.0 : 1.0)
  41. #else
  42. // emulate hardware comparison
  43. #define SHADOW2D_TEXTURE_AND_SAMPLER sampler2D_float
  44. #define SHADOWCUBE_TEXTURE_AND_SAMPLER samplerCUBE_float
  45. #define SHADOW2D_SAMPLE(textureName, samplerName, coord3) ((SAMPLE_DEPTH_TEXTURE(textureName, samplerName, (coord3).xy) < (coord3).z) ? 0.0 : 1.0)
  46. #define SHADOWCUBE_SAMPLE(textureName, samplerName, coord4) ((texCUBE(textureName,(coord4).xyz).r < (coord4).w) ? 0.0 : 1.0)
  47. #endif
  48. // Texture util abstraction
  49. #define CALCULATE_TEXTURE2D_LOD(textureName, samplerName, coord2) #error calculate Level of Detail not supported in GLES2
  50. // Texture abstraction
  51. #define TEXTURE2D(textureName) sampler2D textureName
  52. #define TEXTURE2D_ARRAY(textureName) samplerCUBE textureName // No support to texture2DArray
  53. #define TEXTURECUBE(textureName) samplerCUBE textureName
  54. #define TEXTURECUBE_ARRAY(textureName) samplerCUBE textureName // No supoport to textureCubeArray and can't emulate with texture2DArray
  55. #define TEXTURE3D(textureName) sampler3D textureName
  56. #define TEXTURE2D_FLOAT(textureName) sampler2D_float textureName
  57. #define TEXTURE2D_ARRAY_FLOAT(textureName) TEXTURECUBE_FLOAT(textureName) // No support to texture2DArray
  58. #define TEXTURECUBE_FLOAT(textureName) samplerCUBE_float textureName
  59. #define TEXTURECUBE_ARRAY_FLOAT(textureName) TEXTURECUBE_FLOAT(textureName) // No support to textureCubeArray
  60. #define TEXTURE3D_FLOAT(textureName) sampler3D_float textureName
  61. #define TEXTURE2D_HALF(textureName) sampler2D_half textureName
  62. #define TEXTURE2D_ARRAY_HALF(textureName) TEXTURECUBE_HALF(textureName) // No support to texture2DArray
  63. #define TEXTURECUBE_HALF(textureName) samplerCUBE_half textureName
  64. #define TEXTURECUBE_ARRAY_HALF(textureName) TEXTURECUBE_HALF(textureName) // No support to textureCubeArray
  65. #define TEXTURE3D_HALF(textureName) sampler3D_half textureName
  66. #define TEXTURE2D_SHADOW(textureName) SHADOW2D_TEXTURE_AND_SAMPLER textureName
  67. #define TEXTURE2D_ARRAY_SHADOW(textureName) TEXTURECUBE_SHADOW(textureName) // No support to texture array
  68. #define TEXTURECUBE_SHADOW(textureName) SHADOWCUBE_TEXTURE_AND_SAMPLER textureName
  69. #define TEXTURECUBE_ARRAY_SHADOW(textureName) TEXTURECUBE_SHADOW(textureName) // No support to texture array
  70. #define RW_TEXTURE2D(type, textureNam) ERROR_ON_UNSUPPORTED_FUNCTION(RWTexture2D)
  71. #define RW_TEXTURE2D_ARRAY(type, textureName) ERROR_ON_UNSUPPORTED_FUNCTION(RWTexture2DArray)
  72. #define RW_TEXTURE3D(type, textureNam) ERROR_ON_UNSUPPORTED_FUNCTION(RWTexture3D)
  73. #define SAMPLER(samplerName)
  74. #define SAMPLER_CMP(samplerName)
  75. #define TEXTURE2D_PARAM(textureName, samplerName) sampler2D textureName
  76. #define TEXTURE2D_ARRAY_PARAM(textureName, samplerName) samplerCUBE textureName
  77. #define TEXTURECUBE_PARAM(textureName, samplerName) samplerCUBE textureName
  78. #define TEXTURECUBE_ARRAY_PARAM(textureName, samplerName) samplerCUBE textureName
  79. #define TEXTURE3D_PARAM(textureName, samplerName) sampler3D textureName
  80. #define TEXTURE2D_SHADOW_PARAM(textureName, samplerName) SHADOW2D_TEXTURE_AND_SAMPLER textureName
  81. #define TEXTURE2D_ARRAY_SHADOW_PARAM(textureName, samplerName) SHADOWCUBE_TEXTURE_AND_SAMPLER textureName
  82. #define TEXTURECUBE_SHADOW_PARAM(textureName, samplerName) SHADOWCUBE_TEXTURE_AND_SAMPLER textureName
  83. #define TEXTURE2D_ARGS(textureName, samplerName) textureName
  84. #define TEXTURE2D_ARRAY_ARGS(textureName, samplerName) textureName
  85. #define TEXTURECUBE_ARGS(textureName, samplerName) textureName
  86. #define TEXTURECUBE_ARRAY_ARGS(textureName, samplerName) textureName
  87. #define TEXTURE3D_ARGS(textureName, samplerName) textureName
  88. #define TEXTURE2D_SHADOW_ARGS(textureName, samplerName) textureName
  89. #define TEXTURE2D_ARRAY_SHADOW_ARGS(textureName, samplerName) textureName
  90. #define TEXTURECUBE_SHADOW_ARGS(textureName, samplerName) textureName
  91. #define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2)
  92. #if (SHADER_TARGET >= 30)
  93. #define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0, lod))
  94. #else
  95. // No lod support. Very poor approximation with bias.
  96. #define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_BIAS(textureName, samplerName, coord2, lod)
  97. #endif
  98. #define SAMPLE_TEXTURE2D_BIAS(textureName, samplerName, coord2, bias) tex2Dbias(textureName, float4(coord2, 0, bias))
  99. #define SAMPLE_TEXTURE2D_GRAD(textureName, samplerName, coord2, ddx, ddy) SAMPLE_TEXTURE2D(textureName, samplerName, coord2)
  100. #define SAMPLE_TEXTURE2D_ARRAY(textureName, samplerName, coord2, index) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURE2D_ARRAY)
  101. #define SAMPLE_TEXTURE2D_ARRAY_LOD(textureName, samplerName, coord2, index, lod) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURE2D_ARRAY_LOD)
  102. #define SAMPLE_TEXTURE2D_ARRAY_BIAS(textureName, samplerName, coord2, index, bias) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURE2D_ARRAY_BIAS)
  103. #define SAMPLE_TEXTURE2D_ARRAY_GRAD(textureName, samplerName, coord2, index, dpdx, dpdy) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURE2D_ARRAY_GRAD)
  104. #define SAMPLE_TEXTURECUBE(textureName, samplerName, coord3) texCUBE(textureName, coord3)
  105. // No lod support. Very poor approximation with bias.
  106. #define SAMPLE_TEXTURECUBE_LOD(textureName, samplerName, coord3, lod) SAMPLE_TEXTURECUBE_BIAS(textureName, samplerName, coord3, lod)
  107. #define SAMPLE_TEXTURECUBE_BIAS(textureName, samplerName, coord3, bias) texCUBEbias(textureName, float4(coord3, bias))
  108. #define SAMPLE_TEXTURECUBE_ARRAY(textureName, samplerName, coord3, index) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURECUBE_ARRAY)
  109. #define SAMPLE_TEXTURECUBE_ARRAY_LOD(textureName, samplerName, coord3, index, lod) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURECUBE_ARRAY_LOD)
  110. #define SAMPLE_TEXTURECUBE_ARRAY_BIAS(textureName, samplerName, coord3, index, bias) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURECUBE_ARRAY_BIAS)
  111. #define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3)
  112. #define SAMPLE_TEXTURE3D_LOD(textureName, samplerName, coord3, lod) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURE3D_LOD)
  113. #define SAMPLE_TEXTURE2D_SHADOW(textureName, samplerName, coord3) SHADOW2D_SAMPLE(textureName, samplerName, coord3)
  114. #define SAMPLE_TEXTURE2D_ARRAY_SHADOW(textureName, samplerName, coord3, index) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURE2D_ARRAY_SHADOW)
  115. #define SAMPLE_TEXTURECUBE_SHADOW(textureName, samplerName, coord4) SHADOWCUBE_SAMPLE(textureName, samplerName, coord4)
  116. #define SAMPLE_TEXTURECUBE_ARRAY_SHADOW(textureName, samplerName, coord4, index) ERROR_ON_UNSUPPORTED_FUNCTION(SAMPLE_TEXTURECUBE_ARRAY_SHADOW)
  117. #define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r
  118. #define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r
  119. // Not supported. Can't define as error because shader library is calling these functions.
  120. #define LOAD_TEXTURE2D(textureName, unCoord2) half4(0, 0, 0, 0)
  121. #define LOAD_TEXTURE2D_LOD(textureName, unCoord2, lod) half4(0, 0, 0, 0)
  122. #define LOAD_TEXTURE2D_MSAA(textureName, unCoord2, sampleIndex) half4(0, 0, 0, 0)
  123. #define LOAD_TEXTURE2D_ARRAY(textureName, unCoord2, index) half4(0, 0, 0, 0)
  124. #define LOAD_TEXTURE2D_ARRAY_MSAA(textureName, unCoord2, index, sampleIndex) half4(0, 0, 0, 0)
  125. #define LOAD_TEXTURE2D_ARRAY_LOD(textureName, unCoord2, index, lod) half4(0, 0, 0, 0)
  126. #define LOAD_TEXTURE3D(textureName, unCoord3) ERROR_ON_UNSUPPORTED_FUNCTION(LOAD_TEXTURE3D)
  127. #define LOAD_TEXTURE3D_LOD(textureName, unCoord3, lod) ERROR_ON_UNSUPPORTED_FUNCTION(LOAD_TEXTURE3D_LOD)
  128. // Gather not supported. Fallback to regular texture sampling.
  129. #define GATHER_TEXTURE2D(textureName, samplerName, coord2) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_TEXTURE2D)
  130. #define GATHER_TEXTURE2D_ARRAY(textureName, samplerName, coord2, index) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_TEXTURE2D_ARRAY)
  131. #define GATHER_TEXTURECUBE(textureName, samplerName, coord3) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_TEXTURECUBE)
  132. #define GATHER_TEXTURECUBE_ARRAY(textureName, samplerName, coord3, index) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_TEXTURECUBE_ARRAY)
  133. #define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_RED_TEXTURE2D)
  134. #define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_GREEN_TEXTURE2D)
  135. #define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_BLUE_TEXTURE2D)
  136. #define GATHER_ALPHA_TEXTURE2D(textureName, samplerName, coord2) ERROR_ON_UNSUPPORTED_FUNCTION(GATHER_ALPHA_TEXTURE2D)