blob: baecef99b9216ef8ce6561298ea7f8e64d84d1be [file] [log] [blame]
Sushil Chauhan082acd62015-01-14 16:49:29 -08001/*
Rohit Kulkarni7943ec92016-12-20 18:18:46 -08002* Copyright (c) 2015 - 2017, The Linux Foundation. All rights reserved.
Sushil Chauhan082acd62015-01-14 16:49:29 -08003*
4* Redistribution and use in source and binary forms, with or without modification, are permitted
5* provided that the following conditions are met:
6* * Redistributions of source code must retain the above copyright notice, this list of
7* conditions and the following disclaimer.
8* * Redistributions in binary form must reproduce the above copyright notice, this list of
9* conditions and the following disclaimer in the documentation and/or other materials provided
10* with the distribution.
11* * Neither the name of The Linux Foundation nor the names of its contributors may be used to
12* endorse or promote products derived from this software without specific prior written
13* permission.
14*
15* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
18* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
19* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23*/
24
25// Adreno Pixel Formats
26typedef enum {
27
28 ADRENO_PIXELFORMAT_UNKNOWN = 0,
Ramkumar Radhakrishnandb89d1f2016-03-07 20:15:52 -080029 ADRENO_PIXELFORMAT_R10G10B10A2_UNORM = 24, // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES
Sushil Chauhan8516ecc2015-04-10 18:59:30 -070030 ADRENO_PIXELFORMAT_R8G8B8A8 = 28,
Sushil Chauhan082acd62015-01-14 16:49:29 -080031 ADRENO_PIXELFORMAT_R8G8B8A8_SRGB = 29,
32 ADRENO_PIXELFORMAT_B5G6R5 = 85,
33 ADRENO_PIXELFORMAT_B5G5R5A1 = 86,
34 ADRENO_PIXELFORMAT_B8G8R8A8 = 90,
35 ADRENO_PIXELFORMAT_B8G8R8A8_SRGB = 91,
36 ADRENO_PIXELFORMAT_B8G8R8X8_SRGB = 93,
37 ADRENO_PIXELFORMAT_NV12 = 103,
Rohit Kulkarni7943ec92016-12-20 18:18:46 -080038 ADRENO_PIXELFORMAT_P010 = 104,
Sushil Chauhan082acd62015-01-14 16:49:29 -080039 ADRENO_PIXELFORMAT_YUY2 = 107,
40 ADRENO_PIXELFORMAT_B4G4R4A4 = 115,
Sushil Chauhana9d47002015-02-18 14:55:03 -080041 ADRENO_PIXELFORMAT_NV12_EXT = 506, // NV12 with non-std alignment and offsets
Sushil Chauhan8516ecc2015-04-10 18:59:30 -070042 ADRENO_PIXELFORMAT_R8G8B8X8 = 507, // GL_RGB8 (Internal)
Sushil Chauhan082acd62015-01-14 16:49:29 -080043 ADRENO_PIXELFORMAT_R8G8B8 = 508, // GL_RGB8
44 ADRENO_PIXELFORMAT_A1B5G5R5 = 519, // GL_RGB5_A1
45 ADRENO_PIXELFORMAT_R8G8B8X8_SRGB = 520, // GL_SRGB8
46 ADRENO_PIXELFORMAT_R8G8B8_SRGB = 521, // GL_SRGB8
Ramkumar Radhakrishnandb89d1f2016-03-07 20:15:52 -080047 ADRENO_PIXELFORMAT_A2B10G10R10_UNORM = 532,
48 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES
49 ADRENO_PIXELFORMAT_R10G10B10X2_UNORM = 537,
50 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES
Sushil Chauhan082acd62015-01-14 16:49:29 -080051 ADRENO_PIXELFORMAT_R5G6B5 = 610, // RGBA version of B5G6R5
52 ADRENO_PIXELFORMAT_R5G5B5A1 = 611, // RGBA version of B5G5R5A1
53 ADRENO_PIXELFORMAT_R4G4B4A4 = 612, // RGBA version of B4G4R4A4
54 ADRENO_PIXELFORMAT_UYVY = 614, // YUV 4:2:2 packed progressive (1 plane)
55 ADRENO_PIXELFORMAT_NV21 = 619,
56 ADRENO_PIXELFORMAT_Y8U8V8A8 = 620, // YUV 4:4:4 packed (1 plane)
57 ADRENO_PIXELFORMAT_Y8 = 625, // Single 8-bit luma only channel YUV format
Rohit Kulkarni7943ec92016-12-20 18:18:46 -080058 ADRENO_PIXELFORMAT_TP10 = 654, // YUV 4:2:0 planar 10 bits/comp (2 planes)
Sushil Chauhan082acd62015-01-14 16:49:29 -080059} ADRENOPIXELFORMAT;