c560a67b12
If your screen is a TV, it may not actually be displaying the edges of the framebuffer. Allow specifying an overscan percentage, and move each edge of the framebuffer in by that percent of the width/height. (The gr_* layer just lies to the caller about the size of the framebuffer, telling the caller it's smaller than it really is, and offsets all drawing commands to match.) Change-Id: I11bb2feb39ae522bd3e957a14ebdecf3609e0fdc
29 lines
771 B
Makefile
29 lines
771 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := graphics.c events.c resources.c
|
|
|
|
LOCAL_C_INCLUDES +=\
|
|
external/libpng\
|
|
external/zlib
|
|
|
|
LOCAL_MODULE := libminui
|
|
|
|
# This used to compare against values in double-quotes (which are just
|
|
# ordinary characters in this context). Strip double-quotes from the
|
|
# value so that either will work.
|
|
|
|
ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888)
|
|
LOCAL_CFLAGS += -DRECOVERY_RGBX
|
|
endif
|
|
ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888)
|
|
LOCAL_CFLAGS += -DRECOVERY_BGRA
|
|
endif
|
|
|
|
ifneq ($(TARGET_RECOVERY_OVERSCAN_PERCENT),)
|
|
LOCAL_CFLAGS += -DOVERSCAN_PERCENT=$(TARGET_RECOVERY_OVERSCAN_PERCENT)
|
|
else
|
|
LOCAL_CFLAGS += -DOVERSCAN_PERCENT=0
|
|
endif
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|