Add GRALLOC_FRAMEBUFFER_NUM configuration am: 0b5ab223e1

Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/libhardware/+/16235226

Change-Id: Ia434ac4fae4212f4d41777ca4b380d105e8d0990
This commit is contained in:
YiMing Tseng 2021-12-16 03:16:55 +00:00 committed by Automerger Merge Worker
commit 56747f919a
2 changed files with 8 additions and 2 deletions

View file

@ -38,5 +38,8 @@ LOCAL_CFLAGS:= -DLOG_TAG=\"gralloc\" -Wno-missing-field-initializers
ifeq ($(TARGET_USE_PAN_DISPLAY),true)
LOCAL_CFLAGS += -DUSE_PAN_DISPLAY=1
endif
ifneq ($(GRALLOC_FRAMEBUFFER_NUM),)
LOCAL_CFLAGS += -DNUM_BUFFERS=$(GRALLOC_FRAMEBUFFER_NUM)
endif
include $(BUILD_SHARED_LIBRARY)

View file

@ -45,8 +45,10 @@
#define USE_PAN_DISPLAY 0
#endif
// numbers of buffers for page flipping
// Enabling page flipping by default
#ifndef NUM_BUFFERS
#define NUM_BUFFERS 2
#endif
enum {
@ -157,7 +159,8 @@ int mapFrameBufferLocked(struct private_module_t* module, int format)
info.activate = FB_ACTIVATE_NOW;
/*
* Request NUM_BUFFERS screens (at lest 2 for page flipping)
* Request NUM_BUFFERS screens
* To enable page flipping, NUM_BUFFERS should be at least 2.
*/
info.yres_virtual = info.yres * NUM_BUFFERS;