Searched refs:Light (Results 1 - 25 of 44) sorted by relevance

12

/external/skia/legacy/src/effects/
H A DSkEmbossMask.h17 static void Emboss(SkMask* mask, const SkEmbossMaskFilter::Light&);
H A DSkEmbossMaskFilter.cpp38 SkEmbossMaskFilter::Light light;
58 SkEmbossMaskFilter::SkEmbossMaskFilter(const Light& light, SkScalar blurRadius)
99 Light light = fLight;
/external/skia/src/effects/
H A DSkEmbossMask.h17 static void Emboss(SkMask* mask, const SkEmbossMaskFilter::Light&);
H A DSkEmbossMaskFilter.cpp38 SkEmbossMaskFilter::Light light;
58 SkEmbossMaskFilter::SkEmbossMaskFilter(const Light& light, SkScalar blurRadius)
99 Light light = fLight;
120 SkASSERT(buffer.getArrayCount() == sizeof(Light));
129 Light tmpLight = fLight;
/external/skia/include/effects/
H A DSkEmbossMaskFilter.h19 struct Light { struct in class:SkEmbossMaskFilter
26 SkEmbossMaskFilter(const Light& light, SkScalar blurRadius);
42 Light fLight;
/external/skia/legacy/include/effects/
H A DSkEmbossMaskFilter.h21 struct Light { struct in class:SkEmbossMaskFilter
28 SkEmbossMaskFilter(const Light& light, SkScalar blurRadius);
50 Light fLight;
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DAmbientLight.java15 public class AmbientLight extends Light {
H A DLightList.java47 public final class LightList implements Iterable<Light>, Savable, Cloneable {
49 private Light[] list, tlist;
56 private static final Comparator<Light> c = new Comparator<Light>() {
60 public int compare(Light l1, Light l2) {
83 list = new Light[DEFAULT_SIZE];
98 Light[] temp = new Light[list.length * 2];
112 public void add(Light
[all...]
H A DLight.java45 public abstract class Light implements Savable, Cloneable { class in inherits:Savable,Cloneable
165 * @see Light#setEnabled(boolean)
174 public Light clone(){
176 return (Light) super.clone();
H A DPointLight.java53 public class PointLight extends Light {
114 throw new IllegalArgumentException("Light radius cannot be negative");
133 public Light.Type getType() {
134 return Light.Type.Point;
H A DDirectionalLight.java50 public class DirectionalLight extends Light {
H A DSpotLight.java55 public class SpotLight extends Light implements Savable {
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DLightNode.java34 import com.jme3.light.Light;
39 * <code>LightNode</code> is used to link together a {@link Light} object
54 public LightNode(String name, Light light) {
82 public void setLight(Light light) {
90 public Light getLight() {
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/
H A DShadowCamera.java35 import com.jme3.light.Light;
48 private Light target;
50 public ShadowCamera(Light target) {
61 if (target.getType() == Light.Type.Directional) {
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DLightControl.java37 import com.jme3.light.Light;
57 * Means, that the Light's transform is "copied"
67 private Light light;
79 public LightControl(Light light) {
86 public LightControl(Light light, ControlDirection controlDir) {
91 public Light getLight() {
95 public void setLight(Light light) {
122 private void spatialTolight(Light light) {
140 private void lightToSpatial(Light light) {
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
H A DBlenderModelLoader.java36 import com.jme3.light.Light;
69 }else if (object instanceof Light){
70 modelRoot.addLight( (Light) object );
H A DAbstractBlenderLoader.java38 import com.jme3.light.Light;
86 } else if(object instanceof Light) {
87 result.addLight((Light)object);
117 public Light toLight(Structure structure) throws BlenderFileException {
H A DBlenderLoader.java40 import com.jme3.light.Light;
100 } else if (object instanceof Light) {
102 loadingResults.addLight((Light) object);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/lights/
H A DLightHelper.java36 import com.jme3.light.Light;
69 public Light toLight(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
70 Light result = (Light) blenderContext.getLoadedFeature(structure.getOldMemoryAddress(), LoadedFeatureDataType.LOADED_FEATURE);
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
H A DBlenderKey.java43 import com.jme3.light.Light;
505 private List<Light> lights;
534 lights = new ArrayList<Light>();
608 public void addLight(Light light) {
666 public List<Light> getLights() {
/external/skia/src/sfnt/
H A DSkOTTable_OS_2_V0.h30 ((Light, SkTEndian_SwapBE16(300)))
H A DSkOTTable_OS_2_VA.h31 ((Light, SkTEndian_SwapBE16(3)))
H A DSkPanose.h59 ((Light, 3))
239 ((Light, 3))
387 ((Light, 3))
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFontPlatformDataQt.cpp35 return QFont::Light; // QFont::Light == Weight of 25
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTriangleCollector.java35 import com.jme3.light.Light;
237 for (Light light : inGeom.getWorldLightList()){

Completed in 664 milliseconds

12