HomeSort by relevance Sort by last modified time
    Searched full:attribs (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SceneLoader.java 109 private Quaternion parseQuat(Attributes attribs) throws SAXException{
110 if (attribs.getValue("x") != null){
112 float x = parseFloat(attribs.getValue("x"));
113 float y = parseFloat(attribs.getValue("y"));
114 float z = parseFloat(attribs.getValue("z"));
115 float w = parseFloat(attribs.getValue("w"));
117 }else if (attribs.getValue("qx") != null){
119 float x = parseFloat(attribs.getValue("qx"));
120 float y = parseFloat(attribs.getValue("qy"));
121 float z = parseFloat(attribs.getValue("qz"))
    [all...]
MeshLoader.java 392 private void startVertexBuffer(Attributes attribs) throws SAXException {
393 if (parseBool(attribs.getValue("positions"), false)) {
399 if (parseBool(attribs.getValue("normals"), false)) {
405 if (parseBool(attribs.getValue("colours_diffuse"), false)) {
411 if (parseBool(attribs.getValue("tangents"), false)) {
412 int dimensions = parseInt(attribs.getValue("tangent_dimensions"), 3);
418 if (parseBool(attribs.getValue("binormals"), false)) {
425 int texCoords = parseInt(attribs.getValue("texture_coords"), 0);
427 int dims = parseInt(attribs.getValue("texture_coord_dimensions_" + i), 2);
448 private void pushAttrib(Type type, Attributes attribs) throws SAXException
    [all...]
SkeletonLoader.java 84 public void startElement(String uri, String localName, String qName, Attributes attribs) throws SAXException {
86 position = SAXUtil.parseVector3(attribs);
88 angle = SAXUtil.parseFloat(attribs.getValue("angle"));
92 axis = SAXUtil.parseVector3(attribs);
94 scale = SAXUtil.parseVector3(attribs);
97 time = SAXUtil.parseFloat(attribs.getValue("time"));
102 String boneName = SAXUtil.parseString(attribs.getValue("bone"));
108 String boneName = attribs.getValue("bone");
109 String parentName = attribs.getValue("parent");
117 bone = new Bone(attribs.getValue("name"))
    [all...]
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl.attrib 28 dir attribs in
29 len attribs attribs_size
renderControl_entry.cpp 15 EGLint rcChooseConfig(EGLint* attribs, uint32_t attribs_size, uint32_t* configs, uint32_t configs_size);
79 EGLint rcChooseConfig(EGLint* attribs, uint32_t attribs_size, uint32_t* configs, uint32_t configs_size)
82 return ctx->rcChooseConfig(ctx, attribs, attribs_size, configs, configs_size);
renderControl.in 7 GL_ENTRY(EGLint, rcChooseConfig, EGLint *attribs, uint32_t attribs_size, uint32_t *configs, uint32_t configs_size)
  /sdk/emulator/opengl/host/libs/renderControl_dec/
renderControl.attrib 28 dir attribs in
29 len attribs attribs_size
  /external/webkit/Source/WebCore/platform/graphics/mac/
GraphicsContext3DMac.mm 56 static void setPixelFormat(Vector<CGLPixelFormatAttribute>& attribs, int colorBits, int depthBits, bool accelerated, bool supersample, bool closest)
58 attribs.clear();
60 attribs.append(kCGLPFAColorSize);
61 attribs.append(static_cast<CGLPixelFormatAttribute>(colorBits));
62 attribs.append(kCGLPFADepthSize);
63 attribs.append(static_cast<CGLPixelFormatAttribute>(depthBits));
66 attribs.append(kCGLPFAAccelerated);
68 attribs.append(kCGLPFARendererID);
69 attribs.append(static_cast<CGLPixelFormatAttribute>(kCGLRendererGenericFloatID));
73 attribs.append(kCGLPFASupersample)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11gl.c 106 int attribs[64]; local
133 attribs[i++] = GLX_RGBA;
134 attribs[i++] = GLX_RED_SIZE;
135 attribs[i++] = this->gl_config.red_size;
136 attribs[i++] = GLX_GREEN_SIZE;
137 attribs[i++] = this->gl_config.green_size;
138 attribs[i++] = GLX_BLUE_SIZE;
139 attribs[i++] = this->gl_config.blue_size;
142 attribs[i++] = GLX_ALPHA_SIZE;
143 attribs[i++] = this->gl_config.alpha_size
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/xml/
SAXUtil.java 126 public static Vector3f parseVector3(Attributes attribs) throws SAXException{
127 float x = parseFloat(attribs.getValue("x"));
128 float y = parseFloat(attribs.getValue("y"));
129 float z = parseFloat(attribs.getValue("z"));
133 public static ColorRGBA parseColor(Attributes attribs) throws SAXException{
134 float r = parseFloat(attribs.getValue("r"));
135 float g = parseFloat(attribs.getValue("g"));
136 float b = parseFloat(attribs.getValue("b"));
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
VariableInfo.h 11 // It is currently being used to store info about active attribs and uniforms.
22 CollectAttribsUniforms(TVariableInfoList& attribs,
ShHandle.h 58 const TVariableInfoList& getAttribs() const { return attribs; }
71 // Collect info for all attribs and uniforms.
88 TVariableInfoList attribs; // Active attributes in the compiled shader. member in class:TCompiler
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 69 AttributeList attribs = method.getAttributes(); local
71 attribs.findFirst(AttExceptions.ATTRIBUTE_NAME);
86 * @param attribs {@code non-null;} the attributes list to search in
89 public static Annotations getAnnotations(AttributeList attribs) {
90 Annotations result = getAnnotations0(attribs);
91 Annotation signature = getSignature(attribs);
116 AttributeList attribs = cf.getAttributes(); local
117 Annotations result = getAnnotations(attribs);
118 Annotation enclosingMethod = translateEnclosingMethod(attribs);
122 translateInnerClasses(thisClass, attribs,
359 AttributeList attribs = method.getAttributes(); local
406 AttributeList attribs = one.getAttributes(); local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 107 const VertexAttributeArray &attribs = mContext->getVertexAttributes(); local
118 Buffer *buffer = attribs[i].mBoundBuffer.get();
120 if (translated[i].active && attribs[i].mArrayEnabled && (buffer || attribs[i].mPointer))
126 int totalCount = buffer->size() / attribs[i].stride();
127 staticBuffer->addRequiredSpace(spaceRequired(attribs[i], totalCount));
129 else if (!staticBuffer || staticBuffer->lookupAttribute(attribs[i]) == -1)
133 mStreamingBuffer->addRequiredSpace(spaceRequired(attribs[i], count));
142 Buffer *buffer = attribs[i].mBoundBuffer.get();
144 if (translated[i].active && attribs[i].mArrayEnabled && buffer
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Shader.java 71 private IntMap<Attribute> attribs; field in class:Shader
222 attribs = new IntMap<Attribute>();
236 //attribs = new IntMap<Attribute>();
249 oc.writeIntSavableMap(attribs, "attribs", null);
257 attribs = (IntMap<Attribute>) ic.readIntSavableMap("attribs", null);
265 * but have not been compiled yet. Does not copy the uniforms or attribs.
337 Attribute attrib = attribs.get(ordinal);
341 attribs.put(ordinal, attrib);
    [all...]
  /external/openssh/
ssh-pkcs11.c 404 CK_ATTRIBUTE attribs[] = { local
422 /* XXX 3 attributes in attribs[] */
424 attribs[i].pValue = NULL;
425 attribs[i].ulValueLen = 0;
431 if ((rv = f->C_GetAttributeValue(session, obj, attribs, 3))
437 if (attribs[0].ulValueLen == 0 ||
438 attribs[1].ulValueLen == 0 ||
439 attribs[2].ulValueLen == 0) {
444 attribs[i].pValue = xmalloc(attribs[i].ulValueLen)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 44 AttributeList attribs = getAttributes(); local
46 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME);
  /frameworks/av/media/libstagefright/rtsp/
ASessionDescription.h 70 typedef KeyedVector<AString,AString> Attribs;
73 Vector<Attribs> mTracks;
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl.cpp 301 EGLint *attribs = NULL; local
306 attribs = new EGLint[nAttribs];
307 memcpy(attribs, attrib_list, nAttribs * sizeof(EGLint));
312 if (attribs[i] == EGL_RENDERABLE_TYPE) {
313 if (attribs[i + 1] & EGL_OPENGL_ES2_BIT) {
314 attribs[i + 1] &= ~EGL_OPENGL_ES2_BIT;
315 attribs[i + 1] |= EGL_OPENGL_ES_BIT;
316 ALOGD("removing ES2 bit 0x%x\n", attribs[i + 1]);
321 return attribs;
328 EGLint *attribs = filter_es2_bit(attrib_list, NULL) local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.java 72 AttributeList attribs = getAttributes(); local
74 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME);
  /frameworks/rs/driver/
rsdPath.cpp 152 RsdVertexArray::Attrib attribs[2]; local
153 attribs[0].set(GL_FLOAT, 2, 8, false, (uint32_t)vtx, "ATTRIB_position");
154 attribs[1].set(GL_FLOAT, 4, 16, false, (uint32_t)color, "ATTRIB_color");
155 RsdVertexArray va(attribs, 2);
rsdVertexArray.h 49 RsdVertexArray(const Attrib *attribs, uint32_t numAttribs);
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
mcContainer.h 162 mcContainerAttribs_t attribs; member in struct:__anon21516
172 mcContainerAttribs_t attribs; member in struct:__anon21517
184 mcContainerAttribs_t attribs; member in struct:__anon21518
195 mcContainerAttribs_t attribs; member in struct:__anon21519
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp 148 int FBConfig::chooseConfig(FrameBuffer *fb, EGLint * attribs, uint32_t * configs, uint32_t configs_size)
175 EGLint * attrib_p = attribs;
176 if (attribs) {
192 memcpy(attrib_p, attribs, attribCnt*sizeof(EGLint));
FBConfig.h 37 static int chooseConfig(FrameBuffer *fb, EGLint * attribs, uint32_t * configs, uint32_t configs_size);

Completed in 3627 milliseconds

1 2 3 4 5