i965: Remove useless gen6_blorp.h/gen7_blorp.h headers.
authorMatt Turner <mattst88@gmail.com>
Sun, 22 Nov 2015 23:04:45 +0000 (15:04 -0800)
committerMatt Turner <mattst88@gmail.com>
Tue, 24 Nov 2015 18:05:32 +0000 (10:05 -0800)
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/drivers/dri/i965/Makefile.sources
src/mesa/drivers/dri/i965/brw_blorp.cpp
src/mesa/drivers/dri/i965/brw_blorp.h
src/mesa/drivers/dri/i965/gen6_blorp.cpp
src/mesa/drivers/dri/i965/gen6_blorp.h [deleted file]
src/mesa/drivers/dri/i965/gen7_blorp.cpp
src/mesa/drivers/dri/i965/gen7_blorp.h [deleted file]

index 5a88d66a31b8270424049c696fe7b797ec2e38c9..5e805fa3531977ba5bf8b06836ecffafc53c9ac0 100644 (file)
@@ -162,7 +162,6 @@ i965_FILES = \
        brw_wm_state.c \
        brw_wm_surface_state.c \
        gen6_blorp.cpp \
-       gen6_blorp.h \
        gen6_cc.c \
        gen6_clip_state.c \
        gen6_depth_state.c \
@@ -180,7 +179,6 @@ i965_FILES = \
        gen6_vs_state.c \
        gen6_wm_state.c \
        gen7_blorp.cpp \
-       gen7_blorp.h \
        gen7_cs_state.c \
        gen7_disable.c \
        gen7_gs_state.c \
index df2969dbb768fb31f9ae25a4ce615cd689db978d..577b71e9fd292cb548361ed0719d8852fcb97194 100644 (file)
@@ -28,8 +28,6 @@
 #include "brw_blorp.h"
 #include "brw_defines.h"
 #include "brw_state.h"
-#include "gen6_blorp.h"
-#include "gen7_blorp.h"
 
 #define FILE_DEBUG_FLAG DEBUG_BLORP
 
index dd28d810f7f7cf9de53367c6408c5103ba7221c8..ae494f90fbd973306af0f2adff8906451d5a70aa 100644 (file)
@@ -238,6 +238,13 @@ public:
 void
 brw_blorp_exec(struct brw_context *brw, const brw_blorp_params *params);
 
+void
+gen6_blorp_exec(struct brw_context *brw,
+                const brw_blorp_params *params);
+
+void
+gen7_blorp_exec(struct brw_context *brw,
+                const brw_blorp_params *params);
 
 /**
  * Parameters for a HiZ or depth resolve operation.
index 74f3a70a64e4ae9cb835f31ffb9f63adec7cb04e..23fea5a54e3e78162cba462c671f9661f6696d9f 100644 (file)
@@ -32,7 +32,6 @@
 #include "brw_state.h"
 
 #include "brw_blorp.h"
-#include "gen6_blorp.h"
 
 /**
  * \name Constants for BLORP VBO
diff --git a/src/mesa/drivers/dri/i965/gen6_blorp.h b/src/mesa/drivers/dri/i965/gen6_blorp.h
deleted file mode 100644 (file)
index 1b273a4..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright © 2011 Intel Corporation
- *
- * 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, sublicense,
- * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS 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.
- */
-
-#pragma once
-
-#include <stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct intel_mipmap_tree;
-
-#ifdef __cplusplus
-}
-
-void
-gen6_blorp_exec(struct brw_context *brw,
-                const brw_blorp_params *params);
-
-#endif
index f90e78e43c739a1c68a9da64c1e97b292759b1f2..4c6ab0c68bf6ca6160ec7fe793a97370fc5529cd 100644 (file)
@@ -32,7 +32,6 @@
 #include "brw_state.h"
 
 #include "brw_blorp.h"
-#include "gen7_blorp.h"
 
 
 /* 3DSTATE_URB_VS
diff --git a/src/mesa/drivers/dri/i965/gen7_blorp.h b/src/mesa/drivers/dri/i965/gen7_blorp.h
deleted file mode 100644 (file)
index 6443430..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright © 2011 Intel Corporation
- *
- * 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, sublicense,
- * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS 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.
- */
-
-#pragma once
-
-#include <stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct intel_mipmap_tree;
-
-#ifdef __cplusplus
-}
-
-void
-gen7_blorp_exec(struct brw_context *brw,
-                const brw_blorp_params *params);
-
-#endif