OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bufferId
(Results
1 - 5
of
5
) sorted by null
/development/tools/emulator/opengl/system/GLESv2_enc/
GL2Encoder.cpp
147
GLuint
bufferId
= ctx->m_state->getBuffer(target);
148
SET_ERROR_IF(
bufferId
==0, GL_INVALID_OPERATION);
151
ctx->m_shared->updateBufferData(
bufferId
, size, (void*)data);
158
GLuint
bufferId
= ctx->m_state->getBuffer(target);
159
SET_ERROR_IF(
bufferId
==0, GL_INVALID_OPERATION);
161
GLenum res = ctx->m_shared->subUpdateBufferData(
bufferId
, offset, size, (void*)data);
/development/tools/emulator/opengl/system/GLESv1_enc/
GLEncoder.cpp
282
GLuint
bufferId
= ctx->m_state->getBuffer(target);
283
SET_ERROR_IF(
bufferId
==0, GL_INVALID_OPERATION);
286
ctx->m_shared->updateBufferData(
bufferId
, size, (void*)data);
293
GLuint
bufferId
= ctx->m_state->getBuffer(target);
294
SET_ERROR_IF(
bufferId
==0, GL_INVALID_OPERATION);
296
GLenum res = ctx->m_shared->subUpdateBufferData(
bufferId
, offset, size, (void*)data);
/system/media/wilhelm/src/android/
android_StreamPlayer.cpp
125
size_t
bufferId
;
183
bufferId
= *mAvailableBuffers.begin();
184
CHECK_LT(
bufferId
, mBuffers.size());
185
sp<IMemory> mem = mBuffers.itemAt(
bufferId
);
197
receivedBuffer_l(
bufferId
, buffSize);
222
receivedBuffer_l(
bufferId
, consumed);
/frameworks/base/media/libstagefright/
ACodec.cpp
149
bool onOMXEmptyBufferDone(IOMX::buffer_id
bufferID
);
152
IOMX::buffer_id
bufferID
,
526
IOMX::buffer_id
bufferId
;
528
&
bufferId
);
535
mBuffers[kPortIndexOutput].editItemAt(i).mBufferID =
bufferId
;
539
bufferId
, graphicBuffer.get());
655
uint32_t portIndex, IOMX::buffer_id
bufferID
,
660
if (info->mBufferID ==
bufferID
) {
[
all
...]
OMXCodec.cpp
[
all
...]
Completed in 362 milliseconds