Home
last modified time | relevance | path

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

/external/swiftshader/src/Renderer/
DSampler.hpp179 void setGatherEnable(bool enable);
DVertexProcessor.hpp252 void setGatherEnable(unsigned int sampler, bool enable);
DPixelProcessor.hpp228 void setGatherEnable(unsigned int sampler, bool enable);
DRenderer.hpp297 void setGatherEnable(SamplerType type, int sampler, bool enable);
DVertexProcessor.cpp529 void VertexProcessor::setGatherEnable(unsigned int sampler, bool enable) in setGatherEnable() function in sw::VertexProcessor
533 context->sampler[TEXTURE_IMAGE_UNITS + sampler].setGatherEnable(enable); in setGatherEnable()
DSampler.cpp266 void Sampler::setGatherEnable(bool enable) in setGatherEnable() function in sw::Sampler
DPixelProcessor.cpp374 void PixelProcessor::setGatherEnable(unsigned int sampler, bool enable) in setGatherEnable() function in sw::PixelProcessor
378 context->sampler[sampler].setGatherEnable(enable); in setGatherEnable()
DRenderer.cpp2390 void Renderer::setGatherEnable(SamplerType type, int sampler, bool enable) in setGatherEnable() function in sw::Renderer
2394 PixelProcessor::setGatherEnable(sampler, enable); in setGatherEnable()
2398 VertexProcessor::setGatherEnable(sampler, enable); in setGatherEnable()
/external/swiftshader/src/D3D9/
DDirect3DDevice9.cpp4318 renderer->setGatherEnable(type, index, true); in SetSamplerState()
4322 renderer->setGatherEnable(type, index, false); in SetSamplerState()