Lines Matching refs:InvalidTexFuncCase
56 class InvalidTexFuncCase(ShaderCase):
78 InvalidTexFuncCase("texture", ["sampler3DShadow", "vec4"]),
79 InvalidTexFuncCase("texture", ["sampler2DArrayShadow", "vec4", "float"]),
82 InvalidTexFuncCase("textureProj", ["samplerCube", "vec4"]),
83 InvalidTexFuncCase("textureProj", ["isamplerCube", "vec4"]),
84 InvalidTexFuncCase("textureProj", ["usamplerCube", "vec4"]),
85 InvalidTexFuncCase("textureProj", ["samplerCube", "vec4", "float"]),
86 InvalidTexFuncCase("textureProj", ["isamplerCube", "vec4", "float"]),
87 InvalidTexFuncCase("textureProj", ["usamplerCube", "vec4", "float"]),
88 InvalidTexFuncCase("textureProj", ["sampler2DArrayShadow", "vec4"]),
89 InvalidTexFuncCase("textureProj", ["sampler2DArrayShadow", "vec4", "float"]),
92 InvalidTexFuncCase("textureLod", ["samplerCubeShadow", "vec4", "float"]),
93 InvalidTexFuncCase("textureLod", ["sampler2DArrayShadow", "vec4", "float"]),
96 InvalidTexFuncCase("textureOffset", ["samplerCube", "vec3", "ivec2"]),
97 InvalidTexFuncCase("textureOffset", ["isamplerCube", "vec3", "ivec2"]),
98 InvalidTexFuncCase("textureOffset", ["usamplerCube", "vec3", "ivec2"]),
99 InvalidTexFuncCase("textureOffset", ["samplerCube", "vec3", "ivec3"]),
100 InvalidTexFuncCase("textureOffset", ["isamplerCube", "vec3", "ivec3"]),
101 InvalidTexFuncCase("textureOffset", ["usamplerCube", "vec3", "ivec3"]),
102 InvalidTexFuncCase("textureOffset", ["samplerCube", "vec3", "ivec2", "float"]),
103 InvalidTexFuncCase("textureOffset", ["samplerCube", "vec3", "ivec3", "float"]),
104 InvalidTexFuncCase("textureOffset", ["sampler2DArray", "vec3", "ivec3"]),
105 InvalidTexFuncCase("textureOffset", ["sampler2DArray", "vec3", "ivec3", "float"]),
106 InvalidTexFuncCase("textureOffset", ["samplerCubeShadow", "vec4", "ivec2"]),
107 InvalidTexFuncCase("textureOffset", ["samplerCubeShadow", "vec4", "ivec3"]),
108 InvalidTexFuncCase("textureOffset", ["sampler2DArrayShadow", "vec4", "ivec2"]),
109 InvalidTexFuncCase("textureOffset", ["sampler2DArrayShadow", "vec4", "ivec2", "float"]),
112 InvalidTexFuncCase("texelFetch", ["samplerCube", "ivec3", "int"]),
113 InvalidTexFuncCase("texelFetch", ["isamplerCube", "ivec3", "int"]),
114 InvalidTexFuncCase("texelFetch", ["usamplerCube", "ivec3", "int"]),
115 InvalidTexFuncCase("texelFetch", ["sampler2DShadow", "ivec2", "int"]),
116 InvalidTexFuncCase("texelFetch", ["samplerCubeShadow", "ivec3", "int"]),
117 InvalidTexFuncCase("texelFetch", ["sampler2DArrayShadow", "ivec3", "int"]),
120 InvalidTexFuncCase("texelFetch", ["samplerCube", "ivec3", "int", "ivec3"]),
121 InvalidTexFuncCase("texelFetch", ["sampler2DShadow", "ivec2", "int", "ivec2"]),
122 InvalidTexFuncCase("texelFetch", ["samplerCubeShadow", "ivec3", "int", "ivec3"]),
123 InvalidTexFuncCase("texelFetch", ["sampler2DArrayShadow", "ivec3", "int", "ivec3"]),
126 InvalidTexFuncCase("textureProjOffset", ["samplerCube", "vec4", "ivec2"]),
127 InvalidTexFuncCase("textureProjOffset", ["samplerCube", "vec4", "ivec3"]),
128 InvalidTexFuncCase("textureProjOffset", ["samplerCubeShadow", "vec4", "ivec3"]),
129 InvalidTexFuncCase("textureProjOffset", ["sampler2DArrayShadow", "vec4", "ivec2"]),
130 InvalidTexFuncCase("textureProjOffset", ["sampler2DArrayShadow", "vec4", "ivec3"]),
133 InvalidTexFuncCase("textureLodOffset", ["samplerCube", "vec3", "float", "ivec2"]),
134 InvalidTexFuncCase("textureLodOffset", ["samplerCube", "vec3", "float", "ivec3"]),
135 InvalidTexFuncCase("textureLodOffset", ["samplerCubeShadow", "vec3", "float", "ivec3"]),
136 InvalidTexFuncCase("textureLodOffset", ["sampler2DArrayShadow", "vec3", "float", "ivec2"]),
137 InvalidTexFuncCase("textureLodOffset", ["sampler2DArrayShadow", "vec3", "float", "ivec3"]),
140 InvalidTexFuncCase("textureProjLod", ["samplerCube", "vec4", "float"]),
141 InvalidTexFuncCase("textureProjLod", ["sampler2DArray", "vec4", "float"]),
142 InvalidTexFuncCase("textureProjLod", ["sampler2DArrayShadow", "vec4", "float"]),
145 InvalidTexFuncCase("textureGrad", ["sampler2DArray", "vec3", "vec3", "vec3"]),
148 InvalidTexFuncCase("textureGradOffset", ["samplerCube", "vec3", "vec3", "vec3", "ivec2"]),
149 InvalidTexFuncCase("textureGradOffset", ["samplerCube", "vec3", "vec3", "vec3", "ivec3"]),
150 InvalidTexFuncCase("textureGradOffset", ["samplerCubeShadow", "vec4", "vec3", "vec3", "ivec2"]),
151 InvalidTexFuncCase("textureGradOffset", ["samplerCubeShadow", "vec4", "vec3", "vec3", "ivec3"]),
154 InvalidTexFuncCase("textureProjGrad", ["samplerCube", "vec4", "vec3", "vec3"]),
155 InvalidTexFuncCase("textureProjGrad", ["sampler2DArray", "vec4", "vec2", "vec2"]),
158 InvalidTexFuncCase("textureProjGradOffset", ["samplerCube", "vec4", "vec3", "vec3", "ivec2"]),
159 InvalidTexFuncCase("textureProjGradOffset", ["samplerCube", "vec4", "vec3", "vec3", "ivec3"]),
160 InvalidTexFuncCase("textureProjGradOffset", ["sampler2DArray", "vec4", "vec2", "vec2", "ivec2"]),
161 InvalidTexFuncCase("textureProjGradOffset", ["sampler2DArray", "vec4", "vec2", "vec2", "ivec3"])