aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/main/pack_tmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'mesalib/src/mesa/main/pack_tmp.h')
-rw-r--r--mesalib/src/mesa/main/pack_tmp.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/mesalib/src/mesa/main/pack_tmp.h b/mesalib/src/mesa/main/pack_tmp.h
index 83b655729..0d4eb387d 100644
--- a/mesalib/src/mesa/main/pack_tmp.h
+++ b/mesalib/src/mesa/main/pack_tmp.h
@@ -22,7 +22,8 @@
*/
static void
-FN_NAME(DST_TYPE *dst,
+FN_NAME(struct gl_context *ctx,
+ DST_TYPE *dst,
GLenum dstFormat,
SRC_TYPE rgba[][4],
int n)
@@ -111,5 +112,11 @@ FN_NAME(DST_TYPE *dst,
dst[i*2+1] = SRC_CONVERT(rgba[i][ACOMP]);
}
break;
+
+ default:
+ _mesa_problem(ctx,
+ "Unsupported format (%s)",
+ _mesa_lookup_enum_by_nr(dstFormat));
+ break;
}
}