summaryrefslogtreecommitdiff
path: root/src/mesa/main/formats.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/formats.c')
-rw-r--r--src/mesa/main/formats.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c
index 8aa0d107b7..5c2bf5ece3 100644
--- a/src/mesa/main/formats.c
+++ b/src/mesa/main/formats.c
@@ -37,6 +37,14 @@
static struct gl_format_info format_info[MESA_FORMAT_COUNT] =
{
{
+ MESA_FORMAT_NONE, /* Name */
+ GL_NONE, /* BaseFormat */
+ GL_NONE, /* DataType */
+ 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
+ 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
+ 0, 0, 0 /* BlockWidth/Height,Bytes */
+ },
+ {
MESA_FORMAT_RGBA8888, /* Name */
GL_RGBA, /* BaseFormat */
GL_UNSIGNED_NORMALIZED, /* DataType */
@@ -617,6 +625,9 @@ _mesa_test_formats(void)
assert(info->Name == i);
+ if (info->Name == MESA_FORMAT_NONE)
+ continue;
+
if (info->BlockWidth == 1 && info->BlockHeight == 1) {
if (info->RedBits > 0) {
GLuint t = info->RedBits + info->GreenBits