freedreno/a6xx: remove unused fxns
authorRob Clark <robdclark@gmail.com>
Fri, 5 Oct 2018 13:14:59 +0000 (09:14 -0400)
committerRob Clark <robdclark@gmail.com>
Mon, 8 Oct 2018 21:50:26 +0000 (17:50 -0400)
Signed-off-by: Rob Clark <robdclark@gmail.com>
src/gallium/drivers/freedreno/a6xx/fd6_context.h
src/gallium/drivers/freedreno/a6xx/fd6_emit.h

index 9676a2ed9554c71ff323ed618edf891a52f0aa4d..819c55c89e5a33c6b893558401dfe959ef3f89ee 100644 (file)
@@ -115,18 +115,6 @@ fd6_context(struct fd_context *ctx)
 struct pipe_context *
 fd6_context_create(struct pipe_screen *pscreen, void *priv, unsigned flags);
 
-/* helper for places where we need to stall CP to wait for previous draws: */
-static inline void
-fd6_emit_flush(struct fd_context *ctx, struct fd_ringbuffer *ring)
-{
-       OUT_PKT7(ring, CP_EVENT_WRITE, 4);
-       OUT_RING(ring, CACHE_FLUSH_TS);
-       OUT_RELOCW(ring, fd6_context(ctx)->blit_mem, 0, 0, 0);  /* ADDR_LO/HI */
-       OUT_RING(ring, 0x00000000);
-
-       OUT_WFI5(ring);
-}
-
 static inline void
 emit_marker6(struct fd_ringbuffer *ring, int scratch_idx)
 {
index d50401327e4898ebece0a49d15ef76acb9802532..45e9f2ddc51a7c0e4e7140c4b53b988a1c331a39 100644 (file)
@@ -65,13 +65,6 @@ struct fd6_emit {
        unsigned streamout_mask;
 };
 
-static inline enum a6xx_color_fmt fd6_emit_format(struct pipe_surface *surf)
-{
-       if (!surf)
-               return 0;
-       return fd6_pipe2color(surf->format);
-}
-
 static inline const struct ir3_shader_variant *
 fd6_emit_get_vp(struct fd6_emit *emit)
 {