Searched defs:globalAmbient (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/src/Shader/
H A DVertexPipeline.cpp243 Float4 globalAmbient = *Pointer<Float4>(data + OFFSET(DrawData,ff.globalAmbient)); // FIXME: Unpack local
245 ambient.x = globalAmbient.x;
246 ambient.y = globalAmbient.y;
247 ambient.z = globalAmbient.z;
/external/swiftshader/src/Renderer/
H A DVertexProcessor.hpp169 float4 globalAmbient; member in struct:sw::VertexProcessor::FixedFunction
214 void setGlobalAmbient(const Color<float> &globalAmbient);
H A DVertexProcessor.cpp387 void VertexProcessor::setGlobalAmbient(const Color<float> &globalAmbient) argument
389 ff.globalAmbient[0] = globalAmbient.r;
390 ff.globalAmbient[1] = globalAmbient.g;
391 ff.globalAmbient[2] = globalAmbient.b;
392 ff.globalAmbient[3] = globalAmbient.a;
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DContext.h613 Color globalAmbient; member in class:es1::Context

Completed in 120 milliseconds