From 566f2281c5f1057a0de9633fad3a91906355731e Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Wed, 31 Jul 2019 18:13:38 -0700 Subject: [PATCH] freedreno/a6xx: add fd6_emit_init_screen() Signed-off-by: Rob Clark --- src/gallium/drivers/freedreno/a6xx/fd6_emit.c | 5 +++++ src/gallium/drivers/freedreno/a6xx/fd6_emit.h | 1 + src/gallium/drivers/freedreno/a6xx/fd6_screen.c | 3 +++ 3 files changed, 9 insertions(+) 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); } -- 2.30.2