Lines Matching defs:texture
257 MovePtr<TestTexture> texture;
264 texture = MovePtr<TestTexture>(new TestTexture1D(format, size.x()));
266 texture = MovePtr<TestTexture>(new TestTexture1DArray(format, size.x(), layerCount));
273 texture = MovePtr<TestTexture>(new TestTexture2D(format, size.x(), size.y()));
281 texture = MovePtr<TestTexture>(new TestTextureCube(format, size.x()));
287 texture = MovePtr<TestTexture>(new TestTextureCubeArray(format, size.x(), layerCount));
292 texture = MovePtr<TestTexture>(new TestTexture2DArray(format, size.x(), size.y(), layerCount));
299 texture = MovePtr<TestTexture>(new TestTexture3D(format, size.x(), size.y(), size.z()));
306 return texture;
436 // Create texture images, views and samplers
443 // Initialize texture data
496 // Upload texture data
948 // Do not clear the color attachments as we are using the sampled texture as color attachment as well.
1000 // Create texture images, views
1007 // Initialize texture data
1058 // Upload texture data
1483 // Do not clear the color attachments as we are using the texture as color attachment.
2099 fragmentSrc << "texture(" << getGlslSampler(format, m_imageViewType, m_imageDescriptorType, 1u) << ", vtxTexCoords." << texCoordSwizzle << ").x" << std::fixed;
2116 fragmentSrc << "vec4(texture(" << getGlslSampler(format, m_imageViewType, m_imageDescriptorType, 1u) << ", vtxTexCoords." << texCoordSwizzle << ").x / 255.0f, 0.0f, 0.0f, 1.0f)" << std::fixed;
2133 fragmentSrc << "texture(" << getGlslSampler(format, m_imageViewType, m_imageDescriptorType, 1u) << ", vtxTexCoords." << texCoordSwizzle << ")" << std::fixed;