Searched refs:TextureStage (Results 1 – 11 of 11) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | TextureStage.cpp | 24 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 …]
|
D | PixelProcessor.hpp | 94 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 …]
|
D | TextureStage.hpp | 28 class TextureStage class 131 TextureStage(); 133 ~TextureStage(); 135 void init(int stage, const Sampler *sampler, const TextureStage *previousStage); 194 const TextureStage *previousStage;
|
D | PixelProcessor.cpp | 198 …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 …]
|
D | CMakeLists.txt | 35 TextureStage.cpp 58 TextureStage.hpp
|
D | BUILD.gn | 50 "TextureStage.cpp",
|
D | Context.hpp | 441 TextureStage textureStage[8];
|
D | Renderer.hpp | 176 TextureStage::Uniforms textureStage[8];
|
D | Context.cpp | 1412 if(textureStage[i].stageOperation == TextureStage::STAGE_DISABLE) in textureActive()
|
D | Renderer.cpp | 444 …if(pixelState.textureStage[stage].stageOperation != TextureStage::STAGE_DISABLE || context->pixelS… in draw()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
D | PixelPipeline.cpp | 43 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 …]
|