Home
last modified time | relevance | path

Searched refs:setGatherEnable (Results 1 – 17 of 17) sorted by relevance

/external/swiftshader/src/Device/
DVertexProcessor.cpp201 void VertexProcessor::setGatherEnable(unsigned int sampler, bool enable) in setGatherEnable() function in sw::VertexProcessor
205 context->sampler[TEXTURE_IMAGE_UNITS + sampler].setGatherEnable(enable); in setGatherEnable()
DVertexProcessor.hpp145 void setGatherEnable(unsigned int sampler, bool enable);
DSampler.hpp179 void setGatherEnable(bool enable);
DPixelProcessor.hpp191 void setGatherEnable(unsigned int sampler, bool enable);
DPixelProcessor.cpp164 void PixelProcessor::setGatherEnable(unsigned int sampler, bool enable) in setGatherEnable() function in sw::PixelProcessor
168 context->sampler[sampler].setGatherEnable(enable); in setGatherEnable()
DRenderer.hpp270 void setGatherEnable(SamplerType type, int sampler, bool enable);
DSampler.cpp263 void Sampler::setGatherEnable(bool enable) in setGatherEnable() function in sw::Sampler
DRenderer.cpp1898 void Renderer::setGatherEnable(SamplerType type, int sampler, bool enable) in setGatherEnable() function in sw::Renderer
1902 PixelProcessor::setGatherEnable(sampler, enable); in setGatherEnable()
1906 VertexProcessor::setGatherEnable(sampler, enable); in setGatherEnable()
/external/swiftshader/src/Renderer/
DSampler.hpp179 void setGatherEnable(bool enable);
DVertexProcessor.hpp253 void setGatherEnable(unsigned int sampler, bool enable);
DPixelProcessor.hpp228 void setGatherEnable(unsigned int sampler, bool enable);
DRenderer.hpp298 void setGatherEnable(SamplerType type, int sampler, bool enable);
DVertexProcessor.cpp533 void VertexProcessor::setGatherEnable(unsigned int sampler, bool enable) in setGatherEnable() function in sw::VertexProcessor
537 context->sampler[TEXTURE_IMAGE_UNITS + sampler].setGatherEnable(enable); in setGatherEnable()
DSampler.cpp266 void Sampler::setGatherEnable(bool enable) in setGatherEnable() function in sw::Sampler
DPixelProcessor.cpp378 void PixelProcessor::setGatherEnable(unsigned int sampler, bool enable) in setGatherEnable() function in sw::PixelProcessor
382 context->sampler[sampler].setGatherEnable(enable); in setGatherEnable()
DRenderer.cpp2292 void Renderer::setGatherEnable(SamplerType type, int sampler, bool enable) in setGatherEnable() function in sw::Renderer
2296 PixelProcessor::setGatherEnable(sampler, enable); in setGatherEnable()
2300 VertexProcessor::setGatherEnable(sampler, enable); in setGatherEnable()
/external/swiftshader/src/D3D9/
DDirect3DDevice9.cpp4320 renderer->setGatherEnable(type, index, true); in SetSamplerState()
4324 renderer->setGatherEnable(type, index, false); in SetSamplerState()