HomeSort by relevance Sort by last modified time
    Searched refs:lights (Results 1 - 25 of 71) sorted by null

1 2 3

  /device/lge/bullhead/liblight/
Android.mk 29 LOCAL_SRC_FILES := lights.c
32 LOCAL_MODULE := lights.bullhead
  /device/google/dragon/lights/
lights.c 17 #define LOG_TAG "lights"
31 #include <hardware/lights.h>
71 static int write_brightness(struct dragon_lights *lights, int brightness)
77 lights->sysfs_path);
79 ALOG_ONCE(lights->logged_failures, OP_BRIGHTNESS_PATH,
86 ALOG_ONCE(lights->logged_failures, OP_WRITE_OPEN,
93 ALOG_ONCE(lights->logged_failures, OP_BRIGHTNESS_VALUE,
101 ALOG_ONCE(lights->logged_failures, OP_BRIGHTNESS_WRITE,
113 static int read_max_brightness(struct dragon_lights *lights, int *value)
119 lights->sysfs_path)
159 struct dragon_lights *lights = to_dragon_lights(dev); local
180 struct dragon_lights *lights = (struct dragon_lights *)dev; local
189 struct dragon_lights *lights; local
    [all...]
Android.mk 22 LOCAL_SRC_FILES := lights.c
30 LOCAL_MODULE := lights.dragon
  /device/moto/shamu/liblight/
Android.mk 4 LOCAL_MODULE := lights.shamu
6 LOCAL_SRC_FILES := lights.shamu.so
  /frameworks/base/services/core/jni/
com_android_server_lights_LightsService.cpp 26 #include <hardware/lights.h>
48 light_device_t* lights[LIGHT_COUNT]; member in struct:android::Devices
73 devices->lights[LIGHT_INDEX_BACKLIGHT]
75 devices->lights[LIGHT_INDEX_KEYBOARD]
77 devices->lights[LIGHT_INDEX_BUTTONS]
79 devices->lights[LIGHT_INDEX_BATTERY]
81 devices->lights[LIGHT_INDEX_NOTIFICATIONS]
83 devices->lights[LIGHT_INDEX_ATTENTION]
85 devices->lights[LIGHT_INDEX_BLUETOOTH]
87 devices->lights[LIGHT_INDEX_WIFI
    [all...]
  /external/skia/src/core/
SkLightingShader.h 23 class Lights : public SkRefCnt {
27 Builder(const SkLight lights[], int numLights)
28 : fLights(new Lights(lights, numLights)) {}
30 Builder() : fLights(new Lights) {}
32 // TODO: limit the number of lights here or just ignore those
40 const Lights* finish() {
45 SkAutoTUnref<Lights> fLights;
57 Lights() {}
58 Lights(const SkLight lights[], int numLights) : fLights(lights, numLights) {
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Environment.java 37 public Environment add (final BaseLight... lights) {
38 for (final BaseLight light : lights)
43 public Environment add (final Array<BaseLight> lights) {
44 for (final BaseLight light : lights)
64 dirLights.lights.add(light);
71 pointLights.lights.add(light);
78 spotLights.lights.add(light);
82 public Environment remove (final BaseLight... lights) {
83 for (final BaseLight light : lights)
88 public Environment remove (final Array<BaseLight> lights) {
    [all...]
  /device/huawei/angler/liblight/
Android.mk 22 LOCAL_SRC_FILES := lights.c
26 LOCAL_MODULE := lights.angler
  /frameworks/base/services/core/java/com/android/server/lights/
LightsManager.java 17 package com.android.server.lights;
Light.java 17 package com.android.server.lights;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
DirectionalLightsAttribute.java 10 * The lights are stored by reference, the {@link #copy()} or {@link #DirectionalLightsAttribute(DirectionalLightsAttribute)}
11 * method will not create new lights.
21 public final Array<DirectionalLight> lights; field in class:DirectionalLightsAttribute
25 lights = new Array<DirectionalLight>(1);
30 lights.addAll(copyFrom.lights);
41 for (DirectionalLight light : lights)
PointLightsAttribute.java 10 * lights are stored by reference, the {@link #copy()} or {@link #PointLightsAttribute(PointLightsAttribute)} method
11 * will not create new lights.
21 public final Array<PointLight> lights; field in class:PointLightsAttribute
25 lights = new Array<PointLight>(1);
30 lights.addAll(copyFrom.lights);
41 for (PointLight light : lights)
SpotLightsAttribute.java 10 * lights are stored by reference, the {@link #copy()} or {@link #SpotLightsAttribute(SpotLightsAttribute)} method
11 * will not create new lights.
21 public final Array<SpotLight> lights; field in class:SpotLightsAttribute
25 lights = new Array<SpotLight>(1);
30 lights.addAll(copyFrom.lights);
41 for (SpotLight light : lights)
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
BaseWorld.java 66 public void render (final ModelBatch batch, final Environment lights) {
67 render(batch, lights, entities);
70 public void render (final ModelBatch batch, final Environment lights, final Iterable<T> entities) {
72 batch.render(e.modelInstance, lights);
76 public void render (final ModelBatch batch, final Environment lights, final T entity) {
77 batch.render(entity.modelInstance, lights);
  /external/skia/samplecode/
SampleLighting.cpp 16 static const SkLightingShader::Lights* create_lights(SkScalar angle, SkScalar blue) {
22 SkLightingShader::Lights::Builder builder;
49 SkAutoTUnref<const SkLightingShader::Lights> lights(create_lights(fLightAngle, 1.0f));
52 lights, SkVector::Make(1.0f, 0.0f),
75 SkAutoTUnref<const SkLightingShader::Lights> lights(create_lights(fLightAngle,
79 lights, SkVector::Make(1.0f, 0.0f),
  /hardware/bsp/intel/peripheral/light/mraa/
hal.mk 18 LOCAL_SRC_FILES := lights.c
21 LOCAL_MODULE := lights.$(TARGET_DEVICE)
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
Basic3DSceneTest.java 41 public Environment lights; field in class:Basic3DSceneTest
52 lights = new Environment();
53 lights.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
54 lights.add(new DirectionalLight().set(0.8f, 0.8f, 0.8f, -1f, -0.8f, -0.2f));
111 modelBatch.render(instance, lights);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/voxel/
VoxelTest.java 40 Environment lights; field in class:VoxelTest
56 lights = new Environment();
57 lights.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
58 lights.add(new DirectionalLight().set(1, 1, 1, 0, -1, 0));
77 modelBatch.render(voxelWorld, lights);
  /device/google/marlin/liblight/
Android.mk 20 LOCAL_SRC_FILES := lights.c
25 LOCAL_MODULE := lights.$(TARGET_DEVICE)
  /device/htc/flounder/lights/
Android.mk 22 LOCAL_SRC_FILES := lights.c
30 LOCAL_MODULE := lights.flounder
  /hardware/qcom/display/msm8084/liblight/
Android.mk 20 LOCAL_SRC_FILES := lights.c
24 LOCAL_MODULE := lights.$(TARGET_BOARD_PLATFORM)
  /hardware/qcom/display/msm8226/liblight/
Android.mk 20 LOCAL_SRC_FILES := lights.c
24 LOCAL_MODULE := lights.$(TARGET_BOARD_PLATFORM)
  /hardware/qcom/display/msm8909/liblight/
Android.mk 20 LOCAL_SRC_FILES := lights.c
25 LOCAL_MODULE := lights.$(TARGET_BOARD_PLATFORM)
  /hardware/qcom/display/msm8960/liblight/
Android.mk 20 LOCAL_SRC_FILES := lights.c
24 LOCAL_MODULE := lights.$(TARGET_BOARD_PLATFORM)
  /hardware/qcom/display/msm8994/liblight/
Android.mk 20 LOCAL_SRC_FILES := lights.c
24 LOCAL_MODULE := lights.$(TARGET_BOARD_PLATFORM)

Completed in 1293 milliseconds

1 2 3