/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_no_buildgn/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 | 1196 const float maxAnisotropy = 1.0f; in renderQuad() local 1204 renderQuad(result, positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad() 1212 const float maxAnisotropy) in renderQuad() argument 1214 renderQuad(result.getAccess(), positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad() 1222 const float maxAnisotropy) in renderQuad() argument 1465 if (maxAnisotropy > 1.0f) in renderQuad() 1468 samplerCreateInfo.maxAnisotropy = maxAnisotropy; in renderQuad()
|
D | vktTextureTestUtil.hpp | 222 const float maxAnisotropy); 230 const float maxAnisotropy);
|
/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 | 1196 const float maxAnisotropy = 1.0f; in renderQuad() local 1204 renderQuad(result, positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad() 1212 const float maxAnisotropy) in renderQuad() argument 1214 renderQuad(result.getAccess(), positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad() 1222 const float maxAnisotropy) in renderQuad() argument 1465 if (maxAnisotropy > 1.0f) in renderQuad() 1468 samplerCreateInfo.maxAnisotropy = maxAnisotropy; in renderQuad()
|
D | vktTextureTestUtil.hpp | 222 const float maxAnisotropy); 230 const float maxAnisotropy);
|
/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/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/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/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/mesa3d/src/broadcom/vulkan/ |
D | v3dvx_device.c | 215 if (pCreateInfo->maxAnisotropy > 8) in v3dX() 217 else if (pCreateInfo->maxAnisotropy > 4) in v3dX() 219 else if (pCreateInfo->maxAnisotropy > 2) in v3dX()
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | Sampler.hpp | 114 float maxAnisotropy = 0.0f; member
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SpirvShaderSampling.cpp | 80 samplerState.maxAnisotropy = vkSamplerState->maxAnisotropy; in getImageSampler()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | renderer11_utils.h | 55 float maxAnisotropy, 58 UINT ConvertMaxAnisotropy(float maxAnisotropy, D3D_FEATURE_LEVEL featureLevel);
|
/third_party/skia/src/gpu/vk/ |
D | GrVkSampler.cpp | 65 createInfo.maxAnisotropy = 1.0f; in Create()
|
/third_party/skia/src/gpu/mtl/ |
D | GrMtlSampler.mm | 74 samplerDesc.maxAnisotropy = 1.0f;
|