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

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Environment.java 69 PointLightsAttribute pointLights = ((PointLightsAttribute)get(PointLightsAttribute.Type));
70 if (pointLights == null) set(pointLights = new PointLightsAttribute());
71 pointLights.lights.add(light);
118 PointLightsAttribute pointLights = ((PointLightsAttribute)get(PointLightsAttribute.Type));
119 pointLights.lights.removeValue(light, false);
120 if (pointLights.lights.size == 0)
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
Benchmark3DTest.java 135 int pointLights = MathUtils.random(5);
140 config.numPointLights = pointLights;
149 for (int i = 0; i < pointLights; i++) {
197 PointLightsAttribute pointLights = (PointLightsAttribute)environment.get(PointLightsAttribute.Type);
202 stringBuilder.append((dirLights == null ? 0 : dirLights.lights.size) + (pointLights == null ? 0 : pointLights.lights.size));
206 stringBuilder.append(pointLights == null ? 0 : pointLights.lights.size);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/
DefaultShader.java 118 public final static Uniform pointLights = new Uniform("u_pointLights");
494 protected final PointLight pointLights[];
539 this.pointLights = new PointLight[lighting && config.numPointLights > 0 ? config.numPointLights : 0];
540 for (int i = 0; i < pointLights.length; i++)
541 pointLights[i] = new PointLight();
    [all...]

Completed in 495 milliseconds