Searched refs:lightType (Results 1 – 4 of 4) sorted by relevance
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/ |
D | SceneLoader.java | 205 String lightType = parseString(attribs.getValue("type"), "point"); in parseLight() local 206 if(lightType.equals("point")) { in parseLight() 208 } else if(lightType.equals("directional") || lightType.equals("sun")) { in parseLight() 212 } else if(lightType.equals("spotLight") || lightType.equals("spot")) { in parseLight() 215 … logger.log(Level.WARNING, "No matching jME3 LightType found for OGRE LightType: {0}", lightType); in parseLight()
|
/external/deqp/modules/gles2/performance/ |
D | es2pShaderCompilationCases.cpp | 502 … avoidCache, bool addWhitespaceAndComments, bool isVertexCase, int numLights, LightType lightType); 668 … int caseID, InvalidityType invalidityType, bool isVertexCase, int numLights, LightType lightType); 757 static string lightVertexTemplate (int numLights, bool isVertexCase, LightType lightType) in lightVertexTemplate() argument 779 if (lightType == LIGHT_POINT) in lightVertexTemplate() 799 if (lightType == LIGHT_POINT) in lightVertexTemplate() 830 if (lightType == LIGHT_POINT) in lightVertexTemplate() 862 if (lightType == LIGHT_POINT) in lightVertexTemplate() 879 else if (lightType == LIGHT_DIRECTIONAL) in lightVertexTemplate() 903 static string lightFragmentTemplate (int numLights, bool isVertexCase, LightType lightType) in lightFragmentTemplate() argument 924 if (lightType == LIGHT_POINT) in lightFragmentTemplate() [all …]
|
/external/deqp/modules/gles3/performance/ |
D | es3pShaderCompilationCases.cpp | 502 … avoidCache, bool addWhitespaceAndComments, bool isVertexCase, int numLights, LightType lightType); 668 … int caseID, InvalidityType invalidityType, bool isVertexCase, int numLights, LightType lightType); 757 static string lightVertexTemplate (int numLights, bool isVertexCase, LightType lightType) in lightVertexTemplate() argument 780 if (lightType == LIGHT_POINT) in lightVertexTemplate() 800 if (lightType == LIGHT_POINT) in lightVertexTemplate() 831 if (lightType == LIGHT_POINT) in lightVertexTemplate() 863 if (lightType == LIGHT_POINT) in lightVertexTemplate() 880 else if (lightType == LIGHT_DIRECTIONAL) in lightVertexTemplate() 904 static string lightFragmentTemplate (int numLights, bool isVertexCase, LightType lightType) in lightFragmentTemplate() argument 929 if (lightType == LIGHT_POINT) in lightFragmentTemplate() [all …]
|
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/ |
D | LwjglGL1Renderer.java | 525 Light.Type lightType = light.getType(); in setLighting() local 533 switch (lightType){ in setLighting() 613 "Unrecognized light type: " + lightType); in setLighting()
|