Home
last modified time | relevance | path

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

/aosp12/frameworks/native/libs/gui/tests/
H A DIGraphicBufferProducer_test.cpp490 DequeueBufferInput dequeueInput; in TEST_P() local
491 dequeueInput.width = DEFAULT_WIDTH; in TEST_P()
492 dequeueInput.height = DEFAULT_HEIGHT; in TEST_P()
493 dequeueInput.format = DEFAULT_FORMAT; in TEST_P()
495 dequeueInput.getTimestamps = false; in TEST_P()
755 DequeueBufferInput dequeueInput; in TEST_P() local
756 dequeueInput.width = DEFAULT_WIDTH; in TEST_P()
760 dequeueInput.getTimestamps = false; in TEST_P()
1063 DequeueBufferInput dequeueInput; in TEST_P() local
1064 dequeueInput.width = DEFAULT_WIDTH; in TEST_P()
[all …]
/aosp12/frameworks/native/libs/gui/
H A DSurface.cpp619 IGraphicBufferProducer::DequeueBufferInput* dequeueInput) { in getDequeueBufferInputLocked() argument
620 LOG_ALWAYS_FATAL_IF(dequeueInput == nullptr, "input is null"); in getDequeueBufferInputLocked()
622 dequeueInput->width = mReqWidth ? mReqWidth : mUserWidth; in getDequeueBufferInputLocked()
623 dequeueInput->height = mReqHeight ? mReqHeight : mUserHeight; in getDequeueBufferInputLocked()
625 dequeueInput->format = mReqFormat; in getDequeueBufferInputLocked()
626 dequeueInput->usage = mReqUsage; in getDequeueBufferInputLocked()
628 dequeueInput->getTimestamps = mEnableFrameTimestamps; in getDequeueBufferInputLocked()
774 std::vector<DequeueBufferInput> dequeueInput(numBufferRequested, input); in dequeueBuffers() local
779 status_t result = mGraphicBufferProducer->dequeueBuffers(dequeueInput, &dequeueOutput); in dequeueBuffers()
/aosp12/frameworks/native/libs/gui/include/gui/
H A DSurface.h396 void getDequeueBufferInputLocked(IGraphicBufferProducer::DequeueBufferInput* dequeueInput);