HomeSort by relevance Sort by last modified time
    Searched defs:bufferId (Results 1 - 7 of 7) sorted by null

  /sdk/emulator/opengl/system/GLESv2_enc/
GL2Encoder.cpp 182 GLuint bufferId = ctx->m_state->getBuffer(target);
183 SET_ERROR_IF(bufferId==0, GL_INVALID_OPERATION);
186 ctx->m_shared->updateBufferData(bufferId, size, (void*)data);
193 GLuint bufferId = ctx->m_state->getBuffer(target);
194 SET_ERROR_IF(bufferId==0, GL_INVALID_OPERATION);
196 GLenum res = ctx->m_shared->subUpdateBufferData(bufferId, offset, size, (void*)data);
    [all...]
  /frameworks/wilhelm/src/android/
android_StreamPlayer.cpp 126 size_t bufferId;
197 bufferId = *mAvailableBuffers.begin();
198 CHECK_LT(bufferId, mBuffers.size());
199 sp<IMemory> mem = mBuffers.itemAt(bufferId);
211 receivedBuffer_l(bufferId, buffSize);
236 receivedBuffer_l(bufferId, consumed);
  /sdk/emulator/opengl/system/GLESv1_enc/
GLEncoder.cpp 364 GLuint bufferId = ctx->m_state->getBuffer(target);
365 SET_ERROR_IF(bufferId==0, GL_INVALID_OPERATION);
368 ctx->m_shared->updateBufferData(bufferId, size, (void*)data);
375 GLuint bufferId = ctx->m_state->getBuffer(target);
376 SET_ERROR_IF(bufferId==0, GL_INVALID_OPERATION);
378 GLenum res = ctx->m_shared->subUpdateBufferData(bufferId, offset, size, (void*)data);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TransferQueue.h 44 GLint bufferId[1];
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_fixup.cpp 421 GLint bufferId = glGetInteger(context, GL_ELEMENT_ARRAY_BUFFER_BINDING);
422 context->bindBuffer(bufferId, datap, size);
438 GLint bufferId = glGetInteger(context, GL_ELEMENT_ARRAY_BUFFER_BINDING);
439 context->updateBufferSubData(bufferId, offset, datap, size);
619 GLuint bufferId = glGetInteger(context, GL_ELEMENT_ARRAY_BUFFER_BINDING);
620 context->getBuffer(bufferId, &indexBuffer, &eaBufferSize);
  /frameworks/av/media/libstagefright/
ACodec.cpp 147 bool onOMXEmptyBufferDone(IOMX::buffer_id bufferID);
150 IOMX::buffer_id bufferID,
611 IOMX::buffer_id bufferId;
613 &bufferId);
620 mBuffers[kPortIndexOutput].editItemAt(i).mBufferID = bufferId;
624 bufferId, graphicBuffer.get());
740 uint32_t portIndex, IOMX::buffer_id bufferID,
745 if (info->mBufferID == bufferID) {
    [all...]
OMXCodec.cpp     [all...]

Completed in 299 milliseconds