HomeSort by relevance Sort by last modified time
    Searched defs:materials (Results 1 - 7 of 7) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
IAlphaMask.java 1 package com.jme3.scene.plugins.blender.materials;
MaterialHelper.java 14 * documentation and/or other materials provided with the distribution.
32 package com.jme3.scene.plugins.blender.materials;
437 * This method returns the table of materials connected to the specified structure. The given structure can be of any type (ie. mesh or
450 Material[] materials = null; local
455 materials = new Material[materialStructures.size()];
462 materials[i++] = material;
466 return materials;
586 return (blenderContext.getBlenderKey().getFeaturesToLoad() & FeaturesToLoad.MATERIALS) != 0;
MaterialContext.java 1 package com.jme3.scene.plugins.blender.materials;
9 import com.jme3.scene.plugins.blender.materials.MaterialHelper.DiffuseShader;
10 import com.jme3.scene.plugins.blender.materials.MaterialHelper.SpecularShader;
  /external/jmonkeyengine/engine/src/blender/com/jme3/asset/
BlenderKey.java 14 * documentation and/or other materials provided with the distribution.
477 int MATERIALS = 0x00000003;
496 /** Materials from all objects. */
497 private List<Material> materials; field in class:BlenderKey.LoadingResults
520 if ((featuresToLoad & FeaturesToLoad.MATERIALS) != 0) {
521 materials = new ArrayList<Material>();
575 if (materials != null) {
576 materials.add(material);
631 * This method returns all loaded materials.
632 * @return all loaded materials
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
CurvesHelper.java 14 import com.jme3.scene.plugins.blender.materials.MaterialHelper;
89 //getting materials
91 Material[] materials = materialHelper.getMaterials(curveStructure, blenderContext); local
92 if (materials == null) {
93 materials = new Material[]{blenderContext.getDefaultMaterial().clone()};
95 for (Material material : materials) {
180 if (nurbGeoms != null) {//setting the name and assigning materials
182 nurbGeom.setMaterial(materials[nurbEntry.getKey().intValue()]);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
MeshHelper.java 14 * documentation and/or other materials provided with the distribution.
61 import com.jme3.scene.plugins.blender.materials.MaterialContext;
62 import com.jme3.scene.plugins.blender.materials.MaterialHelper;
267 // reading materials
269 Material[] materials = null; local
271 if ((blenderContext.getBlenderKey().getFeaturesToLoad() & FeaturesToLoad.MATERIALS) != 0) {
272 materials = materialHelper.getMaterials(structure, blenderContext);
273 nonTexturedMaterials = materials == null ? null : new Material[materials.length];// fill it when needed
342 if (materials != null) {
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 320 GLuint materials; member in struct:tnl_program
867 p->materials = 0;
870 p->materials =
874 p->materials |= (p->state->varying_vp_inputs >> VERT_ATTRIB_GENERIC0);
885 else if (p->materials & (1<<attrib)) {
913 if (p->materials & SCENE_COLOR_BITS(side)) {
932 if (p->materials & (1<<attrib)) {
    [all...]

Completed in 520 milliseconds