From: Rob Clark Date: Thu, 1 Aug 2019 01:13:38 +0000 (-0700) Subject: freedreno/a6xx: add fd6_emit_init_screen() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=566f2281c5f1057a0de9633fad3a91906355731e;p=mesa.git freedreno/a6xx: add fd6_emit_init_screen() Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c index 181f647a2bb..fd2ceaa4730 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c +++ b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c @@ -1330,6 +1330,11 @@ fd6_framebuffer_barrier(struct fd_context *ctx) OUT_RING(ring, seqno); } +void +fd6_emit_init_screen(struct pipe_screen *pscreen) +{ +} + void fd6_emit_init(struct pipe_context *pctx) { diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_emit.h b/src/gallium/drivers/freedreno/a6xx/fd6_emit.h index 8c411328402..e46091a49bc 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_emit.h +++ b/src/gallium/drivers/freedreno/a6xx/fd6_emit.h @@ -234,6 +234,7 @@ void fd6_emit_cs_state(struct fd_context *ctx, struct fd_ringbuffer *ring, void fd6_emit_restore(struct fd_batch *batch, struct fd_ringbuffer *ring); +void fd6_emit_init_screen(struct pipe_screen *pscreen); void fd6_emit_init(struct pipe_context *pctx); static inline void diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_screen.c b/src/gallium/drivers/freedreno/a6xx/fd6_screen.c index 744737b5412..dddda98f121 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_screen.c +++ b/src/gallium/drivers/freedreno/a6xx/fd6_screen.c @@ -32,6 +32,7 @@ #include "fd6_screen.h" #include "fd6_blitter.h" #include "fd6_context.h" +#include "fd6_emit.h" #include "fd6_format.h" #include "fd6_resource.h" @@ -154,4 +155,6 @@ fd6_screen_init(struct pipe_screen *pscreen) screen->perfcntr_groups = a6xx_perfcntr_groups; screen->num_perfcntr_groups = a6xx_num_perfcntr_groups; } + + fd6_emit_init_screen(pscreen); }