Searched refs:buffers (Results 26 - 50 of 56) sorted by relevance

123

/frameworks/native/opengl/libagl/
H A Dstate.cpp370 int index = c->rasterizer.state.buffers.color.format;
376 int index = c->rasterizer.state.buffers.color.format;
382 int index = c->rasterizer.state.buffers.color.format;
388 int index = c->rasterizer.state.buffers.color.format;
410 params[0] = c->rasterizer.state.buffers.depth.format ? 0 : 16;
H A Darray.cpp1447 // buffers
1530 void glDeleteBuffers(GLsizei n, const GLuint* buffers) argument
1539 GLuint name = buffers[i];
1541 // unbind bound deleted buffers...
1576 c->bufferObjectManager->deleteBuffers(n, buffers);
1577 c->bufferObjectManager->recycleTokens(n, buffers);
1580 void glGenBuffers(GLsizei n, GLuint* buffers) argument
1587 c->bufferObjectManager->getToken(n, buffers);
H A Dtexture.cpp696 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
800 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
1334 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
1457 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
1514 const GGLSurface& readSurface = c->rasterizer.state.buffers.read.s;
H A Degl.cpp594 if (depth.data != gl->rasterizer.state.buffers.depth.data)
686 if (depth.data != gl->rasterizer.state.buffers.depth.data)
762 if (depth.data != gl->rasterizer.state.buffers.depth.data)
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES11.cpp380 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
389 GLuint *buffers = (GLuint *) 0; local
394 _exceptionMessage = "buffers == null";
412 buffers = buffers_base + offset;
416 (GLuint *)buffers
429 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
439 GLuint *buffers = (GLuint *) 0; local
441 buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset);
448 if (buffers == NULL) {
450 buffers
493 GLuint *buffers = (GLuint *) 0; local
543 GLuint *buffers = (GLuint *) 0; local
[all...]
H A Dandroid_opengl_GLES20.cpp542 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
551 GLuint *buffers = (GLuint *) 0; local
556 _exceptionMessage = "buffers == null";
574 buffers = buffers_base + offset;
578 (GLuint *)buffers
591 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
601 GLuint *buffers = (GLuint *) 0; local
603 buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset);
610 if (buffers == NULL) {
612 buffers
1063 GLuint *buffers = (GLuint *) 0; local
1113 GLuint *buffers = (GLuint *) 0; local
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp4366 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
4375 GLuint *buffers = (GLuint *) 0; local
4380 _exceptionMessage = "buffers == null";
4398 buffers = buffers_base + offset;
4402 (GLuint *)buffers
4415 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
4425 GLuint *buffers = (GLuint *) 0; local
4427 buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset);
4434 if (buffers == NULL) {
4436 buffers
4479 GLuint *buffers = (GLuint *) 0; local
4529 GLuint *buffers = (GLuint *) 0; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s29 ; * [in] pSrcMVLeftMB pointers to the motion vector buffers of the
32 ; * [in] pSrcMVUpperMB pointers to the motion vector buffers of the
35 ; * [in] pSrcMVUpperRightMB pointers to the motion vector buffers of the
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s29 ; * [in] pSrcMVLeftMB pointers to the motion vector buffers of the
32 ; * [in] pSrcMVUpperMB pointers to the motion vector buffers of the
35 ; * [in] pSrcMVUpperRightMB pointers to the motion vector buffers of the
/frameworks/wilhelm/src/android/
H A Dandroid_StreamPlayer.cpp68 void StreamSourceAppProxy::setBuffers(const Vector<sp<IMemory> > &buffers) { argument
71 mBuffers = buffers;
81 // no buffers available to push data to from the buffer queue, bail
90 //SL_LOGD("onBufferAvailable() now %d buffers available in queue",
261 //SL_LOGD("%d buffers available after reading from queue", mAvailableBuffers.size());
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java991 public void glDeleteBuffers(int n, int[] buffers, int offset) { argument
993 mgl11.glDeleteBuffers(n, buffers, offset);
997 public void glDeleteBuffers(int n, IntBuffer buffers) { argument
999 mgl11.glDeleteBuffers(n, buffers);
1009 public void glGenBuffers(int n, int[] buffers, int offset) { argument
1011 mgl11.glGenBuffers(n, buffers, offset);
1015 public void glGenBuffers(int n, IntBuffer buffers) { argument
1017 mgl11.glGenBuffers(n, buffers);
H A DGLES20.java555 // C function void glDeleteBuffers ( GLsizei n, const GLuint *buffers )
559 int[] buffers,
563 // C function void glDeleteBuffers ( GLsizei n, const GLuint *buffers )
567 java.nio.IntBuffer buffers
738 // C function void glGenBuffers ( GLsizei n, GLuint *buffers )
742 int[] buffers,
746 // C function void glGenBuffers ( GLsizei n, GLuint *buffers )
750 java.nio.IntBuffer buffers
557 glDeleteBuffers( int n, int[] buffers, int offset ) argument
740 glGenBuffers( int n, int[] buffers, int offset ) argument
H A DGLLogWrapper.java2812 public void glDeleteBuffers(int n, int[] buffers, int offset) { argument
2815 arg("buffers", buffers.toString());
2818 mgl11.glDeleteBuffers(n, buffers, offset);
2822 public void glDeleteBuffers(int n, IntBuffer buffers) { argument
2825 arg("buffers", buffers.toString());
2827 mgl11.glDeleteBuffers(n, buffers);
2831 public void glGenBuffers(int n, int[] buffers, int offset) { argument
2834 arg("buffers", buffer
2841 glGenBuffers(int n, IntBuffer buffers) argument
[all...]
/frameworks/native/libs/gui/tests/
H A DSurfaceTexture_test.cpp844 // and GPU-read buffers.
1424 // This test requires 3 buffers to avoid deadlock because we're
1476 // This test requires 3 buffers to complete run on a single thread.
1546 sp<GraphicBuffer> buffers[2]; local
1569 buffers[i] = mST->getCurrentBuffer();
1572 // Destroy the GL texture object to release its ref on buffers[2].
1582 EXPECT_EQ(1, buffers[0]->getStrongCount());
1587 EXPECT_EQ(2, buffers[1]->getStrongCount());
1591 sp<GraphicBuffer> buffers[3]; local
1615 buffers[
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES20.spec29 void glDeleteBuffers ( GLsizei n, const GLuint *buffers )
51 void glGenBuffers ( GLsizei n, GLuint *buffers )
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java1239 // C function void glDeleteBuffers ( GLsizei n, const GLuint *buffers )
1243 int[] buffers,
1247 // C function void glDeleteBuffers ( GLsizei n, const GLuint *buffers )
1251 java.nio.IntBuffer buffers
1263 // C function void glGenBuffers ( GLsizei n, GLuint *buffers )
1267 int[] buffers,
1271 // C function void glGenBuffers ( GLsizei n, GLuint *buffers )
1275 java.nio.IntBuffer buffers
1241 glDeleteBuffers( int n, int[] buffers, int offset ) argument
1265 glGenBuffers( int n, int[] buffers, int offset ) argument
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp488 // Release AudioTrack callback thread in case it was waiting for new buffers
920 mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
922 mCblk->buffers = sharedBuffer->pointer();
1109 // out of buffers, return #bytes written
1288 // The callback is done filling buffers
1335 // signal old cblk condition so that other threads waiting for available buffers stop
1376 memset(mCblk->buffers, 0, frames * mCblk->frameSize);
1508 userBase(0), serverBase(0), buffers(NULL), frameCount(0),
1612 return (int8_t *)buffers + (offset - userBase) * frameSize;
H A DAudioRecord.cpp467 mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
633 // out of buffers, return #bytes written
717 // The callback is done filling buffers
762 // signal old cblk condition so that other threads waiting for available buffers stop
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.cpp669 ALOGVV("MetadataQueue: deque (%d buffers)", mCount);
1003 "usage 0x%x, producer wants %d buffers", __FUNCTION__,
1075 ALOGV("%s: Consumer wants %d buffers", __FUNCTION__,
1091 // Register allocated buffers with HAL device
1092 buffer_handle_t *buffers = new buffer_handle_t[mTotalBuffers]; local
1104 buffers[bufferIdx] = anwBuffers[bufferIdx]->handle;
1105 ALOGV("%s: Buffer %p allocated", __FUNCTION__, (void*)buffers[bufferIdx]);
1108 ALOGV("%s: Registering %d buffers with camera HAL", __FUNCTION__, mTotalBuffers);
1112 buffers);
1114 ALOGE("%s: Unable to register buffers wit
[all...]
/frameworks/av/include/media/stagefright/
H A DOMXCodec.h52 // Store meta data in video buffers
58 // Enable GRALLOC_USAGE_PROTECTED for output buffers from native window
222 // submitted to OMX next. This only applies when using buffers from a
320 // the buffers on that port).
328 static size_t countBuffersWeOwn(const Vector<BufferInfo> &buffers);
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp180 Vector<Buffer> *buffers) {
181 buffers->clear();
197 buffers->push(buffer);
303 // allocating all input and output buffers.
306 "all input and output buffers are allocated.");
308 // Now allocate buffers.
327 "after all input and output buffers were allocated.");
363 "Not all output buffers have been returned to us by the time "
390 "Not all input buffers have been returned to us by the "
397 "Not all output buffers hav
177 allocatePortBuffers( const sp<MemoryDealer> &dealer, IOMX::node_id node, OMX_U32 portIndex, Vector<Buffer> *buffers) argument
[all...]
/frameworks/av/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp309 virtual status_t registerBuffers(const BufferHeap& buffers);
328 status_t MSurface::registerBuffers(const BufferHeap& buffers) { argument
/frameworks/native/opengl/include/GLES/
H A Dgl.h655 GL_API void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers);
675 GL_API void GL_APIENTRY glGenBuffers (GLsizei n, GLuint *buffers);
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h502 GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint* buffers);
523 GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint* buffers);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h52 void GLTrace_glDeleteBuffers(GLsizei n, const GLuint* buffers);
73 void GLTrace_glGenBuffers(GLsizei n, GLuint* buffers);
277 void GLTrace_glExtGetBuffersQCOM(GLuint *buffers, GLint maxBuffers, GLint *numBuffers);

Completed in 436 milliseconds

123