Lines Matching refs:format

135 static MovePtr<TestTexture> createTestTexture (const TcuFormatType format, VkImageViewType viewType, const tcu::IVec3& size, int layerCount)
144 texture = MovePtr<TestTexture>(new TestTexture1D(format, size.x()));
146 texture = MovePtr<TestTexture>(new TestTexture1DArray(format, size.x(), layerCount));
153 texture = MovePtr<TestTexture>(new TestTexture2D(format, size.x(), size.y()));
161 texture = MovePtr<TestTexture>(new TestTextureCube(format, size.x()));
167 texture = MovePtr<TestTexture>(new TestTextureCubeArray(format, size.x(), layerCount));
172 texture = MovePtr<TestTexture>(new TestTexture2DArray(format, size.x(), size.y(), layerCount));
179 texture = MovePtr<TestTexture>(new TestTexture3D(format, size.x(), size.y(), size.z()));
198 throw tcu::NotSupportedError(std::string("Unsupported format for sampling: ") + getFormatName(params.imageFormat));
207 throw tcu::NotSupportedError(std::string("Unsupported format for linear filtering: ") + getFormatName(params.imageFormat));
226 params.imageFormat, // VkFormat format
255 TCU_THROW(NotSupportedError, "Image format not supported");
270 throw tcu::NotSupportedError(std::string("Unsupported format for min/max filtering: ") + getFormatName(params.imageFormat));
317 TCU_THROW(NotSupportedError, "3D compressed or depth format not supported");
321 TCU_THROW(NotSupportedError, "3D compressed or depth format not supported");
342 TCU_THROW(NotSupportedError, "VK_KHR_portability_subset: Implementation does not support remapping format components");
456 customBorderColorCreateInfo.format == VK_FORMAT_UNDEFINED)
488 m_imageFormat, // VkFormat format;
526 m_imageFormat, // VkFormat format;
597 m_colorFormat, // VkFormat format;
627 m_colorFormat, // VkFormat format;
644 colorAttachmentDescriptions[imgNdx].format = m_colorFormat; // VkFormat format;
754 VK_FORMAT_R32G32B32A32_SFLOAT, // VkFormat format;
760 VK_FORMAT_R32G32B32A32_SFLOAT, // VkFormat format;
1131 typename TexViewTraits<TextureViewType>::TextureType* createSkeletonClone (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0);
1133 tcu::TextureFormat getSwizzleTargetFormat (tcu::TextureFormat format)
1139 const tcu::TextureChannelClass chnClass = tcu::getTextureChannelClass(format.type);
1150 tcu::Texture1D* createSkeletonClone<tcu::Texture1DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0)
1152 return new tcu::Texture1D(format, level0.getWidth());
1156 tcu::Texture1DArray* createSkeletonClone<tcu::Texture1DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0)
1158 return new tcu::Texture1DArray(format, level0.getWidth(), level0.getHeight());
1162 tcu::Texture2D* createSkeletonClone<tcu::Texture2DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0)
1164 return new tcu::Texture2D(format, level0.getWidth(), level0.getHeight());
1168 tcu::Texture2DArray* createSkeletonClone<tcu::Texture2DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0)
1170 return new tcu::Texture2DArray(format, level0.getWidth(), level0.getHeight(), level0.getDepth());
1174 tcu::Texture3D* createSkeletonClone<tcu::Texture3DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0)
1176 return new tcu::Texture3D(format, level0.getWidth(), level0.getHeight(), level0.getDepth());
1180 tcu::TextureCubeArray* createSkeletonClone<tcu::TextureCubeArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0)
1182 return new tcu::TextureCubeArray(format, level0.getWidth(), level0.getDepth());
1485 const tcu::TextureFormat depthStencilFormat; // Undefined depth/stencil format.
1565 DE_FATAL("Unhandled texture format type in switch");