Home
last modified time | relevance | path

Searched refs:tex0 (Results 1 - 16 of 16) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DActiveTextureCacheTest.cpp73 GLuint tex0 = 0; in TEST_P() local
74 glGenTextures(1, &tex0); in TEST_P()
75 glBindTexture(GL_TEXTURE_2D, tex0); in TEST_P()
84 // Set the active texture to 1 and bind tex0. in TEST_P()
86 glBindTexture(GL_TEXTURE_2D, tex0); in TEST_P()
96 // Bind tex1. ActiveTexturesCache is NOT updated (still contains tex0). The current texture in TEST_P()
100 // Delete tex0. The ActiveTexturesCache entry that points to tex0 is not cleared because tex0 is in TEST_P()
102 glDeleteTextures(1, &tex0); in TEST_P()
[all...]
H A DWebGLCompatibilityTest.cpp2720 GLTexture tex0; in TEST_P()
2723 FillTexture2D(tex0.get(), width, height, GLColor::red, 0, GL_RGBA, GL_RGBA, GL_UNSIGNED_BYTE); in TEST_P()
2735 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex0.get(), 0); in TEST_P()
4087 GLTexture tex0; in TEST_P() local
4090 FillTexture2D(tex0.get(), width, height, GLColor::red, 0, GL_RGBA, GL_RGBA, GL_UNSIGNED_BYTE); in TEST_P()
4101 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex0.get(), 0); in TEST_P()
4213 GLTexture tex0; in TEST_P() local
4216 FillTexture2D(tex0.get(), width, height, GLColor::black, 0, GL_RGBA, GL_RGBA, GL_UNSIGNED_BYTE); in TEST_P()
4225 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex0.get(), 0); in TEST_P()
H A DBlitFramebufferANGLETest.cpp2446 GLTexture tex0; in TEST_P() local
2447 glBindTexture(GL_TEXTURE_2D, tex0); in TEST_P()
2452 glFramebufferTexture2D(GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex0, 0); in TEST_P()
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_texture.h40 uint32_t tex0, tex3, tex4; member
51 uint32_t tex0, tex1, tex2, tex3, tex4, tex5; member
H A Dfd2_texture.c108 so->tex0 = A2XX_SQ_TEX_0_CLAMP_X(tex_clamp(cso->wrap_s)) | in fd2_sampler_state_create()
181 so->tex0 = A2XX_SQ_TEX_0_SIGN_X(fmt.sign) | A2XX_SQ_TEX_0_SIGN_Y(fmt.sign) | in fd2_sampler_view_create()
H A Dfd2_emit.c137 OUT_RING(ring, sampler->tex0 | view->tex0); in emit_texture()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fTextureFilteringTests.cpp280 const glu::TextureCubeArray* const tex0 = m_gradientTex; in init() member in deqp::gles31::Functional::glu
285 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-0.8f, -0.8f), tcu::Vec2(0.8f, 0.8f), tcu::Vec2(-0.5f, float(numLayers)+0.5f))); // minification in init()
286 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.5f, 0.65f), tcu::Vec2(0.8f, 0.8f), tcu::Vec2(-0.5f, float(numLayers)+0.5f))); // magnification in init()
296 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-1.25f, -1.2f), tcu::Vec2(1.2f, 1.25f), tcu::Vec2(-0.5f, float(numLayers)+0.5f))); in init()
298 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-1.19f, -1.3f), tcu::Vec2(1.1f, 1.35f), tcu::Vec2(-0.5f, float(numLayers)+0.5f))); in init()
300 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.8f, 0.8f), tcu::Vec2(1.25f, 1.20f), tcu::Vec2(-0.5f, float(numLayers)+0.5f))); // magnification in init()
306 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-2.0f, -1.5f ), tcu::Vec2(-0.1f, 0.9f), tcu::Vec2(1.50001f, 1.49999f))); in init()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DRenderBundleValidationTests.cpp932 wgpu::Texture tex0 = device.CreateTexture(&textureDesc); in TEST_F() local
943 tex0.CreateView(), in TEST_F()
958 tex0.CreateView(), in TEST_F()
960 tex0.CreateView(), in TEST_F()
973 tex0.CreateView(), in TEST_F()
1002 wgpu::Texture tex0 = device.CreateTexture(&textureDesc); in TEST_F() local
1012 utils::ComboRenderPassDescriptor renderPass({tex0.CreateView()}, tex1.CreateView()); in TEST_F()
1023 utils::ComboRenderPassDescriptor renderPass({tex0.CreateView()}, tex2.CreateView()); in TEST_F()
1034 utils::ComboRenderPassDescriptor renderPass({tex0.CreateView()}); in TEST_F()
1059 wgpu::Texture tex0 in TEST_F() local
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fTextureFilteringTests.cpp484 const glu::TextureCube* tex0 = m_textures[0]; in init() local
485 const glu::TextureCube* tex1 = m_textures.size() > 1 ? m_textures[1] : tex0; in init()
489 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-0.8f, -0.8f), tcu::Vec2(0.8f, 0.8f))); // minification in init()
490 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.5f, 0.65f), tcu::Vec2(0.8f, 0.8f))); // magnification in init()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fTextureFilteringTests.cpp522 const glu::TextureCube* tex0 = m_textures[0]; in init() local
523 const glu::TextureCube* tex1 = m_textures.size() > 1 ? m_textures[1] : tex0; in init()
527 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-0.8f, -0.8f), tcu::Vec2(0.8f, 0.8f))); // minification in init()
528 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.5f, 0.65f), tcu::Vec2(0.8f, 0.8f))); // magnification in init()
535 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-1.25f, -1.2f), tcu::Vec2(1.2f, 1.25f))); // minification in init()
537 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-1.19f, -1.3f), tcu::Vec2(1.1f, 1.35f))); // minification - w/ tweak to avoid hitting triangle edges with face switchpoint in init()
539 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.8f, 0.8f), tcu::Vec2(1.25f, 1.20f))); // magnification in init()
H A Des3fFboColorbufferTests.cpp248 deUint32 tex0 = 0; in render() local
258 deUint32& tex = ndx ? tex1 : tex0; in render()
310 glBindTexture(GL_TEXTURE_2D, tex0); in render()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
H A DvktTextureFilteringTests.cpp518 const int tex0 = 0; in TextureCubeFilteringTestInstance() local
523 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-0.8f, -0.8f), tcu::Vec2(0.8f, 0.8f))); // minification in TextureCubeFilteringTestInstance()
524 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.5f, 0.65f), tcu::Vec2(0.8f, 0.8f))); // magnification in TextureCubeFilteringTestInstance()
530 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-1.25f, -1.2f), tcu::Vec2(1.2f, 1.25f))); // minification in TextureCubeFilteringTestInstance()
532 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.8f, 0.8f), tcu::Vec2(1.25f, 1.20f))); // magnification in TextureCubeFilteringTestInstance()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktTextureFilteringTests.cpp517 const int tex0 = 0; in TextureCubeFilteringTestInstance() local
522 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-0.8f, -0.8f), tcu::Vec2(0.8f, 0.8f))); // minification in TextureCubeFilteringTestInstance()
523 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.5f, 0.65f), tcu::Vec2(0.8f, 0.8f))); // magnification in TextureCubeFilteringTestInstance()
529 m_cases.push_back(FilterCase(tex0, tcu::Vec2(-1.25f, -1.2f), tcu::Vec2(1.2f, 1.25f))); // minification in TextureCubeFilteringTestInstance()
531 m_cases.push_back(FilterCase(tex0, tcu::Vec2(0.8f, 0.8f), tcu::Vec2(1.25f, 1.20f))); // magnification in TextureCubeFilteringTestInstance()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dvalue_table_test.cpp696 OpName %tex0 "tex0" in TEST_F()
698 OpDecorate %tex0 Location 0 in TEST_F()
699 OpDecorate %tex0 DescriptorSet 0 in TEST_F()
700 OpDecorate %tex0 Binding 0 in TEST_F()
709 %tex0 = OpVariable %_ptr_UniformConstant_10 UniformConstant in TEST_F()
716 %16 = OpLoad %10 %tex0 in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dvalue_table_test.cpp696 OpName %tex0 "tex0" in TEST_F()
698 OpDecorate %tex0 Location 0 in TEST_F()
699 OpDecorate %tex0 DescriptorSet 0 in TEST_F()
700 OpDecorate %tex0 Binding 0 in TEST_F()
709 %tex0 = OpVariable %_ptr_UniformConstant_10 UniformConstant in TEST_F()
716 %16 = OpLoad %10 %tex0 in TEST_F()
/third_party/spirv-tools/test/opt/
H A Dvalue_table_test.cpp695 OpName %tex0 "tex0" in TEST_F()
697 OpDecorate %tex0 Location 0 in TEST_F()
698 OpDecorate %tex0 DescriptorSet 0 in TEST_F()
699 OpDecorate %tex0 Binding 0 in TEST_F()
708 %tex0 = OpVariable %_ptr_UniformConstant_10 UniformConstant in TEST_F()
715 %16 = OpLoad %10 %tex0 in TEST_F()

Completed in 31 milliseconds