Searched defs:material (Results 26 - 30 of 30) sorted by relevance

12

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
H A DBlenderContext.java47 import com.jme3.material.Material;
120 /** A map of material contexts. */
593 * This method sets the material context for the given material. If the
596 * @param material
597 * the material
599 * the material's context
601 public void setMaterialContext(Material material, MaterialContext materialContext) { argument
602 this.materialContexts.put(material, materialContext);
606 * This method returns the material contex
613 getMaterialContext(Material material) argument
[all...]
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DSimpleWaterProcessor.java35 import com.jme3.material.Material;
77 * //creating a geom to attach the water material
81 * //finally setting the material
112 protected Material material; field in class:SimpleWaterProcessor
133 material = new Material(manager, "Common/MatDefs/Water/SimpleWater.j3md");
134 material.setFloat("waterDepth", waterDepth);
135 material.setFloat("waterTransparency", waterTransparency / 10);
136 material.setColor("waterColor", ColorRGBA.White);
137 material.setVector3("lightPos", new Vector3f(1, -1, 1));
139 material
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DRenderState.java32 package com.jme3.material;
40 * <code>RenderState</code> specifies material rendering properties that cannot
128 * @see RenderState#setBlendMode(com.jme3.material.RenderState.BlendMode)
187 * @see RenderState#setFaceCullMode(com.jme3.material.RenderState.FaceCullMode)
212 * com.jme3.material.RenderState.StencilOperation,
213 * com.jme3.material.RenderState.StencilOperation,
214 * com.jme3.material.RenderState.StencilOperation,
215 * com.jme3.material.RenderState.StencilOperation,
216 * com.jme3.material.RenderState.StencilOperation,
217 * com.jme3.material
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSpatial.java41 import com.jme3.material.Material;
898 * Applies the given material to the Spatial, this will propagate the
899 * material down to the geometries in the scene graph.
901 * @param material The material to set.
903 public void setMaterial(Material material) { argument
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_reg.h448 SVGA3D_VERTEXMATERIAL_NONE = 0, /* Use the value in the current material */
1603 SVGA3dMaterial material; member in struct:__anon12274

Completed in 233 milliseconds

12