summaryrefslogtreecommitdiff
path: root/include/uapi/linux
diff options
context:
space:
mode:
authorShivaraj Shetty <shivaraj@codeaurora.org>2013-10-22 18:43:17 +0530
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 20:23:16 -0700
commit2b1b34be2447fdc2136483a221cf39627d9c8e62 (patch)
treeb176e8e05d87f7656dfd8cc551fa83f861f8725b /include/uapi/linux
parent36608696322d382f262539fd4e41ce0424420a5c (diff)
mdss: support for solid fill with color specified by HAL
This patch provides the support for filling the frame buffer with any color specified by the HAL. Change-Id: I9414764f858e309d35967430ef4e6f83d5e42e3e Signed-off-by: Shivaraj Shetty <shivaraj@codeaurora.org>
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/msm_mdp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/uapi/linux/msm_mdp.h b/include/uapi/linux/msm_mdp.h
index 074754c96162..9964ac6a31d1 100644
--- a/include/uapi/linux/msm_mdp.h
+++ b/include/uapi/linux/msm_mdp.h
@@ -245,11 +245,19 @@ struct mdp_csc {
#define MDP_BLIT_REQ_VERSION 2
+struct color {
+ uint32_t r;
+ uint32_t g;
+ uint32_t b;
+ uint32_t alpha;
+};
+
struct mdp_blit_req {
struct mdp_img src;
struct mdp_img dst;
struct mdp_rect src_rect;
struct mdp_rect dst_rect;
+ struct color const_color;
uint32_t alpha;
uint32_t transp_mask;
uint32_t flags;