ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 1 | STRINGIFY( |
| 2 | |
| 3 | // defines built-in functions supported by SkiaSL |
| 4 | |
| 5 | $genType radians($genType degrees); |
| 6 | $genType sin($genType angle); |
| 7 | $genType cos($genType angle); |
| 8 | $genType tan($genType angle); |
| 9 | $genType asin($genType x); |
| 10 | $genType acos($genType x); |
| 11 | $genType atan($genType y, $genType x); |
| 12 | $genType atan($genType y_over_x); |
| 13 | $genType sinh($genType x); |
| 14 | $genType cosh($genType x); |
| 15 | $genType tanh($genType x); |
| 16 | $genType asinh($genType x); |
| 17 | $genType acosh($genType x); |
| 18 | $genType atanh($genType x); |
| 19 | $genType pow($genType x, $genType y); |
| 20 | $genType exp($genType x); |
| 21 | $genType log($genType x); |
| 22 | $genType exp2($genType x); |
| 23 | $genType log2($genType x); |
| 24 | $genType sqrt($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 25 | //$genDType sqrt($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 26 | $genType inversesqrt($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 27 | //$genDType inversesqrt($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 28 | $genType abs($genType x); |
| 29 | $genIType abs($genIType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 30 | //$genDType abs($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 31 | $genType sign($genType x); |
| 32 | $genIType sign($genIType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 33 | //$genDType sign($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 34 | $genType floor($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 35 | //$genDType floor($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 36 | $genType trunc($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 37 | //$genDType trunc($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 38 | $genType round($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 39 | //$genDType round($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 40 | $genType roundEven($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 41 | //$genDType roundEven($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 42 | $genType ceil($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 43 | //$genDType ceil($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 44 | $genType fract($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 45 | //$genDType fract($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 46 | $genType mod($genType x, float y); |
| 47 | $genType mod($genType x, $genType y); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 48 | //$genDType mod($genDType x, double y); |
| 49 | //$genDType mod($genDType x, $genDType y); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 50 | $genType modf($genType x, out $genType i); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 51 | //$genDType modf($genDType x, out $genDType i); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 52 | $genType min($genType x, $genType y); |
| 53 | $genType min($genType x, float y); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 54 | //$genDType min($genDType x, $genDType y); |
| 55 | //$genDType min($genDType x, double y); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 56 | $genIType min($genIType x, $genIType y); |
| 57 | $genIType min($genIType x, int y); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 58 | //$genUType min($genUType x, $genUType y); |
| 59 | //$genUType min($genUType x, uint y); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 60 | $genType max($genType x, $genType y); |
| 61 | $genType max($genType x, float y); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 62 | //$genDType max($genDType x, $genDType y); |
| 63 | //$genDType max($genDType x, double y); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 64 | $genIType max($genIType x, $genIType y); |
| 65 | $genIType max($genIType x, int y); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 66 | //$genUType max($genUType x, $genUType y); |
| 67 | //$genUType max($genUType x, uint y); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 68 | $genType clamp($genType x, $genType minVal, $genType maxVal); |
| 69 | $genType clamp($genType x, float minVal, float maxVal); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 70 | //$genDType clamp($genDType x, $genDType minVal, $genDType maxVal); |
| 71 | //$genDType clamp($genDType x, double minVal, double maxVal); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 72 | $genIType clamp($genIType x, $genIType minVal, $genIType maxVal); |
| 73 | $genIType clamp($genIType x, int minVal, int maxVal); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 74 | //$genUType clamp($genUType x, $genUType minVal, $genUType maxVal); |
| 75 | //$genUType clamp($genUType x, uint minVal, uint maxVal); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 76 | $genType mix($genType x, $genType y, $genType a); |
| 77 | $genType mix($genType x, $genType y, float a); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 78 | //$genDType mix($genDType x, $genDType y, $genDType a); |
| 79 | //$genDType mix($genDType x, $genDType y, double a); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 80 | $genType mix($genType x, $genType y, $genBType a); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 81 | //$genDType mix($genDType x, $genDType y, $genBType a); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 82 | $genIType mix($genIType x, $genIType y, $genBType a); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 83 | //$genUType mix($genUType x, $genUType y, $genBType a); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 84 | $genBType mix($genBType x, $genBType y, $genBType a); |
| 85 | $genType step($genType edge, $genType x); |
| 86 | $genType step(float edge, $genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 87 | //$genDType step($genDType edge, $genDType x); |
| 88 | //$genDType step(double edge, $genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 89 | $genType smoothstep($genType edge0, $genType edge1, $genType x); |
| 90 | $genType smoothstep(float edge0, float edge1, $genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 91 | //$genDType smoothstep($genDType edge0, $genDType edge1, $genDType x); |
| 92 | //$genDType smoothstep(double edge0, double edge1, $genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 93 | $genBType isnan($genType x); |
| 94 | $genBType isnan($genDType x); |
| 95 | $genBType isinf($genType x); |
| 96 | $genBType isinf($genDType x); |
| 97 | $genIType floatBitsToInt($genType value); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 98 | //$genUType floatBitsToUint($genType value); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 99 | $genType intBitsToFloat($genIType value); |
| 100 | $genType uintBitsToFloat($genUType value); |
| 101 | $genType fma($genType a, $genType b, $genType c); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 102 | //$genDType fma($genDType a, $genDType b, $genDType c); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 103 | $genType frexp($genType x, out $genIType exp); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 104 | //$genDType frexp($genDType x, out $genIType exp); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 105 | $genType ldexp($genType x, in $genIType exp); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 106 | //$genDType ldexp($genDType x, in $genIType exp); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 107 | uint packUnorm2x16(vec2 v); |
| 108 | uint packSnorm2x16(vec2 v); |
| 109 | uint packUnorm4x8(vec4 v); |
| 110 | uint packSnorm4x8(vec4 v); |
| 111 | vec2 unpackUnorm2x16(uint p); |
| 112 | vec2 unpackSnorm2x16(uint p); |
| 113 | vec4 unpackUnorm4x8(uint p); |
| 114 | vec4 unpackSnorm4x8(uint p); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 115 | //double packDouble2x32(uvec2 v); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 116 | uvec2 unpackDouble2x32(double v); |
| 117 | uint packHalf2x16(vec2 v); |
| 118 | vec2 unpackHalf2x16(uint v); |
| 119 | float length($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 120 | //double length($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 121 | float distance($genType p0, $genType p1); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 122 | //double distance($genDType p0, $genDType p1); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 123 | float dot($genType x, $genType y); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 124 | //double dot($genDType x, $genDType y); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 125 | vec3 cross(vec3 x, vec3 y); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 126 | //dvec3 cross(dvec3 x, dvec3 y); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 127 | $genType normalize($genType x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 128 | //$genDType normalize($genDType x); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 129 | vec4 ftransform(); |
| 130 | $genType faceforward($genType N, $genType I, $genType Nref); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 131 | //$genDType faceforward($genDType N, $genDType I, $genDType Nref); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 132 | $genType reflect($genType I, $genType N); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 133 | //$genDType reflect($genDType I, $genDType N); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 134 | $genType refract($genType I, $genType N, float eta); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 135 | //$genDType refract($genDType I, $genDType N, float eta); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 136 | $mat matrixCompMult($mat x, $mat y); |
| 137 | mat2 outerProduct(vec2 c, vec2 r); |
| 138 | mat3 outerProduct(vec3 c, vec3 r); |
| 139 | mat4 outerProduct(vec4 c, vec4 r); |
| 140 | mat2x3 outerProduct(vec3 c, vec2 r); |
| 141 | mat3x2 outerProduct(vec2 c, vec3 r); |
| 142 | mat2x4 outerProduct(vec4 c, vec2 r); |
| 143 | mat4x2 outerProduct(vec2 c, vec4 r); |
| 144 | mat3x4 outerProduct(vec4 c, vec3 r); |
| 145 | mat4x3 outerProduct(vec3 c, vec4 r); |
| 146 | mat2 transpose(mat2 m); |
| 147 | mat3 transpose(mat3 m); |
| 148 | mat4 transpose(mat4 m); |
| 149 | mat2x3 transpose(mat3x2 m); |
| 150 | mat3x2 transpose(mat2x3 m); |
| 151 | mat2x4 transpose(mat4x2 m); |
| 152 | mat4x2 transpose(mat2x4 m); |
| 153 | mat3x4 transpose(mat4x3 m); |
| 154 | mat4x3 transpose(mat3x4 m); |
| 155 | float determinant(mat2 m); |
| 156 | float determinant(mat3 m); |
| 157 | float determinant(mat4 m); |
| 158 | mat2 inverse(mat2 m); |
| 159 | mat3 inverse(mat3 m); |
| 160 | mat4 inverse(mat4 m); |
| 161 | $bvec lessThan($vec x, $vec y); |
| 162 | $bvec lessThan($ivec x, $ivec y); |
| 163 | $bvec lessThan($uvec x, $uvec y); |
| 164 | $bvec lessThanEqual($vec x, $vec y); |
| 165 | $bvec lessThanEqual($ivec x, $ivec y); |
| 166 | $bvec lessThanEqual($uvec x, $uvec y); |
| 167 | $bvec greaterThan($vec x, $vec y); |
| 168 | $bvec greaterThan($ivec x, $ivec y); |
| 169 | $bvec greaterThan($uvec x, $uvec y); |
| 170 | $bvec greaterThanEqual($vec x, $vec y); |
| 171 | $bvec greaterThanEqual($ivec x, $ivec y); |
| 172 | $bvec greaterThanEqual($uvec x, $uvec y); |
| 173 | $bvec equal($vec x, $vec y); |
| 174 | $bvec equal($ivec x, $ivec y); |
| 175 | $bvec equal($uvec x, $uvec y); |
| 176 | $bvec equal($bvec x, $bvec y); |
| 177 | $bvec notEqual($vec x, $vec y); |
| 178 | $bvec notEqual($ivec x, $ivec y); |
| 179 | $bvec notEqual($uvec x, $uvec y); |
| 180 | $bvec notEqual($bvec x, $bvec y); |
| 181 | bool any($bvec x); |
| 182 | bool all($bvec x); |
| 183 | $bvec not($bvec x); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 184 | |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 185 | $genIType bitCount($genIType value); |
| 186 | $genIType bitCount($genUType value); |
| 187 | $genIType findLSB($genIType value); |
| 188 | $genIType findLSB($genUType value); |
| 189 | $genIType findMSB($genIType value); |
| 190 | $genIType findMSB($genUType value); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 191 | |
| 192 | /* |
| 193 | //$genUType uaddCarry($genUType x, $genUType y, out $genUType carry); |
| 194 | //$genUType usubBorrow($genUType x, $genUType y, out $genUType borrow); |
| 195 | void umulExtended($genUType x, $genUType y, out $genUType msb, out $genUType lsb); |
| 196 | void imulExtended($genIType x, $genIType y, out $genIType msb, out $genIType lsb); |
| 197 | $genIType bitfieldExtract($genIType value, int offset, int bits); |
| 198 | //$genUType bitfieldExtract($genUType value, int offset, int bits); |
| 199 | $genIType bitfieldInsert($genIType base, $genIType insert, int offset, int bits); |
| 200 | //$genUType bitfieldInsert($genUType base, $genUType insert, int offset, int bits); |
| 201 | $genIType bitfieldReverse($genIType value); |
| 202 | //$genUType bitfieldReverse($genUType value); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 203 | int textureSize($gsampler1D sampler, int lod); |
| 204 | ivec2 textureSize($gsampler2D sampler, int lod); |
| 205 | ivec3 textureSize($gsampler3D sampler, int lod); |
| 206 | ivec2 textureSize($gsamplerCube sampler, int lod); |
| 207 | int textureSize(sampler1DShadow sampler, int lod); |
| 208 | ivec2 textureSize(sampler2DShadow sampler, int lod); |
| 209 | ivec2 textureSize(samplerCubeShadow sampler, int lod); |
| 210 | ivec3 textureSize($gsamplerCubeArray sampler, int lod); |
| 211 | ivec3 textureSize(samplerCubeArrayShadow sampler, int lod); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 212 | */ |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 213 | ivec2 textureSize($gsampler2DRect sampler); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 214 | /* |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 215 | ivec2 textureSize(sampler2DRectShadow sampler); |
| 216 | ivec2 textureSize($gsampler1DArray sampler, int lod); |
| 217 | ivec3 textureSize($gsampler2DArray sampler, int lod); |
| 218 | ivec2 textureSize(sampler1DArrayShadow sampler, int lod); |
| 219 | ivec3 textureSize(sampler2DArrayShadow sampler, int lod); |
| 220 | int textureSize($gsamplerBuffer sampler); |
| 221 | ivec2 textureSize($gsampler2DMS sampler); |
| 222 | ivec3 textureSize($gsampler2DMSArray sampler); |
| 223 | vec2 textureQueryLod($gsampler1D sampler, float P); |
| 224 | vec2 textureQueryLod($gsampler2D sampler, vec2 P); |
| 225 | vec2 textureQueryLod($gsampler3D sampler, vec3 P); |
| 226 | vec2 textureQueryLod($gsamplerCube sampler, vec3 P); |
| 227 | vec2 textureQueryLod($gsampler1DArray sampler, float P); |
| 228 | vec2 textureQueryLod($gsampler2DArray sampler, vec2 P); |
| 229 | vec2 textureQueryLod($gsamplerCubeArray sampler, vec3 P); |
| 230 | vec2 textureQueryLod(sampler1DShadow sampler, float P); |
| 231 | vec2 textureQueryLod(sampler2DShadow sampler, vec2 P); |
| 232 | vec2 textureQueryLod(samplerCubeShadow sampler, vec3 P); |
| 233 | vec2 textureQueryLod(sampler1DArrayShadow sampler, float P); |
| 234 | vec2 textureQueryLod(sampler2DArrayShadow sampler, vec2 P); |
| 235 | vec2 textureQueryLod(samplerCubeArrayShadow sampler, vec3 P); |
| 236 | int textureQueryLevels($gsampler1D sampler); |
| 237 | int textureQueryLevels($gsampler2D sampler); |
| 238 | int textureQueryLevels($gsampler3D sampler); |
| 239 | int textureQueryLevels($gsamplerCube sampler); |
| 240 | int textureQueryLevels($gsampler1DArray sampler); |
| 241 | int textureQueryLevels($gsampler2DArray sampler); |
| 242 | int textureQueryLevels($gsamplerCubeArray sampler); |
| 243 | int textureQueryLevels(sampler1DShadow sampler); |
| 244 | int textureQueryLevels(sampler2DShadow sampler); |
| 245 | int textureQueryLevels(samplerCubeShadow sampler); |
| 246 | int textureQueryLevels(sampler1DArrayShadow sampler); |
| 247 | int textureQueryLevels(sampler2DArrayShadow sampler); |
| 248 | int textureQueryLevels(samplerCubeArrayShadow sampler); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 249 | */ |
| 250 | |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 251 | $gvec4 texture($gsampler1D sampler, float P); |
| 252 | $gvec4 texture($gsampler1D sampler, float P, float bias); |
| 253 | $gvec4 texture($gsampler2D sampler, vec2 P); |
ethannicholas | 5961bc9 | 2016-10-12 06:39:56 -0700 | [diff] [blame] | 254 | vec4 texture(samplerExternalOES sampler, vec2 P, float bias); |
| 255 | vec4 texture(samplerExternalOES sampler, vec2 P); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 256 | |
| 257 | /* |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 258 | $gvec4 texture($gsampler2D sampler, vec2 P, float bias); |
| 259 | $gvec4 texture($gsampler3D sampler, vec3 P); |
| 260 | $gvec4 texture($gsampler3D sampler, vec3 P, float bias); |
| 261 | $gvec4 texture($gsamplerCube sampler, vec3 P); |
| 262 | $gvec4 texture($gsamplerCube sampler, vec3 P, float bias); |
| 263 | float texture(sampler1DShadow sampler, vec3 P); |
| 264 | float texture(sampler1DShadow sampler, vec3 P, float bias); |
| 265 | float texture(sampler2DShadow sampler, vec3 P); |
| 266 | float texture(sampler2DShadow sampler, vec3 P, float bias); |
| 267 | float texture(samplerCubeShadow sampler, vec4 P); |
| 268 | float texture(samplerCubeShadow sampler, vec4 P, float bias); |
| 269 | $gvec4 texture($gsampler1DArray sampler, vec2 P); |
| 270 | $gvec4 texture($gsampler1DArray sampler, vec2 P, float bias); |
| 271 | $gvec4 texture($gsampler2DArray sampler, vec3 P); |
| 272 | $gvec4 texture($gsampler2DArray sampler, vec3 P, float bias); |
| 273 | $gvec4 texture($gsamplerCubeArray sampler, vec4 P); |
| 274 | $gvec4 texture($gsamplerCubeArray sampler, vec4 P, float bias); |
| 275 | float texture(sampler1DArrayShadow sampler, vec3 P); |
| 276 | float texture(sampler1DArrayShadow sampler, vec3 P, float bias); |
| 277 | float texture(sampler2DArrayShadow sampler, vec4 P); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 278 | */ |
| 279 | |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 280 | $gvec4 texture($gsampler2DRect sampler, vec2 P); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 281 | |
| 282 | /* |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 283 | float texture(sampler2DRectShadow sampler, vec3 P); |
| 284 | float texture($gsamplerCubeArrayShadow sampler, vec4 P, float compare); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 285 | */ |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 286 | ) |
| 287 | |
| 288 | // split into multiple chunks, as MSVC++ complains if a single string is too long |
| 289 | |
| 290 | STRINGIFY( |
| 291 | |
| 292 | $gvec4 textureProj($gsampler1D sampler, vec2 P); |
| 293 | $gvec4 textureProj($gsampler1D sampler, vec2 P, float bias); |
| 294 | $gvec4 textureProj($gsampler1D sampler, vec4 P); |
| 295 | $gvec4 textureProj($gsampler1D sampler, vec4 P, float bias); |
| 296 | $gvec4 textureProj($gsampler2D sampler, vec3 P); |
| 297 | $gvec4 textureProj($gsampler2D sampler, vec3 P, float bias); |
| 298 | $gvec4 textureProj($gsampler2D sampler, vec4 P); |
| 299 | $gvec4 textureProj($gsampler2D sampler, vec4 P, float bias); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 300 | /* |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 301 | $gvec4 textureProj($gsampler3D sampler, vec4 P); |
| 302 | $gvec4 textureProj($gsampler3D sampler, vec4 P, float bias); |
| 303 | float textureProj(sampler1DShadow sampler, vec4 P); |
| 304 | float textureProj(sampler1DShadow sampler, vec4 P, float bias); |
| 305 | float textureProj(sampler2DShadow sampler, vec4 P); |
| 306 | float textureProj(sampler2DShadow sampler, vec4 P, float bias); |
| 307 | $gvec4 textureProj($gsampler2DRect sampler, vec3 P); |
| 308 | $gvec4 textureProj($gsampler2DRect sampler, vec4 P); |
| 309 | float textureProj(sampler2DRectShadow sampler, vec4 P); |
| 310 | $gvec4 textureLod($gsampler1D sampler, float P, float lod); |
| 311 | $gvec4 textureLod($gsampler2D sampler, vec2 P, float lod); |
| 312 | $gvec4 textureLod($gsampler3D sampler, vec3 P, float lod); |
| 313 | $gvec4 textureLod($gsamplerCube sampler, vec3 P, float lod); |
| 314 | float textureLod(sampler1DShadow sampler, vec3 P, float lod); |
| 315 | float textureLod(sampler2DShadow sampler, vec3 P, float lod); |
| 316 | $gvec4 textureLod($gsampler1DArray sampler, vec2 P, float lod); |
| 317 | $gvec4 textureLod($gsampler2DArray sampler, vec3 P, float lod); |
| 318 | float textureLod(sampler1DArrayShadow sampler, vec3 P, float lod); |
| 319 | $gvec4 textureLod($gsamplerCubeArray sampler, vec4 P, float lod); |
| 320 | $gvec4 textureOffset($gsampler1D sampler, float P, int offset); |
| 321 | $gvec4 textureOffset($gsampler1D sampler, float P, int offset, float bias); |
| 322 | $gvec4 textureOffset($gsampler2D sampler, vec2 P, ivec2 offset); |
| 323 | $gvec4 textureOffset($gsampler2D sampler, vec2 P, ivec2 offset, float bias); |
| 324 | $gvec4 textureOffset($gsampler3D sampler, vec3 P, ivec3 offset); |
| 325 | $gvec4 textureOffset($gsampler3D sampler, vec3 P, ivec3 offset, float bias); |
| 326 | $gvec4 textureOffset($gsampler2DRect sampler, vec2 P, ivec2 offset); |
| 327 | float textureOffset(sampler2DRectShadow sampler, vec3 P, ivec2 offset); |
| 328 | float textureOffset(sampler1DShadow sampler, vec3 P, int offset); |
| 329 | float textureOffset(sampler1DShadow sampler, vec3 P, int offset, float bias); |
| 330 | float textureOffset(sampler2DShadow sampler, vec3 P, ivec2 offset); |
| 331 | float textureOffset(sampler2DShadow sampler, vec3 P, ivec2 offset, float bias); |
| 332 | $gvec4 textureOffset($gsampler1DArray sampler, vec2 P, int offset); |
| 333 | $gvec4 textureOffset($gsampler1DArray sampler, vec2 P, int offset, float bias); |
| 334 | $gvec4 textureOffset($gsampler2DArray sampler, vec3 P, ivec2 offset); |
| 335 | $gvec4 textureOffset($gsampler2DArray sampler, vec3 P, ivec2 offset, float bias); |
| 336 | float textureOffset(sampler1DArrayShadow sampler, vec3 P, int offset); |
| 337 | float textureOffset(sampler1DArrayShadow sampler, vec3 P, int offset, float bias); |
| 338 | float textureOffset(sampler2DArrayShadow sampler, vec4 P, ivec2 offset); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 339 | */ |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 340 | $gvec4 texelFetch($gsampler1D sampler, int P, int lod); |
| 341 | $gvec4 texelFetch($gsampler2D sampler, ivec2 P, int lod); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 342 | $gvec4 texelFetch($gsamplerBuffer sampler, int P); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 343 | $gvec4 texelFetch($gsampler2DRect sampler, ivec2 P); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 344 | /* |
| 345 | $gvec4 texelFetch($gsampler3D sampler, ivec3 P, int lod); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 346 | $gvec4 texelFetch($gsampler1DArray sampler, ivec2 P, int lod); |
| 347 | $gvec4 texelFetch($gsampler2DArray sampler, ivec3 P, int lod); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 348 | $gvec4 texelFetch($gsampler2DMS sampler, ivec2 P, int sample); |
| 349 | $gvec4 texelFetch($gsampler2DMSArray sampler, ivec3 P, int sample); |
| 350 | $gvec4 texelFetchOffset($gsampler1D sampler, int P, int lod, int offset); |
| 351 | $gvec4 texelFetchOffset($gsampler2D sampler, ivec2 P, int lod, ivec2 offset); |
| 352 | $gvec4 texelFetchOffset($gsampler3D sampler, ivec3 P, int lod, ivec3 offset); |
| 353 | $gvec4 texelFetchOffset($gsampler2DRect sampler, ivec2 P, ivec2 offset); |
| 354 | $gvec4 texelFetchOffset($gsampler1DArray sampler, ivec2 P, int lod, int offset); |
| 355 | $gvec4 texelFetchOffset($gsampler2DArray sampler, ivec3 P, int lod, ivec2 offset); |
| 356 | $gvec4 textureProjOffset($gsampler1D sampler, vec2 P, int offset); |
| 357 | $gvec4 textureProjOffset($gsampler1D sampler, vec2 P, int offset, float bias); |
| 358 | $gvec4 textureProjOffset($gsampler1D sampler, vec4 P, int offset); |
| 359 | $gvec4 textureProjOffset($gsampler1D sampler, vec4 P, int offset, float bias); |
| 360 | $gvec4 textureProjOffset($gsampler2D sampler, vec3 P, ivec2 offset); |
| 361 | $gvec4 textureProjOffset($gsampler2D sampler, vec3 P, ivec2 offset, float bias); |
| 362 | $gvec4 textureProjOffset($gsampler2D sampler, vec4 P, ivec2 offset); |
| 363 | $gvec4 textureProjOffset($gsampler2D sampler, vec4 P, ivec2 offset, float bias); |
| 364 | $gvec4 textureProjOffset($gsampler3D sampler, vec4 P, ivec3 offset); |
| 365 | $gvec4 textureProjOffset($gsampler3D sampler, vec4 P, ivec3 offset, float bias); |
| 366 | $gvec4 textureProjOffset($gsampler2DRect sampler, vec3 P, ivec2 offset); |
| 367 | $gvec4 textureProjOffset($gsampler2DRect sampler, vec4 P, ivec2 offset); |
| 368 | float textureProjOffset(sampler2DRectShadow sampler, vec4 P, ivec2 offset); |
| 369 | float textureProjOffset(sampler1DShadow sampler, vec4 P, int offset); |
| 370 | float textureProjOffset(sampler1DShadow sampler, vec4 P, int offset, float bias); |
| 371 | float textureProjOffset(sampler2DShadow sampler, vec4 P, ivec2 offset); |
| 372 | float textureProjOffset(sampler2DShadow sampler, vec4 P, ivec2 offset, float bias); |
| 373 | $gvec4 textureLodOffset($gsampler1D sampler, float P, float lod, int offset); |
| 374 | $gvec4 textureLodOffset($gsampler2D sampler, vec2 P, float lod, ivec2 offset); |
| 375 | $gvec4 textureLodOffset($gsampler3D sampler, vec3 P, float lod, ivec3 offset); |
| 376 | float textureLodOffset(sampler1DShadow sampler, vec3 P, float lod, int offset); |
| 377 | float textureLodOffset(sampler2DShadow sampler, vec3 P, float lod, ivec2 offset); |
| 378 | $gvec4 textureLodOffset($gsampler1DArray sampler, vec2 P, float lod, int offset); |
| 379 | $gvec4 textureLodOffset($gsampler2DArray sampler, vec3 P, float lod, ivec2 offset); |
| 380 | float textureLodOffset(sampler1DArrayShadow sampler, vec3 P, float lod, int offset); |
| 381 | $gvec4 textureProjLod($gsampler1D sampler, vec2 P, float lod); |
| 382 | $gvec4 textureProjLod($gsampler1D sampler, vec4 P, float lod); |
| 383 | $gvec4 textureProjLod($gsampler2D sampler, vec3 P, float lod); |
| 384 | $gvec4 textureProjLod($gsampler2D sampler, vec4 P, float lod); |
| 385 | $gvec4 textureProjLod($gsampler3D sampler, vec4 P, float lod); |
| 386 | float textureProjLod(sampler1DShadow sampler, vec4 P, float lod); |
| 387 | float textureProjLod(sampler2DShadow sampler, vec4 P, float lod); |
| 388 | $gvec4 textureProjLodOffset($gsampler1D sampler, vec2 P, float lod, int offset); |
| 389 | $gvec4 textureProjLodOffset($gsampler1D sampler, vec4 P, float lod, int offset); |
| 390 | $gvec4 textureProjLodOffset($gsampler2D sampler, vec3 P, float lod, ivec2 offset); |
| 391 | $gvec4 textureProjLodOffset($gsampler2D sampler, vec4 P, float lod, ivec2 offset); |
| 392 | $gvec4 textureProjLodOffset($gsampler3D sampler, vec4 P, float lod, ivec3 offset); |
| 393 | float textureProjLodOffset(sampler1DShadow sampler, vec4 P, float lod, int offset); |
| 394 | float textureProjLodOffset(sampler2DShadow sampler, vec4 P, float lod, ivec2 offset); |
| 395 | $gvec4 textureGrad($gsampler1D sampler, float P, float dPdx, float dPdy); |
| 396 | $gvec4 textureGrad($gsampler2D sampler, vec2 P, vec2 dPdx, vec2 dPdy); |
| 397 | $gvec4 textureGrad($gsampler3D sampler, vec3 P, vec3 dPdx, vec3 dPdy); |
| 398 | $gvec4 textureGrad($gsamplerCube sampler, vec3 P, vec3 dPdx, vec3 dPdy); |
| 399 | $gvec4 textureGrad($gsampler2DRect sampler, vec2 P, vec2 dPdx, vec2 dPdy); |
| 400 | float textureGrad(sampler2DRectShadow sampler, vec3 P, vec2 dPdx, vec2 dPdy); |
| 401 | float textureGrad(sampler1DShadow sampler, vec3 P, float dPdx, float dPdy); |
| 402 | float textureGrad(sampler2DShadow sampler, vec3 P, vec2 dPdx, vec2 dPdy); |
| 403 | float textureGrad(samplerCubeShadow sampler, vec4 P, vec3 dPdx, vec3 dPdy); |
| 404 | $gvec4 textureGrad($gsampler1DArray sampler, vec2 P, float dPdx, float dPdy); |
| 405 | $gvec4 textureGrad($gsampler2DArray sampler, vec3 P, vec2 dPdx, vec2 dPdy); |
| 406 | float textureGrad(sampler1DArrayShadow sampler, vec3 P, float dPdx, float dPdy); |
| 407 | float textureGrad(sampler2DArrayShadow sampler, vec4 P, vec2 dPdx, vec2 dPdy); |
| 408 | $gvec4 textureGrad($gsamplerCubeArray sampler, vec4 P, vec3 dPdx, vec3 dPdy); |
| 409 | $gvec4 textureGradOffset($gsampler1D sampler, float P, float dPdx, float dPdy, int offset); |
| 410 | $gvec4 textureGradOffset($gsampler2D sampler, vec2 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 411 | $gvec4 textureGradOffset($gsampler3D sampler, vec3 P, vec3 dPdx, vec3 dPdy, ivec3 offset); |
| 412 | $gvec4 textureGradOffset($gsampler2DRect sampler, vec2 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 413 | float textureGradOffset(sampler2DRectShadow sampler, vec3 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 414 | float textureGradOffset(sampler1DShadow sampler, vec3 P, float dPdx, float dPdy, int offset ); |
| 415 | float textureGradOffset(sampler2DShadow sampler, vec3 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 416 | $gvec4 textureGradOffset($gsampler1DArray sampler, vec2 P, float dPdx, float dPdy, int offset); |
| 417 | $gvec4 textureGradOffset($gsampler2DArray sampler, vec3 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 418 | float textureGradOffset(sampler1DArrayShadow sampler, vec3 P, float dPdx, float dPdy, int offset); |
| 419 | float textureGradOffset(sampler2DArrayShadow sampler, vec4 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 420 | $gvec4 textureProjGrad($gsampler1D sampler, vec2 P, float dPdx, float dPdy); |
| 421 | $gvec4 textureProjGrad($gsampler1D sampler, vec4 P, float dPdx, float dPdy); |
| 422 | $gvec4 textureProjGrad($gsampler2D sampler, vec3 P, vec2 dPdx, vec2 dPdy); |
| 423 | $gvec4 textureProjGrad($gsampler2D sampler, vec4 P, vec2 dPdx, vec2 dPdy); |
| 424 | $gvec4 textureProjGrad($gsampler3D sampler, vec4 P, vec3 dPdx, vec3 dPdy); |
| 425 | $gvec4 textureProjGrad($gsampler2DRect sampler, vec3 P, vec2 dPdx, vec2 dPdy); |
| 426 | $gvec4 textureProjGrad($gsampler2DRect sampler, vec4 P, vec2 dPdx, vec2 dPdy); |
| 427 | float textureProjGrad(sampler2DRectShadow sampler, vec4 P, vec2 dPdx, vec2 dPdy); |
| 428 | float textureProjGrad(sampler1DShadow sampler, vec4 P, float dPdx, float dPdy); |
| 429 | float textureProjGrad(sampler2DShadow sampler, vec4 P, vec2 dPdx, vec2 dPdy); |
| 430 | $gvec4 textureProjGradOffset($gsampler1D sampler, vec2 P, float dPdx, float dPdy, int offset); |
| 431 | $gvec4 textureProjGradOffset($gsampler1D sampler, vec4 P, float dPdx, float dPdy, int offset); |
| 432 | $gvec4 textureProjGradOffset($gsampler2D sampler, vec3 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 433 | $gvec4 textureProjGradOffset($gsampler2D sampler, vec4 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 434 | $gvec4 textureProjGradOffset($gsampler2DRect sampler, vec3 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 435 | $gvec4 textureProjGradOffset($gsampler2DRect sampler, vec4 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 436 | float textureProjGradOffset(sampler2DRectShadow sampler, vec4 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 437 | $gvec4 textureProjGradOffset($gsampler3D sampler, vec4 P, vec3 dPdx, vec3 dPdy, ivec3 offset); |
| 438 | float textureProjGradOffset(sampler1DShadow sampler, vec4 P, float dPdx, float dPdy, int offset); |
| 439 | float textureProjGradOffset(sampler2DShadow sampler, vec4 P, vec2 dPdx, vec2 dPdy, ivec2 offset); |
| 440 | $gvec4 textureGather($gsampler2D sampler, vec2 P); |
| 441 | $gvec4 textureGather($gsampler2D sampler, vec2 P, int comp); |
| 442 | $gvec4 textureGather($gsampler2DArray sampler, vec3 P); |
| 443 | $gvec4 textureGather($gsampler2DArray sampler, vec3 P, int comp); |
| 444 | $gvec4 textureGather($gsamplerCube sampler, vec3 P); |
| 445 | $gvec4 textureGather($gsamplerCube sampler, vec3 P, int comp); |
| 446 | $gvec4 textureGather($gsamplerCubeArray sampler, vec4 P); |
| 447 | $gvec4 textureGather($gsamplerCubeArray sampler, vec4 P, int comp); |
| 448 | $gvec4 textureGather($gsampler2DRect sampler, vec2 P); |
| 449 | $gvec4 textureGather($gsampler2DRect sampler, vec2 P, int comp); |
| 450 | vec4 textureGather(sampler2DShadow sampler, vec2 P, float refZ); |
| 451 | vec4 textureGather(sampler2DArrayShadow sampler, vec3 P, float refZ); |
| 452 | vec4 textureGather(samplerCubeShadow sampler, vec3 P, float refZ); |
| 453 | vec4 textureGather(samplerCubeArrayShadow sampler, vec4 P, float refZ); |
| 454 | vec4 textureGather(sampler2DRectShadow sampler, vec2 P, float refZ); |
| 455 | $gvec4 textureGatherOffset($gsampler2D sampler, vec2 P, ivec2 offset); |
| 456 | $gvec4 textureGatherOffset($gsampler2D sampler, vec2 P, ivec2 offset, int comp); |
| 457 | $gvec4 textureGatherOffset($gsampler2DArray sampler, vec3 P, ivec2 offset); |
| 458 | $gvec4 textureGatherOffset($gsampler2DArray sampler, vec3 P, ivec2 offset, int comp); |
| 459 | $gvec4 textureGatherOffset($gsampler2DRect sampler, vec2 P, ivec2 offset); |
| 460 | $gvec4 textureGatherOffset($gsampler2DRect sampler, vec2 P, ivec2 offset, int comp); |
| 461 | vec4 textureGatherOffset(sampler2DShadow sampler, vec2 P, float refZ, ivec2 offset); |
| 462 | vec4 textureGatherOffset(sampler2DArrayShadow sampler, vec3 P, float refZ, ivec2 offset); |
| 463 | vec4 textureGatherOffset(sampler2DRectShadow sampler, vec2 P, float refZ, ivec2 offset); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 464 | $gvec4 textureGatherOffsets($gsampler2D sampler, vec2 P, ivec2 offsets[4]); |
| 465 | $gvec4 textureGatherOffsets($gsampler2D sampler, vec2 P, ivec2 offsets[4], int comp); |
| 466 | $gvec4 textureGatherOffsets($gsampler2DArray sampler, vec3 P, ivec2 offsets[4]); |
| 467 | $gvec4 textureGatherOffsets($gsampler2DArray sampler, vec3 P, ivec2 offsets[4], int comp); |
| 468 | $gvec4 textureGatherOffsets($gsampler2DRect sampler, vec2 P, ivec2 offsets[4]); |
| 469 | $gvec4 textureGatherOffsets($gsampler2DRect sampler, vec2 P, ivec2 offsets[4], int comp); |
| 470 | vec4 textureGatherOffsets(sampler2DShadow sampler, vec2 P, float refZ, ivec2 offsets[4]); |
| 471 | vec4 textureGatherOffsets(sampler2DArrayShadow sampler, vec3 P, float refZ, ivec2 offsets[4]); |
| 472 | vec4 textureGatherOffsets(sampler2DRectShadow sampler, vec2 P, float refZ, ivec2 offsets[4]); |
| 473 | */ |
| 474 | vec4 texture1D(sampler1D sampler, float coord); |
| 475 | vec4 texture1D(sampler1D sampler, float coord, float bias); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 476 | /* |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 477 | vec4 texture1DProj(sampler1D sampler, vec2 coord); |
| 478 | vec4 texture1DProj(sampler1D sampler, vec2 coord, float bias); |
| 479 | vec4 texture1DProj(sampler1D sampler, vec4 coord); |
| 480 | vec4 texture1DProj(sampler1D sampler, vec4 coord, float bias); |
| 481 | vec4 texture1DLod(sampler1D sampler, float coord, float lod); |
| 482 | vec4 texture1DProjLod(sampler1D sampler, vec2 coord, float lod); |
| 483 | vec4 texture1DProjLod(sampler1D sampler, vec4 coord, float lod); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 484 | */ |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 485 | vec4 texture2D(sampler2D sampler, vec2 coord); |
ethannicholas | 5961bc9 | 2016-10-12 06:39:56 -0700 | [diff] [blame] | 486 | vec4 texture2D(samplerExternalOES sampler, vec2 coord); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 487 | vec4 texture2D(sampler2D sampler, vec2 coord, float bias); |
| 488 | vec4 texture2DProj(sampler2D sampler, vec3 coord); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 489 | /* |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 490 | vec4 texture2DProj(sampler2D sampler, vec3 coord, float bias); |
| 491 | vec4 texture2DProj(sampler2D sampler, vec4 coord); |
| 492 | vec4 texture2DProj(sampler2D sampler, vec4 coord, float bias); |
| 493 | vec4 texture2DLod(sampler2D sampler, vec2 coord, float lod); |
| 494 | vec4 texture2DProjLod(sampler2D sampler, vec3 coord, float lod); |
| 495 | vec4 texture2DProjLod(sampler2D sampler, vec4 coord, float lod); |
| 496 | vec4 texture3D(sampler3D sampler, vec3 coord); |
| 497 | vec4 texture3D(sampler3D sampler, vec3 coord, float bias); |
| 498 | vec4 texture3DProj(sampler3D sampler, vec4 coord); |
| 499 | vec4 texture3DProj(sampler3D sampler, vec4 coord, float bias); |
| 500 | vec4 texture3DLod(sampler3D sampler, vec3 coord, float lod); |
| 501 | vec4 texture3DProjLod(sampler3D sampler, vec4 coord, float lod); |
| 502 | vec4 textureCube(samplerCube sampler, vec3 coord); |
| 503 | vec4 textureCube(samplerCube sampler, vec3 coord, float bias); |
| 504 | vec4 textureCubeLod(samplerCube sampler, vec3 coord, float lod); |
| 505 | vec4 shadow1D(sampler1DShadow sampler, vec3 coord); |
| 506 | vec4 shadow1D(sampler1DShadow sampler, vec3 coord, float bias); |
| 507 | vec4 shadow2D(sampler2DShadow sampler, vec3 coord); |
| 508 | vec4 shadow2D(sampler2DShadow sampler, vec3 coord, float bias); |
| 509 | vec4 shadow1DProj(sampler1DShadow sampler, vec4 coord); |
| 510 | vec4 shadow1DProj(sampler1DShadow sampler, vec4 coord, float bias); |
| 511 | vec4 shadow2DProj(sampler2DShadow sampler, vec4 coord); |
| 512 | vec4 shadow2DProj(sampler2DShadow sampler, vec4 coord, float bias); |
| 513 | vec4 shadow1DLod(sampler1DShadow sampler, vec3 coord, float lod); |
| 514 | vec4 shadow2DLod(sampler2DShadow sampler, vec3 coord, float lod); |
| 515 | vec4 shadow1DProjLod(sampler1DShadow sampler, vec4 coord, float lod); |
| 516 | vec4 shadow2DProjLod(sampler2DShadow sampler, vec4 coord, float lod); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 517 | uint atomicCounterIncrement(atomic_uint c); |
| 518 | uint atomicCounter(atomic_uint c); |
| 519 | uint atomicAdd(inout uint mem, uint data); |
| 520 | int atomicAdd(inout int mem, int data); |
| 521 | uint atomicMin(inout uint mem, uint data); |
| 522 | int atomicMin(inout int mem, int data); |
| 523 | uint atomicMax(inout uint mem, uint data); |
| 524 | int atomicMax(inout int mem, int data); |
| 525 | uint atomicAnd(inout uint mem, uint data); |
| 526 | int atomicAnd(inout int mem, int data); |
| 527 | uint atomicOr(inout uint mem, uint data); |
| 528 | int atomicOr(inout int mem, int data); |
| 529 | uint atomicXor(inout uint mem, uint data); |
| 530 | int atomicXor(inout int mem, int data); |
| 531 | uint atomicExchange(inout uint mem, uint data); |
| 532 | int atomicExchange(inout int mem, int data); |
| 533 | uint atomicCompSwap(inout uint mem, uint compare, uint data); |
| 534 | int atomicCompSwap(inout int mem, int compare, int data); |
| 535 | */ |
| 536 | // section 8.12 Image Functions will go here if and when we add support for them |
| 537 | |
| 538 | $genType dFdx($genType p); |
| 539 | $genType dFdy($genType p); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 540 | float interpolateAtSample(float interpolant, int sample); |
| 541 | vec2 interpolateAtSample(vec2 interpolant, int sample); |
| 542 | vec3 interpolateAtSample(vec3 interpolant, int sample); |
| 543 | vec4 interpolateAtSample(vec4 interpolant, int sample); |
| 544 | float interpolateAtOffset(float interpolant, vec2 offset); |
| 545 | vec2 interpolateAtOffset(vec2 interpolant, vec2 offset); |
| 546 | vec3 interpolateAtOffset(vec3 interpolant, vec2 offset); |
| 547 | vec4 interpolateAtOffset(vec4 interpolant, vec2 offset); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 548 | |
| 549 | /* |
| 550 | $genType fwidth($genType p); |
| 551 | $genType fwidthCoarse($genType p); |
| 552 | $genType fwidthFine($genType p); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 553 | void EmitStreamVertex(int stream); |
| 554 | void EndStreamPrimitive(int stream); |
| 555 | void EmitVertex(); |
| 556 | void EndPrimitive(); |
| 557 | void barrier(); |
| 558 | void memoryBarrier(); |
| 559 | void memoryBarrierAtomicCounter(); |
| 560 | void memoryBarrierBuffer(); |
| 561 | void memoryBarrierShared(); |
| 562 | void memoryBarrierImage(); |
| 563 | void groupMemoryBarrier(); |
ethannicholas | 471e894 | 2016-10-28 09:02:46 -0700 | [diff] [blame^] | 564 | */ |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 565 | |
Mike Klein | 600c6a7 | 2016-09-27 11:21:15 -0400 | [diff] [blame] | 566 | ) |
| 567 | |