Home
last modified time | relevance | path

Searched refs:dequeueInput (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/libs/gui/tests/
DIGraphicBufferProducer_test.cpp469 DequeueBufferInput dequeueInput; in TEST_P() local
470 dequeueInput.width = DEFAULT_WIDTH; in TEST_P()
471 dequeueInput.height = DEFAULT_HEIGHT; in TEST_P()
472 dequeueInput.format = DEFAULT_FORMAT; in TEST_P()
473 dequeueInput.usage = TEST_PRODUCER_USAGE_BITS; in TEST_P()
474 dequeueInput.getTimestamps = false; in TEST_P()
475 std::vector<DequeueBufferInput> dequeueInputs(BATCH_SIZE, dequeueInput); in TEST_P()
734 DequeueBufferInput dequeueInput; in TEST_P() local
735 dequeueInput.width = DEFAULT_WIDTH; in TEST_P()
736 dequeueInput.height = DEFAULT_HEIGHT; in TEST_P()
[all …]
/frameworks/native/libs/gui/
DSurface.cpp575 IGraphicBufferProducer::DequeueBufferInput* dequeueInput) { in getDequeueBufferInputLocked() argument
576 LOG_ALWAYS_FATAL_IF(dequeueInput == nullptr, "input is null"); in getDequeueBufferInputLocked()
578 dequeueInput->width = mReqWidth ? mReqWidth : mUserWidth; in getDequeueBufferInputLocked()
579 dequeueInput->height = mReqHeight ? mReqHeight : mUserHeight; in getDequeueBufferInputLocked()
581 dequeueInput->format = mReqFormat; in getDequeueBufferInputLocked()
582 dequeueInput->usage = mReqUsage; in getDequeueBufferInputLocked()
584 dequeueInput->getTimestamps = mEnableFrameTimestamps; in getDequeueBufferInputLocked()
730 std::vector<DequeueBufferInput> dequeueInput(numBufferRequested, input); in dequeueBuffers() local
735 status_t result = mGraphicBufferProducer->dequeueBuffers(dequeueInput, &dequeueOutput); in dequeueBuffers()
/frameworks/native/libs/gui/include/gui/
DSurface.h436 void getDequeueBufferInputLocked(IGraphicBufferProducer::DequeueBufferInput* dequeueInput);