diff options
author | Michel Dänzer <[email protected]> | 2009-11-17 08:05:22 +0100 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2009-11-17 08:05:22 +0100 |
commit | 2d0c2952566810ef1b277b49b064f4874a973112 (patch) | |
tree | aba76943ddc362991a2d439064c42ee644196095 /src/mesa/main/formats.c | |
parent | e015a4c29bf61077a50780cc99381510671b20ec (diff) |
Add MESA_FORMAT_XRGB8888_REV.
Diffstat (limited to 'src/mesa/main/formats.c')
-rw-r--r-- | src/mesa/main/formats.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index 7d64c462b17..329b7950745 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -133,6 +133,15 @@ static struct gl_format_info format_info[MESA_FORMAT_COUNT] = 1, 1, 4 /* BlockWidth/Height,Bytes */ }, { + MESA_FORMAT_XRGB8888_REV, /* Name */ + "MESA_FORMAT_XRGB8888_REV", /* StrName */ + GL_RGB, /* BaseFormat */ + GL_UNSIGNED_NORMALIZED, /* DataType */ + 8, 8, 8, 0, /* Red/Green/Blue/AlphaBits */ + 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */ + 1, 1, 4 /* BlockWidth/Height,Bytes */ + }, + { MESA_FORMAT_RGB888, /* Name */ "MESA_FORMAT_RGB888", /* StrName */ GL_RGB, /* BaseFormat */ |