Lines Matching refs:reqHeight
2652 uint32_t reqWidth, uint32_t reqHeight, in captureScreen() argument
2667 uint32_t reqWidth, reqHeight; in captureScreen() member in android::SurfaceFlinger::captureScreen::MessageCaptureScreen
2675 uint32_t reqWidth, uint32_t reqHeight, in captureScreen() argument
2678 reqWidth(reqWidth), reqHeight(reqHeight), in captureScreen()
2692 producer, reqWidth, reqHeight, minLayerZ, maxLayerZ); in captureScreen()
2695 producer, reqWidth, reqHeight, minLayerZ, maxLayerZ); in captureScreen()
2737 reqWidth, reqHeight, minLayerZ, maxLayerZ, in captureScreen()
2750 uint32_t reqWidth, uint32_t reqHeight, in renderScreenImplLocked() argument
2766 glViewport(0, 0, reqWidth, reqHeight); in renderScreenImplLocked()
2805 uint32_t reqWidth, uint32_t reqHeight, in captureScreenImplLocked() argument
2820 if ((reqWidth > hw_w) || (reqHeight > hw_h)) { in captureScreenImplLocked()
2822 reqWidth, reqHeight, hw_w, hw_h); in captureScreenImplLocked()
2827 reqHeight = (!reqHeight) ? hw_h : reqHeight; in captureScreenImplLocked()
2834 native_window_set_buffers_user_dimensions(window, reqWidth, reqHeight); in captureScreenImplLocked()
2852 renderScreenImplLocked(hw, reqWidth, reqHeight, minLayerZ, maxLayerZ, false); in captureScreenImplLocked()
2871 uint32_t reqWidth, uint32_t reqHeight, in captureScreenImplCpuConsumerLocked() argument
2890 if ((reqWidth > hw_w) || (reqHeight > hw_h)) { in captureScreenImplCpuConsumerLocked()
2892 reqWidth, reqHeight, hw_w, hw_h); in captureScreenImplCpuConsumerLocked()
2897 reqHeight = (!reqHeight) ? hw_h : reqHeight; in captureScreenImplCpuConsumerLocked()
2902 glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, reqWidth, reqHeight); in captureScreenImplCpuConsumerLocked()
2916 renderScreenImplLocked(hw, reqWidth, reqHeight, minLayerZ, maxLayerZ, true); in captureScreenImplCpuConsumerLocked()
2929 err = native_window_set_buffers_dimensions(window, reqWidth, reqHeight); in captureScreenImplCpuConsumerLocked()
2940 glReadPixels(0, 0, buffer->stride, reqHeight, in captureScreenImplCpuConsumerLocked()