HomeSort by relevance Sort by last modified time
    Searched refs:maxLights (Results 1 - 5 of 5) sorted by null

  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmValidate.cpp 24 bool GLEScmValidate::lightEnum(GLenum e,unsigned int maxLights) {
25 return e >=GL_LIGHT0 && e <= (GL_LIGHT0+maxLights);
150 bool GLEScmValidate::capability(GLenum cap,int maxLights,int maxClipPlanes) {
181 return GLEScmValidate::lightEnum(cap,maxLights) || GLEScmValidate::clipPlaneEnum(cap,maxClipPlanes);
GLEScmValidate.h 25 static bool lightEnum(GLenum e,unsigned int maxLIghts);
32 static bool capability(GLenum cap,int maxLights,int maxClipPlanes);
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLEScontext.h 56 GLSupport():maxLights(0),maxVertexAttribs(0),maxClipPlane(0),maxTexUnits(0), \
64 int maxLights;
167 static int getMaxLights(){return s_glSupport.maxLights;}
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 56 private int maxLights;
115 maxLights = glGetInteger(GL_MAX_LIGHTS);
479 // If more than maxLights are defined, they will be ignored.
496 if (lightList.size() >= maxLights){
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLEScontext.cpp 515 s_glDispatch.glGetIntegerv(GL_MAX_LIGHTS,&s_glSupport.maxLights);

Completed in 1925 milliseconds