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

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
PointLightsAttribute.java 10 * lights are stored by reference, the {@link #copy()} or {@link #PointLightsAttribute(PointLightsAttribute)} method
13 public class PointLightsAttribute extends Attribute {
23 public PointLightsAttribute () {
28 public PointLightsAttribute (final PointLightsAttribute copyFrom) {
34 public PointLightsAttribute copy () {
35 return new PointLightsAttribute(this);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Environment.java 20 import com.badlogic.gdx.graphics.g3d.attributes.PointLightsAttribute;
69 PointLightsAttribute pointLights = ((PointLightsAttribute)get(PointLightsAttribute.Type));
70 if (pointLights == null) set(pointLights = new PointLightsAttribute());
117 if (has(PointLightsAttribute.Type)) {
118 PointLightsAttribute pointLights = ((PointLightsAttribute)get(PointLightsAttribute.Type));
121 remove(PointLightsAttribute.Type);
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
Benchmark3DTest.java 31 import com.badlogic.gdx.graphics.g3d.attributes.PointLightsAttribute;
197 PointLightsAttribute pointLights = (PointLightsAttribute)environment.get(PointLightsAttribute.Type);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/
DefaultShader.java 36 import com.badlogic.gdx.graphics.g3d.attributes.PointLightsAttribute;
366 if (combinedAttributes.has(PointLightsAttribute.Type)) {
367 Array<PointLight> lights = ((PointLightsAttribute)combinedAttributes.get(PointLightsAttribute.Type)).lights;
    [all...]

Completed in 140 milliseconds