summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_urb.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-02-14 10:44:43 +1000
committerDave Airlie <airlied@redhat.com>2008-02-14 10:44:43 +1000
commiteb9da9706ee060a8e4bb5c4fa133ab06dc6b5a53 (patch)
tree3b58022e67a9de7aaf5b80a8cc763ada7618d501 /src/mesa/drivers/dri/i965/brw_urb.c
parent85063f14ea431b586d710f249563fc73481552c7 (diff)
downloadexternal_mesa3d-eb9da9706ee060a8e4bb5c4fa133ab06dc6b5a53.zip
external_mesa3d-eb9da9706ee060a8e4bb5c4fa133ab06dc6b5a53.tar.gz
external_mesa3d-eb9da9706ee060a8e4bb5c4fa133ab06dc6b5a53.tar.bz2
i965: remove unused hal hooks
These don't appear to have ever been used.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_urb.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_urb.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_urb.c b/src/mesa/drivers/dri/i965/brw_urb.c
index 4ca6e99..cf805ce 100644
--- a/src/mesa/drivers/dri/i965/brw_urb.c
+++ b/src/mesa/drivers/dri/i965/brw_urb.c
@@ -35,7 +35,6 @@
#include "brw_context.h"
#include "brw_state.h"
#include "brw_defines.h"
-#include "brw_hal.h"
#define VS 0
#define GS 1
@@ -81,20 +80,6 @@ static void recalculate_urb_fence( struct brw_context *brw )
GLuint vsize = brw->vs.prog_data->urb_entry_size;
GLuint sfsize = brw->sf.prog_data->urb_entry_size;
- static GLboolean (*hal_recalculate_urb_fence) (struct brw_context *brw);
- static GLboolean hal_tried;
-
- if (!hal_tried)
- {
- hal_recalculate_urb_fence = brw_hal_find_symbol ("intel_hal_recalculate_urb_fence");
- hal_tried = 1;
- }
- if (hal_recalculate_urb_fence)
- {
- if ((*hal_recalculate_urb_fence) (brw))
- return;
- }
-
if (csize < limits[CS].min_entry_size)
csize = limits[CS].min_entry_size;