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

  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerVertex.java 88 public GLBuffer attribBuffer, indexBuffer; // current binding
119 if (attribBuffer != null)
120 copy.attribBuffer = copy.buffers.get(attribBuffer.name);
200 attribBuffer = buffers.get(msg.getArg1());
201 if (null != attribBuffer)
202 attribBuffer.target = GLEnum.GL_ARRAY_BUFFER;
215 attribBuffer.usage = GLEnum.valueOf(msg.getArg3());
216 attribBuffer.data = msg.getData().asReadOnlyByteBuffer();
217 attribBuffer.data.order(GLFramesView.TARGET_BYTE_ORDER)
    [all...]
CodeGen.java 306 if (v.attribBuffer != null)
307 code.format("glBindBuffer(GL_ARRAY_BUFFER, buffer_%d);CHKERR;\n", v.attribBuffer.name);
471 if (v.attribBuffer != null)
473 v.attribBuffer.name);
574 if (v.attribBuffer != null)
576 v.attribBuffer.name);
635 if (v.attribBuffer != null)
637 v.attribBuffer.name);
    [all...]

Completed in 253 milliseconds