Home
last modified time | relevance | path

Searched refs:viewFormat (Results 1 – 9 of 9) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageMutableTests.cpp110 VkFormat viewFormat; member
179 format = caseDef.viewFormat; in getClearValueInt()
288 if (isSRGB(mapVkFormat(caseDef.viewFormat))) in isSRGBConversionRequired()
369 const int numComponents = getNumUsedChannels(mapVkFormat(caseDef.viewFormat).order); in initPrograms()
370 const bool isUint = isUintFormat(caseDef.viewFormat); in initPrograms()
371 const bool isSint = isIntFormat(caseDef.viewFormat); in initPrograms()
395 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat); in initPrograms()
398 … std::string colorTypeStr = isUintFormat(caseDef.viewFormat) ? "uvec4" : isIntFormat(caseDef.viewF… in initPrograms()
399 …const bool isIntegerFormat = isUintFormat(caseDef.viewFormat) || isIntFormat(caseDef.viewFormat); in initPrograms()
445 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat); in initPrograms()
[all …]
DvktImageAstcDecodeModeTests.cpp166 …VkFormat viewFormat = m_parameters.testedIsUnorm ? VK_FORMAT_R32G32B32A32_UINT : VK_FORMAT… in iterate() local
182 viewFormat, // VkFormat format; in iterate()
188 …iew = makeImageView(vk, device, referenceImage.get(), imageViewType, viewFormat, subresourceRang… in iterate()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_state_sampler.c138 enum pipe_format viewFormat = sv->base.format; in svga_validate_pipe_sampler_view() local
143 if (viewFormat == PIPE_FORMAT_B8G8R8X8_UNORM && in svga_validate_pipe_sampler_view()
145 viewFormat = PIPE_FORMAT_B8G8R8A8_UNORM; in svga_validate_pipe_sampler_view()
147 else if (viewFormat == PIPE_FORMAT_B8G8R8A8_UNORM && in svga_validate_pipe_sampler_view()
149 viewFormat = PIPE_FORMAT_B8G8R8X8_UNORM; in svga_validate_pipe_sampler_view()
154 svga_translate_texture_buffer_view_format(viewFormat, in svga_validate_pipe_sampler_view()
160 format = svga_translate_format(ss, viewFormat, in svga_validate_pipe_sampler_view()
/external/swiftshader/src/Device/
DBlitter.hpp145 …void clear(void *clearValue, vk::Format clearFormat, vk::Image *dest, const vk::Format &viewFormat
163 …clearValue, vk::Format clearFormat, vk::Image *dest, const vk::Format &viewFormat, const VkImageSu…
DBlitter.cpp58 void Blitter::clear(void *pixel, vk::Format format, vk::Image *dest, const vk::Format &viewFormat, … in clear() argument
61 vk::Format dstFormat = viewFormat.getAspectFormat(aspect); in clear()
68 if(viewFormat.isUnsignedNormalized() || viewFormat.isSRGBformat()) in clear()
75 else if(viewFormat.isSignedNormalized()) in clear()
165 …clearValue, vk::Format clearFormat, vk::Image *dest, const vk::Format &viewFormat, const VkImageSu… in fastClear() argument
197 switch(viewFormat) in fastClear()
282 switch(viewFormat.bytes()) in fastClear()
/external/swiftshader/src/Vulkan/
DVkImage.hpp70 …void clear(const VkClearValue &clearValue, const vk::Format &viewFormat, const VkRect2D &renderAre…
134 …void clear(void *pixelData, VkFormat pixelFormat, const vk::Format &viewFormat, const VkImageSubre…
DVkImage.cpp1027 void Image::clear(void *pixelData, VkFormat pixelFormat, const vk::Format &viewFormat, const VkImag… in clear() argument
1029 …device->getBlitter()->clear(pixelData, pixelFormat, this, viewFormat, subresourceRange, &renderAre… in clear()
1059 void Image::clear(const VkClearValue &clearValue, const vk::Format &viewFormat, const VkRect2D &ren… in clear() argument
1067 …clear((void *)(clearValue.color.float32), getClearFormat(), viewFormat, subresourceRange, renderAr… in clear()
1075 …clear((void *)(&clearValue.depthStencil.depth), VK_FORMAT_D32_SFLOAT, viewFormat, depthSubresource… in clear()
1082 …clear((void *)(&clearValue.depthStencil.stencil), VK_FORMAT_S8_UINT, viewFormat, stencilSubresourc… in clear()
/external/deqp/modules/internal/
DditTextureFormatTests.cpp1270 void getReferenceValues (TextureFormat storageFormat, TextureFormat viewFormat, vector<Vector<T, 4>… in getReferenceValues() argument
1274 const tcu::TextureSwizzle& swizzle = tcu::getChannelReadSwizzle(viewFormat.order); in getReferenceValues()
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktTextureTestUtil.hpp175 const vk::VkFormat viewFormat, const vk::VkComponentMapping& viewComponents);