/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl/frag/ |
D | image-query-selective.frag | 17 int a = textureSize(uSampler1DUint, 0); 18 a = textureSize(uSampler1DInt, 0); 19 a = textureSize(uSampler1DFloat, 0); 21 ivec3 c = textureSize(uSampler2DArray, 0); 22 ivec3 d = textureSize(uSampler3D, 0); 23 ivec2 e = textureSize(uSamplerCube, 0); 24 ivec3 f = textureSize(uSamplerCubeArray, 0); 25 int g = textureSize(uSamplerBuffer); 26 ivec2 h = textureSize(uSamplerMS); 27 ivec3 i = textureSize(uSamplerMSArray);
|
D | image-query.frag | 15 int a = textureSize(uSampler1D, 0); 16 ivec2 b = textureSize(uSampler2D, 0); 17 ivec3 c = textureSize(uSampler2DArray, 0); 18 ivec3 d = textureSize(uSampler3D, 0); 19 ivec2 e = textureSize(uSamplerCube, 0); 20 ivec3 f = textureSize(uSamplerCubeArray, 0); 21 int g = textureSize(uSamplerBuffer); 22 ivec2 h = textureSize(uSamplerMS); 23 ivec3 i = textureSize(uSamplerMSArray);
|
/third_party/skia/third_party/externals/spirv-cross/shaders/desktop-only/frag/ |
D | image-query.desktop.frag | 25 int a = textureSize(uSampler1D, 0); 26 ivec2 b = textureSize(uSampler2D, 0); 27 ivec3 c = textureSize(uSampler2DArray, 0); 28 ivec3 d = textureSize(uSampler3D, 0); 29 ivec2 e = textureSize(uSamplerCube, 0); 30 ivec3 f = textureSize(uSamplerCubeArray, 0); 31 int g = textureSize(uSamplerBuffer); 32 ivec2 h = textureSize(uSamplerMS); 33 ivec3 i = textureSize(uSamplerMSArray);
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/desktop-only/frag/ |
D | image-query.desktop.frag | 24 int a = textureSize(uSampler1D, 0); 25 ivec2 b = textureSize(uSampler2D, 0); 26 ivec3 c = textureSize(uSampler2DArray, 0); 27 ivec3 d = textureSize(uSampler3D, 0); 28 ivec2 e = textureSize(uSamplerCube, 0); 29 ivec3 f = textureSize(uSamplerCubeArray, 0); 30 int g = textureSize(uSamplerBuffer); 31 ivec2 h = textureSize(uSamplerMS); 32 ivec3 i = textureSize(uSamplerMSArray);
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | CopyTests.cpp | 34 wgpu::Extent3D textureSize; member 144 descriptor.size = textureSpec.textureSize; in DoTest() 155 textureSpec.format, textureSpec.textureSize, textureSpec.copyLevel, dimension); in DoTest() 227 << textureSpec.textureSize.width << " x " << textureSpec.textureSize.height in DoTest() 263 descriptor.size = textureSpec.textureSize; in DoTest() 283 textureSpec.format, textureSpec.textureSize, textureSpec.copyLevel, dimension, in DoTest() 317 << textureSpec.textureSize.width << " x " << textureSpec.textureSize.height in DoTest() 363 srcDescriptor.size = srcSpec.textureSize; in DoTest() 386 dstDescriptor.size = dstSpec.textureSize; in DoTest() 399 {srcSpec.textureSize.width, srcSpec.textureSize.height, in DoTest() [all …]
|
D | CopyTextureForBrowserTests.cpp | 61 wgpu::Extent3D textureSize = {kDefaultTextureWidth, kDefaultTextureHeight}; member 291 descriptor.size = spec.textureSize; in CreateTexture() 357 outputDesc.size = dstSpec.textureSize.width * dstSpec.textureSize.height * sizeof(uint32_t); in CheckResultInBuiltInComputePipeline() 385 pass.Dispatch(dstSpec.textureSize.width, in CheckResultInBuiltInComputePipeline() 386 dstSpec.textureSize.height); // Verify dst texture content in CheckResultInBuiltInComputePipeline() 393 std::vector<uint32_t> expectResult(dstSpec.textureSize.width * dstSpec.textureSize.height, in CheckResultInBuiltInComputePipeline() 396 dstSpec.textureSize.width * dstSpec.textureSize.height); in CheckResultInBuiltInComputePipeline() 407 {srcSpec.textureSize.width, srcSpec.textureSize.height, 422 srcSpec.textureSize.width > copySize.width || 423 srcSpec.textureSize.height > copySize.height || [all …]
|
D | QueueTests.cpp | 204 wgpu::Extent3D textureSize; member 265 descriptor.size = textureSpec.textureSize; in DoTest() 281 wgpu::Extent3D mipSize = {textureSpec.textureSize.width >> textureSpec.level, in DoTest() 282 textureSpec.textureSize.height >> textureSpec.level, in DoTest() 283 textureSpec.textureSize.depthOrArrayLayers}; in DoTest() 313 << textureSpec.textureSize.width << " x " << textureSpec.textureSize.height in DoTest() 353 textureSpec.textureSize = {w, h, d}; in TEST_P() 366 textureSpec.textureSize = {2048, 2048, 2}; in TEST_P() 370 DoTest(textureSpec, MinimumDataSpec(textureSpec.textureSize), textureSpec.textureSize); in TEST_P() 382 defaultTextureSpec.textureSize = kTextureSize; in TEST_P() [all …]
|
/third_party/glslang/Test/ |
D | samplerlessTextureFunctions.frag | 18 ivec2 tex2DSize = textureSize(tex2D, 0); 19 ivec2 texMSSize = textureSize(texMS); 20 int bufSize = textureSize(buf); 39 ivec2 tex2DSize = textureSize(tex2D, 0); 40 ivec2 texMSSize = textureSize(texMS); 41 int bufSize = textureSize(buf);
|
D | 320.vert | 103 highp int s1 = textureSize(bufSamp1); 104 highp int s2 = textureSize(bufSamp2); 105 highp int s3 = textureSize(bufSamp3); 151 highp ivec3 s4 = textureSize(CA4, 1); 152 highp ivec3 s5 = textureSize(CA5, 1); 153 highp ivec3 s6 = textureSize(CA6, 1); 154 highp ivec3 s7 = textureSize(CA7, 1); 209 ivec3 tfs = textureSize(samp2DMSA); 210 ivec3 tfsi = textureSize(samp2DMSAi); 211 ivec3 tfsb = textureSize(samp2DMSAi, 4); // ERROR, no lod [all …]
|
D | spv.samplerlessTextureFunctions.frag | 16 ivec2 tex2DSize = textureSize(tex2D, 0); 17 ivec2 texMSSize = textureSize(texMS); 18 int bufSize = textureSize(buf);
|
D | 310.vert | 63 v2 = textureSize(s2dms); 64 v2 = textureSize(us2dms); 222 highp int s1 = textureSize(bufSamp1); 223 highp int s2 = textureSize(bufSamp2); 224 highp int s3 = textureSize(bufSamp3); 281 highp ivec3 s4 = textureSize(CA4, 1); 282 highp ivec3 s5 = textureSize(CA5, 1); 283 highp ivec3 s6 = textureSize(CA6, 1); 284 highp ivec3 s7 = textureSize(CA7, 1); 349 ivec3 tfs = textureSize(samp2DMSA); [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | ClearPerf.cpp | 33 textureSize = 16; in ClearParams() 39 GLsizei textureSize; member 131 std::vector<float> textureData(params.textureSize * params.textureSize * 4, 0.5); in drawBenchmark() 138 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, params.textureSize, params.textureSize, 0, GL_RGBA, in drawBenchmark()
|
D | TextureSampling.cpp | 40 textureSize = 32; in TextureSamplingParams() 46 unsigned int textureSize; member 134 << params.textureSize in initShaders() 199 unsigned int dataSize = params.textureSize * params.textureSize; in initTextures() 220 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, params.textureSize, params.textureSize, 0, GL_RGBA, in initTextures()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | TextureSampling.cpp | 40 textureSize = 32; in TextureSamplingParams() 46 unsigned int textureSize; member 134 << params.textureSize in initShaders() 199 unsigned int dataSize = params.textureSize * params.textureSize; in initTextures() 220 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, params.textureSize, params.textureSize, 0, GL_RGBA, in initTextures()
|
D | ClearPerf.cpp | 33 textureSize = 16; in ClearParams() 41 GLsizei textureSize; member 132 std::vector<float> textureData(params.textureSize * params.textureSize * 4, 0.5); in drawBenchmark()
|
/third_party/glslang/Test/baseResults/ |
D | samplerlessTextureFunctions.frag.out | 5 ERROR: 0:18: 'textureSize' : required extension not requested: GL_EXT_samplerless_texture_functions 6 ERROR: 0:19: 'textureSize' : required extension not requested: GL_EXT_samplerless_texture_functions 7 ERROR: 0:20: 'textureSize' : required extension not requested: GL_EXT_samplerless_texture_functions
|
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/textureDimensions/ |
D | 2fe1cc.wgsl.expected.glsl | 7 ivec2 res = textureSize(arg_0, 0); 39 ivec2 res = textureSize(arg_0, 0); 61 ivec2 res = textureSize(arg_0, 0);
|
D | a9c9c1.wgsl.expected.glsl | 7 ivec2 res = textureSize(arg_0, 0); 39 ivec2 res = textureSize(arg_0, 0); 61 ivec2 res = textureSize(arg_0, 0);
|
D | 2efa05.wgsl.expected.glsl | 7 ivec3 res = textureSize(arg_0, 0); 39 ivec3 res = textureSize(arg_0, 0); 61 ivec3 res = textureSize(arg_0, 0);
|
D | 72e5d6.wgsl.expected.glsl | 7 ivec2 res = textureSize(arg_0, 0).xy; 39 ivec2 res = textureSize(arg_0, 0).xy; 61 ivec2 res = textureSize(arg_0, 0).xy;
|
D | 6ec1b4.wgsl.expected.glsl | 7 ivec3 res = textureSize(arg_0, 0); 39 ivec3 res = textureSize(arg_0, 0); 61 ivec3 res = textureSize(arg_0, 0);
|
D | 8deb5e.wgsl.expected.glsl | 7 ivec3 res = textureSize(arg_0, 0); 39 ivec3 res = textureSize(arg_0, 0); 61 ivec3 res = textureSize(arg_0, 0);
|
D | cec841.wgsl.expected.glsl | 7 ivec2 res = textureSize(arg_0, 0).xy; 39 ivec2 res = textureSize(arg_0, 0).xy; 61 ivec2 res = textureSize(arg_0, 0).xy;
|
D | 8aa4c4.wgsl.expected.glsl | 7 ivec3 res = textureSize(arg_0, 0); 39 ivec3 res = textureSize(arg_0, 0); 61 ivec3 res = textureSize(arg_0, 0);
|
D | 939fdb.wgsl.expected.glsl | 7 ivec2 res = textureSize(arg_0, 0); 39 ivec2 res = textureSize(arg_0, 0); 61 ivec2 res = textureSize(arg_0, 0);
|