Home
last modified time | relevance | path

Searched refs:VarType (Results 1 – 18 of 18) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
DRenderManager.java47 import com.jme3.shader.VarType;
349 u.setValue(VarType.Matrix4, worldMatrix); in updateUniformBindings()
352 u.setValue(VarType.Matrix4, viewMatrix); in updateUniformBindings()
355 u.setValue(VarType.Matrix4, projMatrix); in updateUniformBindings()
358 u.setValue(VarType.Matrix4, viewProjMatrix); in updateUniformBindings()
363 u.setValue(VarType.Matrix4, tempMat4); in updateUniformBindings()
371 u.setValue(VarType.Matrix3, tempMat3); in updateUniformBindings()
376 u.setValue(VarType.Matrix4, tempMat4); in updateUniformBindings()
381 u.setValue(VarType.Matrix4, tempMat4); in updateUniformBindings()
386 u.setValue(VarType.Matrix3, tempMat3); in updateUniformBindings()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/material/
DMaterial.java49 import com.jme3.shader.VarType;
371 private String checkSetParam(VarType type, String name) { in checkSetParam()
402 public void setParam(String name, VarType type, Object value) { in setParam()
481 public void setTextureParam(String name, VarType type, Texture value) { in setTextureParam()
516 VarType paramType = null; in setTexture()
519 paramType = VarType.Texture2D; in setTexture()
522 paramType = VarType.TextureArray; in setTexture()
525 paramType = VarType.Texture3D; in setTexture()
528 paramType = VarType.TextureCubeMap; in setTexture()
544 setParam(name, VarType.Matrix4, value); in setMatrix4()
[all …]
DMatParam.java39 import com.jme3.shader.VarType;
52 protected VarType type;
61 public MatParam(VarType type, String name, Object value, FixedFuncBinding ffBinding) { in MatParam()
89 public VarType getVarType() { in getVarType()
311 type = ic.readEnum("varType", VarType.class, null); in read()
DTechnique.java114 void notifySetParam(String paramName, VarType type, Object value) { in notifySetParam()
140 void updateUniformParam(String paramName, VarType type, Object value, boolean ifNotOwner) { in updateUniformParam()
152 u.setValue(VarType.Int, value); in updateUniformParam()
161 void updateUniformParam(String paramName, VarType type, Object value) { in updateUniformParam()
DMatParamTexture.java8 import com.jme3.shader.VarType;
17 public MatParamTexture(VarType type, String name, Texture texture, int unit) { in MatParamTexture()
DMaterialDef.java36 import com.jme3.shader.VarType;
124 …public void addMaterialParam(VarType type, String name, Object value, FixedFuncBinding ffBinding) { in addMaterialParam()
DTechniqueDef.java40 import com.jme3.shader.VarType;
299 public void addShaderPresetDefine(String defineName, VarType type, Object value){ in addShaderPresetDefine()
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
DVarType.java35 public enum VarType { enum
65 VarType(){ in VarType() method in VarType
68 VarType(boolean multiData, boolean textureType){ in VarType() method in VarType
DUniform.java59 protected VarType varType;
120 varType = ic.readEnum("varType", VarType.class, null); in read()
188 public VarType getVarType() { in getVarType()
261 public void setValue(VarType type, Object value){ in setValue()
398 varType = VarType.Vector4Array; in setVector4Length()
407 if (varType != null && varType != VarType.Vector4Array) in setVector4InArray()
DDefineList.java95 public boolean set(String key, VarType type, Object val){ in set()
/external/clang/test/SemaCXX/
Dreturn.cpp67 template <class VarType>
68 void Test(const VarType& value) { in Test()
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
DJ3MLoader.java44 import com.jme3.shader.VarType;
124 private Object readValue(VarType type, String value) throws IOException{ in readValue()
143 texKey.setAsCube(type == VarType.TextureCubeMap); in readValue()
246 VarType type; in readParam()
248 type = VarType.Vector4; in readParam()
250 type = VarType.valueOf(split[0]); in readParam()
357 technique.addShaderPresetDefine(split[0].trim(), VarType.Boolean, true); in readDefine()
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
DRadialBlurFilter.java43 import com.jme3.shader.VarType;
79 material.setParam("Samples", VarType.FloatArray, samples); in getMaterial()
/external/llvm/unittests/VMCore/
DValueMapTest.cpp119 template<typename ExpectedType, typename VarType>
120 void CompileAssertHasType(VarType) { in CompileAssertHasType() argument
121 typedef char assert[is_same<ExpectedType, VarType>::value ? 1 : -1]; in CompileAssertHasType()
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
DSSAOFilter.java47 import com.jme3.shader.VarType;
175 ssaoMat.setParam("Samples", VarType.Vector2Array, samples); in initFilter()
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
DMaterialHelper.java48 import com.jme3.shader.VarType;
374 result.setTextureParam("Texture", VarType.Texture2D, texture); in getParticlesMaterial()
381 result.setParam("GlowColor", VarType.Vector3, color); in getParticlesMaterial()
/external/clang/lib/CodeGen/
DCGBlocks.cpp1548 QualType VarType; member in __anon00df2f4e0211::CXXByrefHelpers
1554 : ByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {} in CXXByrefHelpers()
1565 CGF.PushDestructorCleanup(VarType, field); in emitDispose()
1570 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr()); in profileImpl()
/external/jmonkeyengine/
DNOTICE13731 ==> engine/src/core/com/jme3/shader/VarType.java <==