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

  /frameworks/rs/
spec.h 20 } VarType;
22 extern VarType *currType;
31 VarType ret;
32 VarType params[16];
rsg_generator.c 24 void printVarType(FILE *f, const VarType *vt) {
59 void printVarTypeAndName(FILE *f, const VarType *vt) {
165 const VarType *vt = &api->params[ct];
219 const VarType *vt = &api->params[ct2];
238 const VarType *vt = &api->params[ct2];
255 const VarType *vt = &api->params[ct2];
276 const VarType *vt = &api->params[ct2];
329 const VarType *vt = &api->params[ct2];
337 const VarType *vt = &api->params[ct2];
345 const VarType *vt = &api->params[ct2]
    [all...]
spec.l 16 VarType *currType = 0;
24 VarType *baseType = currType;
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
VarType.java 35 public enum VarType {
65 VarType(){
68 VarType(boolean multiData, boolean textureType){
Uniform.java 59 protected VarType varType;
73 oc.write(varType, "varType", null);
75 switch (varType){
120 varType = ic.readEnum("varType", VarType.class, null);
122 switch (varType){
167 if (varType != null)
    [all...]
DefineList.java 95 public boolean set(String key, VarType type, Object val){
  /external/clang/test/SemaCXX/
return.cpp 67 template <class VarType>
68 void Test(const VarType& value) {
  /sdk/emulator/opengl/host/tools/emugen/
TypeFactory.h 20 #include "VarType.h"
30 const VarType * getVarTypeByName(const std::string &type);
VarType.h 50 class VarType {
52 VarType() :
57 VarType(size_t id, const std::string & name, const VarConverter * converter, const std::string & printFormat , const bool isPointer) :
62 ~VarType()
TypeFactory.cpp 17 #include "VarType.h"
32 typedef std::map<std::string, VarType> TypeMap;
52 g_varMap.insert(std::pair<std::string, VarType>(name, VarType(g_typeId++, name, &g_var##size , printformat , ispointer)));
136 g_varMap.insert(std::pair<std::string, VarType>(name, VarType(g_typeId++, name, v ,printString,isPointer)));
138 g_varMap.insert(std::pair<std::string, VarType>(constName, VarType(g_typeId++, constName, v ,printString,isPointer))); //add a const type
145 const VarType * TypeFactory::getVarTypeByName(const std::string & type)
Var.h 19 #include "VarType.h"
42 const VarType * vartype,
48 m_type(const_cast<VarType *>(vartype)),
59 void init(const std::string name, const VarType * vartype,
65 m_type = vartype;
76 const VarType * type() const { return m_type; }
98 const VarType * m_type
    [all...]
EntryPoint.cpp 41 bool parseTypeField(const std::string & f, std::string *vartype, std::string *varname)
47 *vartype = "";
61 *vartype = "const ";
64 *vartype += str;
73 (*vartype) += "*";
79 (*vartype) += "*";
117 const VarType *theType = TypeFactory::instance()->getVarTypeByName(retTypeName);
132 std::string vartype, varname; local
133 if (!parseTypeField(field, &vartype, &varname)) {
138 const VarType *v = TypeFactory::instance()->getVarTypeByName(vartype)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
Material.java 49 import com.jme3.shader.VarType;
365 * @see #setParam(java.lang.String, com.jme3.shader.VarType, java.lang.Object)
371 private String checkSetParam(VarType type, String name) {
399 * @param type the type of the parameter {@link VarType}
402 public void setParam(String name, VarType type, Object value) {
476 * @param type The variable type {@link VarType}
481 public void setTextureParam(String name, VarType type, Texture value) {
516 VarType paramType = null;
519 paramType = VarType.Texture2D;
522 paramType = VarType.TextureArray
    [all...]
Technique.java 114 void notifySetParam(String paramName, VarType type, Object value) {
140 void updateUniformParam(String paramName, VarType type, Object value, boolean ifNotOwner) {
152 u.setValue(VarType.Int, value);
161 void updateUniformParam(String paramName, VarType type, Object value) {
MatParamTexture.java 8 import com.jme3.shader.VarType;
17 public MatParamTexture(VarType type, String name, Texture texture, int unit) {
MaterialDef.java 36 import com.jme3.shader.VarType;
124 public void addMaterialParam(VarType type, String name, Object value, FixedFuncBinding ffBinding) {
MatParam.java 39 import com.jme3.shader.VarType;
52 protected VarType type;
61 public MatParam(VarType type, String name, Object value, FixedFuncBinding ffBinding) {
89 public VarType getVarType() {
291 oc.write(type, "varType", null);
311 type = ic.readEnum("varType", VarType.class, null);
TechniqueDef.java 40 import com.jme3.shader.VarType;
262 * {@link DefineList#set(java.lang.String, com.jme3.shader.VarType, java.lang.Object) }
280 * @see #addShaderPresetDefine(java.lang.String, com.jme3.shader.VarType, java.lang.Object)
294 * {@link DefineList#set(java.lang.String, com.jme3.shader.VarType, java.lang.Object) }
299 public void addShaderPresetDefine(String defineName, VarType type, Object value){
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
RenderManager.java 47 import com.jme3.shader.VarType;
349 u.setValue(VarType.Matrix4, worldMatrix);
352 u.setValue(VarType.Matrix4, viewMatrix);
355 u.setValue(VarType.Matrix4, projMatrix);
358 u.setValue(VarType.Matrix4, viewProjMatrix);
363 u.setValue(VarType.Matrix4, tempMat4);
371 u.setValue(VarType.Matrix3, tempMat3);
376 u.setValue(VarType.Matrix4, tempMat4);
381 u.setValue(VarType.Matrix4, tempMat4);
386 u.setValue(VarType.Matrix3, tempMat3);
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
RadialBlurFilter.java 43 import com.jme3.shader.VarType;
79 material.setParam("Samples", VarType.FloatArray, samples);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java 44 import com.jme3.shader.VarType;
124 private Object readValue(VarType type, String value) throws IOException{
143 texKey.setAsCube(type == VarType.TextureCubeMap);
246 VarType type;
248 type = VarType.Vector4;
250 type = VarType.valueOf(split[0]);
357 technique.addShaderPresetDefine(split[0].trim(), VarType.Boolean, true);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
SSAOFilter.java 47 import com.jme3.shader.VarType;
175 ssaoMat.setParam("Samples", VarType.Vector2Array, samples);
  /external/llvm/unittests/IR/
ValueMapTest.cpp 118 template<typename ExpectedType, typename VarType>
119 void CompileAssertHasType(VarType) {
120 typedef char assert[is_same<ExpectedType, VarType>::value ? 1 : -1];
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
MaterialHelper.java 48 import com.jme3.shader.VarType;
374 result.setTextureParam("Texture", VarType.Texture2D, texture);
381 result.setParam("GlowColor", VarType.Vector3, color);
  /external/clang/lib/CodeGen/
CGBlocks.cpp     [all...]

Completed in 251 milliseconds