mesa: add packing for int/uint
authorDave Airlie <airlied@redhat.com>
Mon, 19 Sep 2011 14:06:13 +0000 (15:06 +0100)
committerDave Airlie <airlied@redhat.com>
Sat, 8 Oct 2011 16:44:58 +0000 (17:44 +0100)
This just adds a simple packing for GL_UNSIGNED_INT/GL_INT destination formats.
This is enough for at least the gallium drivers to pack both unsigned and signed types for read pixels.

Signed-off-by: Dave Airlie <airlied@redhat.com>
src/mesa/main/pack.c
src/mesa/main/pack.h

index 62e352f3fc9c5656e5d8188407e01852813ec7d2..092e541c5db32ca793f44e859ee0ffa998dee4de 100644 (file)
@@ -467,6 +467,69 @@ get_type_min_max(GLenum type, GLfloat *min, GLfloat *max)
    }
 }
 
+/*
+ * integer packing , no transfer operations only packs
+ * to dst of GL_UNSIGNED_INT or GL_INT
+ */
+void
+_mesa_pack_rgba_span_int(struct gl_context *ctx, GLuint n, GLuint rgba[][4],
+                         GLenum dstFormat, GLenum dstType,
+                         GLvoid *dstAddr)
+{
+   int i;
+
+   switch(dstType) {
+   case GL_UNSIGNED_INT: {
+      GLuint *dst = (GLuint *) dstAddr;
+      switch (dstFormat) {
+      case GL_RED_INTEGER_EXT:
+      case GL_GREEN_INTEGER_EXT:
+      case GL_BLUE_INTEGER_EXT:
+      case GL_ALPHA_INTEGER_EXT:
+      case GL_RGB_INTEGER_EXT:
+      case GL_RGBA_INTEGER_EXT:
+      case GL_BGR_INTEGER_EXT:
+      case GL_BGRA_INTEGER_EXT:
+      case GL_LUMINANCE_INTEGER_EXT:
+      case GL_LUMINANCE_ALPHA_INTEGER_EXT:
+         for (i=0;i<n;i++) {
+            dst[i*4+0] = (GLuint) rgba[i][RCOMP];
+            dst[i*4+1] = (GLuint) rgba[i][GCOMP];
+            dst[i*4+2] = (GLuint) rgba[i][BCOMP];
+            dst[i*4+3] = (GLuint) rgba[i][ACOMP];
+         }
+         break;
+      }
+   }
+      break;
+   case GL_INT: {
+      GLint *dst = (GLint *) dstAddr;
+      switch (dstFormat) {
+      case GL_RED_INTEGER_EXT:
+      case GL_GREEN_INTEGER_EXT:
+      case GL_BLUE_INTEGER_EXT:
+      case GL_ALPHA_INTEGER_EXT:
+      case GL_RGB_INTEGER_EXT:
+      case GL_RGBA_INTEGER_EXT:
+      case GL_BGR_INTEGER_EXT:
+      case GL_BGRA_INTEGER_EXT:
+      case GL_LUMINANCE_INTEGER_EXT:
+      case GL_LUMINANCE_ALPHA_INTEGER_EXT:
+         for (i=0;i<n;i++) {
+            dst[i*4+0] = (GLint) rgba[i][RCOMP];
+            dst[i*4+1] = (GLint) rgba[i][GCOMP];
+            dst[i*4+2] = (GLint) rgba[i][BCOMP];
+            dst[i*4+3] = (GLint) rgba[i][ACOMP];
+         }
+         break;
+      }
+   }
+      break;
+   default:
+      assert(0);
+      return;
+   }
+}
 
 
 /**
index 7c76baae4d6b3f6a89593a67ce0181c479cecb0b..7a0089c2f2ccc712d1167def9bed2752fb2e036c 100644 (file)
@@ -144,4 +144,9 @@ _mesa_unpack_image(GLuint dimensions,
                    const struct gl_pixelstore_attrib *unpack);
 
 
+void
+_mesa_pack_rgba_span_int(struct gl_context *ctx, GLuint n, GLuint rgba[][4],
+                         GLenum dstFormat, GLenum dstType,
+                         GLvoid *dstAddr);
+
 #endif