/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
D | SamplerValidationTests.cpp | 53 kValidAnisoSamplerDesc.maxAnisotropy = 2; in TEST_F() 63 samplerDesc.maxAnisotropy = 0; in TEST_F() 92 kValidAnisoSamplerDesc.maxAnisotropy = 2; in TEST_F() 99 samplerDesc.maxAnisotropy = 16; in TEST_F() 104 samplerDesc.maxAnisotropy = 32; in TEST_F() 109 samplerDesc.maxAnisotropy = 0x7FFF; in TEST_F() 114 samplerDesc.maxAnisotropy = 0x8000; in TEST_F() 119 samplerDesc.maxAnisotropy = 0xFFFF; in TEST_F()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/ |
D | vktTextureFilteringAnisotropyTests.cpp | 64 , maxAnisotropy (maxAnisotropy_) in AnisotropyParams() 72 float maxAnisotropy; member 91 …maxAnisotropy = min(getPhysicalDeviceProperties(m_context.getInstanceInterface(), m_context.getPhy… in FilteringAnisotropyInstance() 143 …erQuad(renderedAnisotropyFrame, position, 0, &texCoord[0], m_refParams, m_refParams.maxAnisotropy); in iterate() 216 const float maxAnisotropy[] = in createFilteringAnisotropyTests() local 239 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests() 246 …AnisotropyParams refParams (TEXTURETYPE_2D, maxAnisotropy[anisotropyNdx] ,minFilters[minFilterNdx]… in createFilteringAnisotropyTests() 262 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests() 269 …AnisotropyParams refParams (TEXTURETYPE_2D, maxAnisotropy[anisotropyNdx] ,minFilters[minFilterNdx]… in createFilteringAnisotropyTests() 295 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests() [all …]
|
D | vktTextureTestUtil.cpp | 1033 const float maxAnisotropy = 1.0f; in renderQuad() local 1041 renderQuad(result, positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad() 1049 const float maxAnisotropy) in renderQuad() argument 1051 renderQuad(result.getAccess(), positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad() 1059 const float maxAnisotropy) in renderQuad() argument 1303 if (maxAnisotropy > 1.0f) in renderQuad() 1306 samplerCreateInfo.maxAnisotropy = maxAnisotropy; in renderQuad()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | SamplerVk.cpp | 91 uint16_t maxAnisotropy = GetMaxAnisotropy(); in Initialize() local 92 if (device->GetDeviceInfo().features.samplerAnisotropy == VK_TRUE && maxAnisotropy > 1) { in Initialize() 95 createInfo.maxAnisotropy = in Initialize() 96 std::min(static_cast<float>(maxAnisotropy), in Initialize() 100 createInfo.maxAnisotropy = 1; in Initialize()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | SamplerVk.cpp | 50 float maxAnisotropy = mState.getMaxAnisotropy(); in syncState() local 51 bool anisotropyEnable = extensions.textureFilterAnisotropic && maxAnisotropy > 1.0f; in syncState() 64 samplerInfo.maxAnisotropy = maxAnisotropy; in syncState()
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | SamplerFilterAnisotropicTests.cpp | 142 void TestFilterAnisotropic(const uint16_t maxAnisotropy) { in TestFilterAnisotropic() argument 149 descriptor.maxAnisotropy = maxAnisotropy; in TestFilterAnisotropic() 259 if (maxAnisotropy >= 16) { in TestFilterAnisotropic() 262 } else if (maxAnisotropy == 2) { in TestFilterAnisotropic() 265 } else if (maxAnisotropy <= 1) { in TestFilterAnisotropic()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | Sampler.cpp | 40 if (descriptor->maxAnisotropy > 1) { in ValidateSamplerDescriptor() 47 wgpu::FilterMode::Linear, descriptor->maxAnisotropy); in ValidateSamplerDescriptor() 48 } else if (descriptor->maxAnisotropy == 0u) { in ValidateSamplerDescriptor() 50 descriptor->maxAnisotropy); in ValidateSamplerDescriptor() 85 mMaxAnisotropy(descriptor->maxAnisotropy) { in SamplerBase()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkSampler.cpp | 30 , maxAnisotropy(pCreateInfo->maxAnisotropy) in SamplerState()
|
D | VkSampler.hpp | 46 const float maxAnisotropy = 0.0f; member
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
D | Sampler.h | 56 void setMaxAnisotropy(GLfloat maxAnisotropy) { mMaxAnisotropy = maxAnisotropy; } in setMaxAnisotropy() argument
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | renderer9_utils.h | 39 D3DTEXTUREFILTERTYPE ConvertMagFilter(GLenum magFilter, float maxAnisotropy); 44 float maxAnisotropy,
|
D | renderer9_utils.cpp | 278 D3DTEXTUREFILTERTYPE ConvertMagFilter(GLenum magFilter, float maxAnisotropy) in ConvertMagFilter() argument 280 if (maxAnisotropy > 1.0f) in ConvertMagFilter() 305 float maxAnisotropy, in ConvertMinFilter() argument 354 if (maxAnisotropy > 1.0f) in ConvertMinFilter()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | renderer9_utils.h | 39 D3DTEXTUREFILTERTYPE ConvertMagFilter(GLenum magFilter, float maxAnisotropy); 44 float maxAnisotropy,
|
D | renderer9_utils.cpp | 278 D3DTEXTUREFILTERTYPE ConvertMagFilter(GLenum magFilter, float maxAnisotropy) in ConvertMagFilter() argument 280 if (maxAnisotropy > 1.0f) in ConvertMagFilter() 305 float maxAnisotropy, in ConvertMinFilter() argument 354 if (maxAnisotropy > 1.0f) in ConvertMinFilter()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Sampler.cpp | 104 void Sampler::setMaxAnisotropy(const Context *context, float maxAnisotropy) in setMaxAnisotropy() argument 106 mState.setMaxAnisotropy(maxAnisotropy); in setMaxAnisotropy()
|
D | Sampler.h | 53 void setMaxAnisotropy(const Context *context, float maxAnisotropy);
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Sampler.cpp | 100 void Sampler::setMaxAnisotropy(const Context *context, float maxAnisotropy) in setMaxAnisotropy() argument 102 mState.setMaxAnisotropy(maxAnisotropy); in setMaxAnisotropy()
|
D | Sampler.h | 53 void setMaxAnisotropy(const Context *context, float maxAnisotropy);
|
D | angletypes.cpp | 179 void SamplerState::setMaxAnisotropy(float maxAnisotropy) in setMaxAnisotropy() argument 181 mMaxAnisotropy = maxAnisotropy; in setMaxAnisotropy()
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | Sampler.cpp | 310 void Sampler::setMaxAnisotropy(float maxAnisotropy) in setMaxAnisotropy() argument 312 texture.maxAnisotropy = maxAnisotropy; in setMaxAnisotropy() 459 if(textureType != TEXTURE_2D || texture.maxAnisotropy == 1.0f) in getTextureFilter()
|
D | Sampler.hpp | 55 float maxAnisotropy; member 185 void setMaxAnisotropy(float maxAnisotropy);
|
/third_party/mesa3d/src/broadcom/vulkan/ |
D | v3dvx_device.c | 196 if (pCreateInfo->maxAnisotropy > 8) in v3dX() 198 else if (pCreateInfo->maxAnisotropy > 4) in v3dX() 200 else if (pCreateInfo->maxAnisotropy > 2) in v3dX()
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | SamplerVk.cpp | 74 createInfo.maxAnisotropy = 1.0f; in Sampler()
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | Sampler.hpp | 114 float maxAnisotropy = 0.0f; member
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/stub/ |
D | cuda.h | 143 guint maxAnisotropy; member
|