Home
last modified time | relevance | path

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

/frameworks/native/libs/gui/tests/
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()
494 dequeueInput.usage = TEST_PRODUCER_USAGE_BITS; in TEST_P()
495 dequeueInput.getTimestamps = false; in TEST_P()
496 std::vector<DequeueBufferInput> dequeueInputs(BATCH_SIZE, dequeueInput); in TEST_P()
755 DequeueBufferInput dequeueInput; in TEST_P() local
756 dequeueInput.width = DEFAULT_WIDTH; in TEST_P()
757 dequeueInput.height = DEFAULT_HEIGHT; in TEST_P()
[all …]
/frameworks/native/libs/gui/
DSurface.cpp624 IGraphicBufferProducer::DequeueBufferInput* dequeueInput) { in getDequeueBufferInputLocked() argument
625 LOG_ALWAYS_FATAL_IF(dequeueInput == nullptr, "input is null"); in getDequeueBufferInputLocked()
627 dequeueInput->width = mReqWidth ? mReqWidth : mUserWidth; in getDequeueBufferInputLocked()
628 dequeueInput->height = mReqHeight ? mReqHeight : mUserHeight; in getDequeueBufferInputLocked()
630 dequeueInput->format = mReqFormat; in getDequeueBufferInputLocked()
631 dequeueInput->usage = mReqUsage; in getDequeueBufferInputLocked()
633 dequeueInput->getTimestamps = mEnableFrameTimestamps; in getDequeueBufferInputLocked()
779 std::vector<DequeueBufferInput> dequeueInput(numBufferRequested, input); in dequeueBuffers() local
784 status_t result = mGraphicBufferProducer->dequeueBuffers(dequeueInput, &dequeueOutput); in dequeueBuffers()
/frameworks/native/libs/gui/include/gui/
DSurface.h401 void getDequeueBufferInputLocked(IGraphicBufferProducer::DequeueBufferInput* dequeueInput);