Home
last modified time | relevance | path

Searched refs:PixelProgram (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/src/Shader/
DPixelProgram.cpp28 PixelProgram::PixelProgram(const PixelProcessor::State &state, const PixelShader *shader) : in PixelProgram() function in sw::PixelProgram
57 void PixelProgram::setBuiltins(Int &x, Int &y, Float4(&z)[4], Float4 &w) in setBuiltins()
98 void PixelProgram::applyShader(Int cMask[4]) in applyShader()
608 Bool PixelProgram::alphaTest(Int cMask[4]) in alphaTest()
644 …void PixelProgram::rasterOperation(Float4 &fog, Pointer<Byte> cBuffer[4], Int &x, Int sMask[4], In… in rasterOperation()
748 …Vector4f PixelProgram::sampleTexture(const Src &sampler, Vector4f &uvwq, Float4 &bias, Vector4f &d… in sampleTexture()
782 …Vector4f PixelProgram::sampleTexture(int samplerIndex, Vector4f &uvwq, Float4 &bias, Vector4f &dsx… in sampleTexture()
798 void PixelProgram::clampColor(Vector4f oC[RENDERTARGETS]) in clampColor()
863 Int4 PixelProgram::enableMask(const Shader::Instruction *instruction) in enableMask()
890 Vector4f PixelProgram::fetchRegister(const Src &src, unsigned int offset) in fetchRegister()
[all …]
DCMakeLists.txt23 PixelProgram.cpp
36 PixelProgram.hpp
DPixelProgram.hpp25 class PixelProgram : public PixelRoutine class
28 PixelProgram(const PixelProcessor::State &state, const PixelShader *shader);
29 virtual ~PixelProgram() {} in ~PixelProgram()
DBUILD.gn40 "PixelProgram.cpp",
/external/swiftshader/src/Pipeline/
DPixelProgram.hpp22 class PixelProgram : public PixelRoutine class
25 PixelProgram( in PixelProgram() function in sw::PixelProgram
34 virtual ~PixelProgram() {} in ~PixelProgram()
DPixelProgram.cpp25 Int4 PixelProgram::maskAny(Int cMask[4]) const in maskAny()
43 Int4 PixelProgram::maskAny(Int cMask[4], Int sMask[4], Int zMask[4]) const in maskAny()
60 Int4 PixelProgram::maskAny(Int cMask, Int sMask, Int zMask) const in maskAny()
72 void PixelProgram::setBuiltins(Int &x, Int &y, Float4 (&z)[4], Float4 &w, Int cMask[4], int sampleI… in setBuiltins()
136 void PixelProgram::applyShader(Int cMask[4], Int sMask[4], Int zMask[4], int sampleId) in applyShader()
242 Bool PixelProgram::alphaTest(Int cMask[4], int sampleId) in alphaTest()
266 void PixelProgram::rasterOperation(Pointer<Byte> cBuffer[4], Int &x, Int sMask[4], Int zMask[4], In… in rasterOperation()
359 void PixelProgram::clampColor(Vector4f oC[RENDERTARGETS]) in clampColor()
DBUILD.gn21 "PixelProgram.hpp",
37 "PixelProgram.cpp",
DCMakeLists.txt25 PixelProgram.cpp
26 PixelProgram.hpp
/external/swiftshader/docs/
DIndex.md46 …mable pixel processing with a shader is implemented by [PixelProgram](../src/Shader/PixelProgram.c…
48 The PixelProgram and VertexProgram share some common functionality in [ShaderCore](../src/Shader/Sh…
/external/swiftshader/src/Device/
DPixelProcessor.cpp164 QuadRasterizer *generator = new PixelProgram(state, pipelineLayout, pixelShader, descriptorSets); in routine()
/external/swiftshader/src/
DAndroid.bp168 "Shader/PixelProgram.cpp",
/external/swiftshader/src/Renderer/
DPixelProcessor.cpp1209 generator = new PixelProgram(state, context->pixelShader); in routine()