freedreno/a6xx: add fd6_emit_init_screen()

Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
Rob Clark 2019-07-31 18:13:38 -07:00
parent e89255b0a5
commit 566f2281c5
3 changed files with 9 additions and 0 deletions

View File

@ -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)
{

View File

@ -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

View File

@ -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);
}