OSDN Git Service

Fix merge issue
authorKeith Whitwell <keith@tungstengraphics.com>
Fri, 10 Aug 2007 09:20:35 +0000 (10:20 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Fri, 10 Aug 2007 09:20:35 +0000 (10:20 +0100)
src/mesa/drivers/dri/intel_winsys/intel_context.c
src/mesa/drivers/dri/intel_winsys/intel_pipe_softpipe.c

index b88c785..fea6995 100644 (file)
@@ -311,21 +311,6 @@ intelInitDriverFunctions(struct dd_function_table *functions)
 
 
 
-/**
- * Return list of surface formats supported by this driver.
- */
-static const GLuint *
-intel_supported_formats(struct pipe_context *pipe, GLuint *numFormats)
-{
-   static const GLuint formats[] = {
-      PIPE_FORMAT_U_A8_R8_G8_B8,
-      PIPE_FORMAT_U_R5_G6_B5,
-      PIPE_FORMAT_S8_Z24,
-   };
-
-   *numFormats = sizeof(formats) / sizeof(formats[0]);
-   return formats;
-}
 
 
 GLboolean
index fdd7acf..06db5c9 100644 (file)
@@ -36,9 +36,9 @@
 
 #include "intel_context.h"
 #include "intel_pipe.h"
-#include "intel_surface.h"
 
 #include "pipe/softpipe/sp_winsys.h"
+#include "pipe/p_defines.h"
 
 /* Shouldn't really need this:
  */
@@ -158,6 +158,24 @@ intel_create_buffer(struct softpipe_winsys *sws,
 }
 
 
+/**
+ * Return list of surface formats supported by this driver.
+ */
+static const GLuint *
+intel_supported_formats(struct pipe_context *pipe, GLuint *numFormats)
+{
+   static const GLuint formats[] = {
+      PIPE_FORMAT_U_A8_R8_G8_B8,
+      PIPE_FORMAT_U_R5_G6_B5,
+      PIPE_FORMAT_S8_Z24,
+   };
+
+   *numFormats = sizeof(formats) / sizeof(formats[0]);
+   return formats;
+}
+
+
+
 struct pipe_context *
 intel_create_softpipe( struct intel_context *intel )
 {