HomeSort by relevance Sort by last modified time
    Searched refs:textureFilter (Results 1 - 11 of 11) sorted by null

  /external/swiftshader/src/Renderer/
Sampler.hpp 151 FilterType textureFilter : BITS(FILTER_LAST);
177 void setTextureFilter(FilterType textureFilter);
221 FilterType textureFilter;
Sampler.cpp 56 textureFilter = FILTER_LINEAR;
94 state.textureFilter = getTextureFilter();
256 void Sampler::setTextureFilter(FilterType textureFilter)
258 this->textureFilter = (FilterType)min(textureFilter, maximumTextureFilterQuality);
442 FilterType filter = textureFilter;
VertexProcessor.hpp 251 void setTextureFilter(unsigned int sampler, FilterType textureFilter);
PixelProcessor.hpp 225 void setTextureFilter(unsigned int sampler, FilterType textureFilter);
Renderer.hpp 336 void setTextureFilter(SamplerType type, int sampler, FilterType textureFilter);
VertexProcessor.cpp 515 void VertexProcessor::setTextureFilter(unsigned int sampler, FilterType textureFilter)
519 context->sampler[TEXTURE_IMAGE_UNITS + sampler].setTextureFilter(textureFilter);
PixelProcessor.cpp 360 void PixelProcessor::setTextureFilter(unsigned int sampler, FilterType textureFilter)
364 context->sampler[sampler].setTextureFilter(textureFilter);
    [all...]
Renderer.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrConversionTests.cpp 141 , textureFilter (textureFilter_)
160 vk::VkFilter textureFilter;
273 vk::VkFilter textureFilter,
298 textureFilter,
299 textureFilter,
425 vk::VkFilter textureFilter,
442 const vk::Unique<vk::VkSampler> sampler (createSampler(vkd, device, textureFilter, addressModeU, addressModeV, *conversion));
452 const vk::Unique<vk::VkSampler> sampler (createSampler(vkd, device, textureFilter, addressModeU, addressModeV, (vk::VkSamplerYcbcrConversion)0u));
499 log << TestLog::Message << "TextureFilter: " << config.textureFilter << TestLog::EndMessage
    [all...]
  /external/swiftshader/src/Shader/
SamplerCore.cpp 160 if(state.textureFilter != FILTER_GATHER)
300 bool forceFloatFiltering = state.highPrecisionFiltering && !hasYuvFormat() && (state.textureFilter != FILTER_POINT);
389 if(state.textureFilter != FILTER_GATHER)
537 if(state.textureFilter == FILTER_MIN_LINEAR_MAG_POINT)
541 else if(state.textureFilter == FILTER_MIN_POINT_MAG_LINEAR)
675 if(state.textureFilter != FILTER_ANISOTROPIC || function == Lod || function == Fetch)
748 bool gather = state.textureFilter == FILTER_GATHER;
761 if(state.textureFilter == FILTER_POINT || texelFetch)
956 if(state.textureFilter == FILTER_POINT || texelFetch)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemYCbCrConversionTests.cpp 117 , textureFilter (textureFilter_)
136 vk::VkFilter textureFilter;
169 if (config.textureFilter == vk::VK_FILTER_LINEAR && ((features & vk::VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT) == 0))
175 if (config.chromaFilter != config.textureFilter && ((features & vk::VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT) == 0))
212 const vk::VkFilter textureFilter,
229 textureFilter,
230 textureFilter,
446 log << tcu::TestLog::Message << "TextureFilter: " << config.textureFilter << tcu::TestLog::EndMessage;
    [all...]

Completed in 125 milliseconds