Lines Matching refs:VertexProcessor
38 unsigned int VertexProcessor::States::computeHash() in computeHash()
51 VertexProcessor::State::State() in State()
56 bool VertexProcessor::State::operator==(const State &state) const in operator ==()
66 VertexProcessor::TransformFeedbackInfo::TransformFeedbackInfo() in TransformFeedbackInfo()
76 VertexProcessor::UniformBufferInfo::UniformBufferInfo() in UniformBufferInfo()
82 VertexProcessor::VertexProcessor(Context *context) : context(context) in VertexProcessor() function in sw::VertexProcessor
88 VertexProcessor::~VertexProcessor() in ~VertexProcessor()
94 void VertexProcessor::setInputStream(int index, const Stream &stream) in setInputStream()
99 void VertexProcessor::resetInputStreams() in resetInputStreams()
107 void VertexProcessor::setFloatConstant(unsigned int index, const float value[4]) in setFloatConstant()
119 void VertexProcessor::setIntegerConstant(unsigned int index, const int integer[4]) in setIntegerConstant()
131 void VertexProcessor::setBooleanConstant(unsigned int index, int boolean) in setBooleanConstant()
140 void VertexProcessor::setUniformBuffer(int index, sw::Resource* buffer, int offset) in setUniformBuffer()
146 void VertexProcessor::lockUniformBuffers(byte** u, sw::Resource* uniformBuffers[]) in lockUniformBuffers()
155 …void VertexProcessor::setTransformFeedbackBuffer(int index, sw::Resource* buffer, int offset, unsi… in setTransformFeedbackBuffer()
165 …void VertexProcessor::lockTransformFeedbackBuffers(byte** t, unsigned int* v, unsigned int* r, uns… in lockTransformFeedbackBuffers()
178 void VertexProcessor::setInstanceID(int instanceID) in setInstanceID()
183 void VertexProcessor::setTextureFilter(unsigned int sampler, FilterType textureFilter) in setTextureFilter()
192 void VertexProcessor::setMipmapFilter(unsigned int sampler, MipmapType mipmapFilter) in setMipmapFilter()
201 void VertexProcessor::setGatherEnable(unsigned int sampler, bool enable) in setGatherEnable()
210 void VertexProcessor::setAddressingModeU(unsigned int sampler, AddressingMode addressMode) in setAddressingModeU()
219 void VertexProcessor::setAddressingModeV(unsigned int sampler, AddressingMode addressMode) in setAddressingModeV()
228 void VertexProcessor::setAddressingModeW(unsigned int sampler, AddressingMode addressMode) in setAddressingModeW()
237 void VertexProcessor::setReadSRGB(unsigned int sampler, bool sRGB) in setReadSRGB()
246 void VertexProcessor::setMipmapLOD(unsigned int sampler, float bias) in setMipmapLOD()
255 void VertexProcessor::setBorderColor(unsigned int sampler, const Color<float> &borderColor) in setBorderColor()
264 void VertexProcessor::setMaxAnisotropy(unsigned int sampler, float maxAnisotropy) in setMaxAnisotropy()
273 void VertexProcessor::setHighPrecisionFiltering(unsigned int sampler, bool highPrecisionFiltering) in setHighPrecisionFiltering()
282 void VertexProcessor::setSwizzleR(unsigned int sampler, SwizzleType swizzleR) in setSwizzleR()
291 void VertexProcessor::setSwizzleG(unsigned int sampler, SwizzleType swizzleG) in setSwizzleG()
300 void VertexProcessor::setSwizzleB(unsigned int sampler, SwizzleType swizzleB) in setSwizzleB()
309 void VertexProcessor::setSwizzleA(unsigned int sampler, SwizzleType swizzleA) in setSwizzleA()
318 void VertexProcessor::setCompareFunc(unsigned int sampler, CompareFunc compFunc) in setCompareFunc()
327 void VertexProcessor::setBaseLevel(unsigned int sampler, int baseLevel) in setBaseLevel()
336 void VertexProcessor::setMaxLevel(unsigned int sampler, int maxLevel) in setMaxLevel()
345 void VertexProcessor::setMinLod(unsigned int sampler, float minLod) in setMinLod()
354 void VertexProcessor::setMaxLod(unsigned int sampler, float maxLod) in setMaxLod()
363 void VertexProcessor::setPointSizeMin(float pointSizeMin) in setPointSizeMin()
368 void VertexProcessor::setPointSizeMax(float pointSizeMax) in setPointSizeMax()
373 void VertexProcessor::setTransformFeedbackQueryEnabled(bool enable) in setTransformFeedbackQueryEnabled()
378 void VertexProcessor::enableTransformFeedback(uint64_t enable) in enableTransformFeedback()
383 void VertexProcessor::setRoutineCacheSize(int cacheSize) in setRoutineCacheSize()
389 const VertexProcessor::State VertexProcessor::update(DrawType drawType) in update()
442 Routine *VertexProcessor::routine(const State &state) in routine()