i965: Move contents of intel_extensions.h to intel_context.h.
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 2 Jul 2013 04:28:27 +0000 (21:28 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 3 Jul 2013 17:48:13 +0000 (10:48 -0700)
Having an entire header file for a single prototype seems a bit
excessive.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
src/mesa/drivers/dri/i965/intel_context.c
src/mesa/drivers/dri/i965/intel_context.h
src/mesa/drivers/dri/i965/intel_extensions.c
src/mesa/drivers/dri/i965/intel_extensions.h [deleted file]

index 79420a2c444bed8562276c855b02322cc6deacf3..ad307347cb82f301b089b55a8e26afca7e04d62f 100644 (file)
@@ -46,7 +46,6 @@
 #include "intel_tex.h"
 #include "intel_batchbuffer.h"
 #include "intel_clear.h"
-#include "intel_extensions.h"
 #include "intel_pixel.h"
 #include "intel_regions.h"
 #include "intel_buffer_objects.h"
index 55e1315622f5dfbd0828031ff9a10c4a24c8e26b..60fcfe3c9db0d64275bbf73402f550ea9cde5536 100644 (file)
@@ -482,6 +482,9 @@ void
 intel_resolve_for_dri2_flush(struct intel_context *intel,
                              __DRIdrawable *drawable);
 
+extern void
+intelInitExtensions(struct gl_context *ctx);
+
 /*======================================================================
  * Inline conversion functions.  
  * These are better-typed than the macros used previously:
index dc2e1fa8c86ac40f483feff1074835695f5e5c25..ded1e702ac7229895896e0d7f4db615f933aeb56 100644 (file)
@@ -29,7 +29,6 @@
 
 #include "intel_chipset.h"
 #include "intel_context.h"
-#include "intel_extensions.h"
 #include "intel_reg.h"
 #include "utils.h"
 
diff --git a/src/mesa/drivers/dri/i965/intel_extensions.h b/src/mesa/drivers/dri/i965/intel_extensions.h
deleted file mode 100644 (file)
index 9c1f271..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/**************************************************************************
- * 
- * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
- * All Rights Reserved.
- * 
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sub license, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- * 
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial portions
- * of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
- * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
- * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- **************************************************************************/
-
-#ifndef INTEL_EXTENSIONS_H
-#define INTEL_EXTENSIONS_H
-
-
-extern void
-intelInitExtensions(struct gl_context *ctx);
-
-#endif