/external/deqp/modules/gles2/stress/ |
es2sLongRunningTests.cpp | 192 GL_STATIC_DRAW, GL_STATIC_DRAW)); 242 GL_STATIC_DRAW, GL_STATIC_DRAW)); 279 GL_STATIC_DRAW, GL_STATIC_DRAW)); 321 GL_STATIC_DRAW, GL_STATIC_DRAW)); 349 GL_STATIC_DRAW, GL_STATIC_DRAW)); [all...] |
/external/deqp/modules/gles3/stress/ |
es3sLongRunningTests.cpp | 192 GL_STATIC_DRAW, GL_STATIC_DRAW)); 242 GL_STATIC_DRAW, GL_STATIC_DRAW)); 279 GL_STATIC_DRAW, GL_STATIC_DRAW)); 321 GL_STATIC_DRAW, GL_STATIC_DRAW)); 349 GL_STATIC_DRAW, GL_STATIC_DRAW)); [all...] |
/frameworks/base/media/mca/filterfw/native/core/ |
vertex_frame.cpp | 56 glBufferData(GL_ARRAY_BUFFER, size, data, GL_STATIC_DRAW);
|
/external/deqp/modules/gles2/functional/ |
es2fBufferWriteTests.cpp | 446 GL_STATIC_DRAW, 555 GL_STATIC_DRAW, 602 const deUint32 usage = GL_STATIC_DRAW; 626 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 996) 627 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 996) 628 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 996)); 631 << DataStoreSpec(GL_ELEMENT_ARRAY_BUFFER, GL_STATIC_DRAW, 72) 632 << DataStoreSpec(GL_ELEMENT_ARRAY_BUFFER, GL_STATIC_DRAW, 72) 633 << DataStoreSpec(GL_ELEMENT_ARRAY_BUFFER, GL_STATIC_DRAW, 72)); 636 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 504 [all...] |
es2fBufferObjectQueryTests.cpp | 222 GL_STATIC_DRAW, GL_DYNAMIC_DRAW, GL_STREAM_DRAW 225 m_verifier->verifyInteger(m_testCtx, m_bufferTarget, GL_BUFFER_USAGE, GL_STATIC_DRAW);
|
/external/deqp/modules/gles3/functional/ |
es3fBufferWriteTests.cpp | 454 GL_STATIC_DRAW, 576 GL_STATIC_DRAW, 618 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 996) 619 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 996) 620 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 996)); 623 << DataStoreSpec(GL_COPY_WRITE_BUFFER, GL_STATIC_DRAW, 72) 624 << DataStoreSpec(GL_COPY_WRITE_BUFFER, GL_STATIC_DRAW, 72) 625 << DataStoreSpec(GL_COPY_WRITE_BUFFER, GL_STATIC_DRAW, 72)); 628 << DataStoreSpec(GL_ARRAY_BUFFER, GL_STATIC_DRAW, 504) 629 << DataStoreSpec(GL_COPY_READ_BUFFER, GL_STATIC_DRAW, 504 [all...] |
es3fBufferCopyTests.cpp | 268 const deUint32 hint = GL_STATIC_DRAW; 306 deUint32 hint = GL_STATIC_DRAW; 331 const deUint32 hint = GL_STATIC_DRAW;
|
es3fBufferMapTests.cpp | 569 GL_STATIC_DRAW, 658 deUint32 hint = GL_STATIC_DRAW; 696 deUint32 hint = GL_STATIC_DRAW; 711 deUint32 hint = GL_STATIC_DRAW; 726 deUint32 hint = GL_STATIC_DRAW; 741 deUint32 hint = GL_STATIC_DRAW; 763 deUint32 hint = GL_STATIC_DRAW;
|
/external/deqp/framework/opengl/simplereference/ |
sglrContextUtil.cpp | 78 ctx.bufferData(GL_ARRAY_BUFFER, DE_LENGTH_OF_ARRAY(position)*sizeof(float), &position[0], GL_STATIC_DRAW); 89 ctx.bufferData(GL_ARRAY_BUFFER, DE_LENGTH_OF_ARRAY(coord)*sizeof(float), &coord[0], GL_STATIC_DRAW); 102 ctx.bufferData(GL_ELEMENT_ARRAY_BUFFER, DE_LENGTH_OF_ARRAY(indices)*sizeof(deUint16), &indices[0], GL_STATIC_DRAW);
|
/development/ndk/platforms/android-18/samples/gles3jni/jni/ |
RendererES3.cpp | 96 glBufferData(GL_ARRAY_BUFFER, sizeof(QUAD), &QUAD[0], GL_STATIC_DRAW); 100 glBufferData(GL_ARRAY_BUFFER, MAX_INSTANCES * 2*sizeof(float), NULL, GL_STATIC_DRAW);
|
RendererES2.cpp | 95 glBufferData(GL_ARRAY_BUFFER, sizeof(QUAD), &QUAD[0], GL_STATIC_DRAW);
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/ |
IndexBufferObject.java | 63 usage = isStatic ? GL20.GL_STATIC_DRAW : GL20.GL_DYNAMIC_DRAW;
74 usage = GL20.GL_STATIC_DRAW;
|
/frameworks/base/libs/hwui/renderstate/ |
MeshState.cpp | 36 glBufferData(GL_ARRAY_BUFFER, sizeof(kUnitQuadVertices), kUnitQuadVertices, GL_STATIC_DRAW); 52 glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(regionIndices), regionIndices, GL_STATIC_DRAW);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
IndexBufferObjectSubData.java | 64 usage = isStatic ? GL20.GL_STATIC_DRAW : GL20.GL_DYNAMIC_DRAW;
78 usage = GL20.GL_STATIC_DRAW;
|
IndexBufferObject.java | 84 usage = isStatic ? GL20.GL_STATIC_DRAW : GL20.GL_DYNAMIC_DRAW;
|
/cts/hostsidetests/sustainedperf/shadertoy_android/jni/ |
shadertoy_renderer.cpp | 60 glBufferData(GL_ARRAY_BUFFER, sizeof(quadVertices), &quadVertices, GL_STATIC_DRAW);
|
/frameworks/native/opengl/libagl/ |
BufferObjectManager.cpp | 62 bo->usage = GL_STATIC_DRAW;
|
/external/replicaisland/src/com/replica/replicaisland/ |
Grid.java | 351 mVertexBuffer, GL11.GL_STATIC_DRAW); 362 mTexCoordBuffer, GL11.GL_STATIC_DRAW); 377 GL11.GL_STATIC_DRAW);
|
/development/ndk/platforms/android-17/samples/Teapot/jni/ |
TeapotRenderer.cpp | 61 GL_STATIC_DRAW ); 82 glBufferData( GL_ARRAY_BUFFER, iStride * num_vertices_, p, GL_STATIC_DRAW );
|
/external/deqp/modules/gles2/performance/ |
es2pDrawCallBatchingTests.cpp | 361 gl.bufferData(GL_ARRAY_BUFFER, 4 * 3 * m_spec.triangleCount * m_spec.drawCallCount, &(m_staticAttributeDatas[attribute][0]), GL_STATIC_DRAW); 375 gl.bufferData(GL_ARRAY_BUFFER, 4 * 3 * m_spec.triangleCount, &(m_staticAttributeDatas[attribute][0]), GL_STATIC_DRAW); 392 gl.bufferData(GL_ARRAY_BUFFER, 4 * 3 * m_spec.triangleCount * m_spec.drawCallCount, &(m_dynamicAttributeDatas[attribute][0]), GL_STATIC_DRAW); 410 gl.bufferData(GL_ARRAY_BUFFER, 4 * 3 * m_spec.triangleCount * m_spec.drawCallCount, &(m_dynamicAttributeDatas[attribute][0]), GL_STATIC_DRAW); 434 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, 3 * m_spec.triangleCount, &(m_dynamicIndexData[drawNdx * m_spec.triangleCount * 3]), GL_STATIC_DRAW); 446 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, 3 * m_spec.triangleCount * m_spec.drawCallCount, &(m_dynamicIndexData[0]), GL_STATIC_DRAW); 460 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, 3 * m_spec.triangleCount * m_spec.drawCallCount, &(m_staticIndexData[0]), GL_STATIC_DRAW); 472 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, 3 * m_spec.triangleCount, &(m_staticIndexData[0]), GL_STATIC_DRAW); [all...] |
/frameworks/native/opengl/tests/testViewport/src/com/android/test/ |
TestView.java | 197 gl11.glBufferData(GL11.GL_ARRAY_BUFFER, mVertexByteBuffer.capacity(), mVertexByteBuffer, GL11.GL_STATIC_DRAW); 201 gl11.glBufferData(GL11.GL_ELEMENT_ARRAY_BUFFER, mIndexBuffer.capacity() * CHAR_SIZE, mIndexBuffer, GL11.GL_STATIC_DRAW);
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
GLES11Header.java-if | 121 public static final int GL_STATIC_DRAW = 0x88E4;
|
/external/deqp/modules/gles31/stress/ |
es31sDrawTests.cpp | 204 gl.glBufferData(GL_ELEMENT_ARRAY_BUFFER, (int)(indices.size() * sizeof(deUint16)), &indices[0], GL_STATIC_DRAW); 215 gl.glBufferData(GL_ARRAY_BUFFER, dataSize * sizeof(float[4]), DE_NULL, GL_STATIC_DRAW); 227 gl.glBufferData(GL_ARRAY_BUFFER, dataSize * sizeof(float[4]), DE_NULL, GL_STATIC_DRAW); 254 gl.glBufferData(GL_DRAW_INDIRECT_BUFFER, sizeof(drawCommand), &drawCommand, GL_STATIC_DRAW); 278 gl.glBufferData(GL_DRAW_INDIRECT_BUFFER, sizeof(drawCommand), &drawCommand, GL_STATIC_DRAW);
|
/external/deqp/modules/glshared/ |
glsMemoryStressCase.cpp | 200 GLU_CHECK_CALL(glBufferData(GL_ARRAY_BUFFER, sizeof(s_quadCoords), s_quadCoords, GL_STATIC_DRAW)); 204 GLU_CHECK_CALL(glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(s_quadIndices), s_quadIndices, GL_STATIC_DRAW)); 362 GLU_CHECK_CALL(glBufferData(GL_ARRAY_BUFFER, sizeof(s_quadCoords), s_quadCoords, GL_STATIC_DRAW)); 366 GLU_CHECK_CALL(glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(s_quadIndices), s_quadIndices, GL_STATIC_DRAW));
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
GLToolbox.java | 153 GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, data.remaining(), data, GLES20.GL_STATIC_DRAW);
|