summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/ilo/ilo_gpe.h
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2013-08-13 15:23:41 +0800
committerChia-I Wu <[email protected]>2013-08-13 15:24:58 +0800
commit8b5b5fe3944d75c5d3667516139e366d2207c22a (patch)
treee93773e8495f443516da0cbb9bb6f3073d16379d /src/gallium/drivers/ilo/ilo_gpe.h
parentf423eba46e080b975a2b8366b490d99dee4729ad (diff)
Revert "ilo: initialize constant buffer SURFACE_STATE early"
This reverts commit a9b800aa81cffdcaef2490ff49986099feae2663. With push constant support, the constructed SURFACE_STATE is unused and wasted. The change only slows things down.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_gpe.h')
-rw-r--r--src/gallium/drivers/ilo/ilo_gpe.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/gallium/drivers/ilo/ilo_gpe.h b/src/gallium/drivers/ilo/ilo_gpe.h
index 17b131b0bc1..f0768b9de5c 100644
--- a/src/gallium/drivers/ilo/ilo_gpe.h
+++ b/src/gallium/drivers/ilo/ilo_gpe.h
@@ -53,9 +53,6 @@
#define ILO_WM_CONST_SURFACE(i) (ILO_MAX_DRAW_BUFFERS + i)
#define ILO_WM_TEXTURE_SURFACE(i) (ILO_MAX_DRAW_BUFFERS + ILO_MAX_CONST_BUFFERS + i)
-#define ILO_GPE_VALID_GEN(dev, min_gen, max_gen) \
- assert((dev)->gen >= ILO_GEN(min_gen) && (dev)->gen <= ILO_GEN(max_gen))
-
struct ilo_buffer;
struct ilo_texture;
struct ilo_shader_state;
@@ -470,18 +467,6 @@ ilo_gpe_init_view_surface_for_texture(const struct ilo_dev_info *dev,
}
}
-static inline void
-ilo_gpe_set_view_surface_bo(const struct ilo_dev_info *dev,
- struct intel_bo *bo, unsigned offset,
- struct ilo_view_surface *surf)
-{
- ILO_GPE_VALID_GEN(dev, 6, 7);
-
- /* do not increment reference count */
- surf->bo = bo;
- surf->payload[1] = offset;
-}
-
void
ilo_gpe_init_zs_surface(const struct ilo_dev_info *dev,
const struct ilo_texture *tex,