Skip to content

Commit

Permalink
Added fourcc for 64bit RGB format
Browse files Browse the repository at this point in the history
Jira: https://jira01.devtools.intel.com/browse/OAM-52530
Tests: Test Passes
Signed-off-by: Poornima <poornima.y.n@intel.com>
  • Loading branch information
pyn24 authored and kalyankondapally committed Apr 10, 2018
1 parent ef08d56 commit 315f8bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/drm/drm_fourcc.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ extern "C" {

#define DRM_FORMAT_AYUV fourcc_code('A', 'Y', 'U', 'V') /* [31:0] A:Y:Cb:Cr 8:8:8:8 little endian */

/* 64 bpp RGB */
#define DRM_FORMAT_XRGB161616 fourcc_code('X', 'R', '4', '8') /* [63:0] x:R:G:B 16:16:16:16 little endian */
#define DRM_FORMAT_XBGR161616 fourcc_code('X', 'B', '4', '8') /* [63:0] x:B:G:R 16:16:16:16 little endian */

/*
* 2 plane RGB + A
* index 0 = RGB plane, same format as the corresponding non _A8 format has
Expand Down

0 comments on commit 315f8bd

Please sign in to comment.