Home
last modified time | relevance | path

Searched refs:TextureStage (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DTextureStage.cpp24 TextureStage::State::State() in State()
29 TextureStage::TextureStage() : sampler(0), previousStage(0) in TextureStage() function in sw::TextureStage
33 TextureStage::~TextureStage() in ~TextureStage()
37 void TextureStage::init(int stage, const Sampler *sampler, const TextureStage *previousStage) in init()
62 TextureStage::State TextureStage::textureStageState() const in textureStageState()
92 void TextureStage::setConstantColor(const Color<float> &constantColor) in setConstantColor()
106 void TextureStage::setBumpmapMatrix(int element, float value) in setBumpmapMatrix()
119 void TextureStage::setLuminanceScale(float value) in setLuminanceScale()
126 void TextureStage::setLuminanceOffset(float value) in setLuminanceOffset()
133 void TextureStage::setTexCoordIndex(unsigned int texCoordIndex) in setTexCoordIndex()
[all …]
DPixelProcessor.hpp94 TextureStage::State textureStage[8];
210 void setStageOperation(unsigned int stage, TextureStage::StageOperation stageOperation);
211 void setFirstArgument(unsigned int stage, TextureStage::SourceArgument firstArgument);
212 void setSecondArgument(unsigned int stage, TextureStage::SourceArgument secondArgument);
213 void setThirdArgument(unsigned int stage, TextureStage::SourceArgument thirdArgument);
214 void setStageOperationAlpha(unsigned int stage, TextureStage::StageOperation stageOperationAlpha);
215 void setFirstArgumentAlpha(unsigned int stage, TextureStage::SourceArgument firstArgumentAlpha);
216 void setSecondArgumentAlpha(unsigned int stage, TextureStage::SourceArgument secondArgumentAlpha);
217 void setThirdArgumentAlpha(unsigned int stage, TextureStage::SourceArgument thirdArgumentAlpha);
218 void setFirstModifier(unsigned int stage, TextureStage::ArgumentModifier firstModifier);
[all …]
DTextureStage.hpp28 class TextureStage class
131 TextureStage();
133 ~TextureStage();
135 void init(int stage, const Sampler *sampler, const TextureStage *previousStage);
194 const TextureStage *previousStage;
DPixelProcessor.cpp198 …void PixelProcessor::setStageOperation(unsigned int stage, TextureStage::StageOperation stageOpera… in setStageOperation()
207 …void PixelProcessor::setFirstArgument(unsigned int stage, TextureStage::SourceArgument firstArgume… in setFirstArgument()
216 …void PixelProcessor::setSecondArgument(unsigned int stage, TextureStage::SourceArgument secondArgu… in setSecondArgument()
225 …void PixelProcessor::setThirdArgument(unsigned int stage, TextureStage::SourceArgument thirdArgume… in setThirdArgument()
234 …void PixelProcessor::setStageOperationAlpha(unsigned int stage, TextureStage::StageOperation stage… in setStageOperationAlpha()
243 …void PixelProcessor::setFirstArgumentAlpha(unsigned int stage, TextureStage::SourceArgument firstA… in setFirstArgumentAlpha()
252 …void PixelProcessor::setSecondArgumentAlpha(unsigned int stage, TextureStage::SourceArgument secon… in setSecondArgumentAlpha()
261 …void PixelProcessor::setThirdArgumentAlpha(unsigned int stage, TextureStage::SourceArgument thirdA… in setThirdArgumentAlpha()
270 …void PixelProcessor::setFirstModifier(unsigned int stage, TextureStage::ArgumentModifier firstModi… in setFirstModifier()
279 …void PixelProcessor::setSecondModifier(unsigned int stage, TextureStage::ArgumentModifier secondMo… in setSecondModifier()
[all …]
DCMakeLists.txt35 TextureStage.cpp
58 TextureStage.hpp
DBUILD.gn50 "TextureStage.cpp",
DContext.hpp441 TextureStage textureStage[8];
DRenderer.hpp176 TextureStage::Uniforms textureStage[8];
DContext.cpp1412 if(textureStage[i].stageOperation == TextureStage::STAGE_DISABLE) in textureActive()
DRenderer.cpp444 …if(pixelState.textureStage[stage].stageOperation != TextureStage::STAGE_DISABLE || context->pixelS… in draw()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DPixelPipeline.cpp43 if(state.textureStage[stage].stageOperation == TextureStage::STAGE_DISABLE) in fixedFunction()
390 const TextureStage::State &textureStage = state.textureStage[stage]; in blendTexture()
392 if(textureStage.firstArgument == TextureStage::SOURCE_CONSTANT || in blendTexture()
393 textureStage.firstArgumentAlpha == TextureStage::SOURCE_CONSTANT || in blendTexture()
394 textureStage.secondArgument == TextureStage::SOURCE_CONSTANT || in blendTexture()
395 textureStage.secondArgumentAlpha == TextureStage::SOURCE_CONSTANT || in blendTexture()
396 textureStage.thirdArgument == TextureStage::SOURCE_CONSTANT || in blendTexture()
397 textureStage.thirdArgumentAlpha == TextureStage::SOURCE_CONSTANT) in blendTexture()
405 if(textureStage.firstArgument == TextureStage::SOURCE_TFACTOR || in blendTexture()
406 textureStage.firstArgumentAlpha == TextureStage::SOURCE_TFACTOR || in blendTexture()
[all …]