diff options
author | Rob Clark <[email protected]> | 2017-08-24 09:30:25 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2017-10-24 12:56:51 -0400 |
commit | 9c32333a58e2792a062bd82374ea88222d718959 (patch) | |
tree | 3a5649e90a3b7d1796906d480f4330a89e0f2d2b /src/gallium/drivers/freedreno/freedreno_context.h | |
parent | 7e7096307aff680160f7924cf972718b404c6c88 (diff) |
freedreno: rename pipe -> vsc_pipe
To add context priority support we need to have an fd_pipe per context,
rather than per-screen. Which conflicts with existing ctx->pipe (which
is actually a visibility stream pipe (hw resource). So just rename it.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_context.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.h b/src/gallium/drivers/freedreno/freedreno_context.h index c045661468e..393b485a096 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.h +++ b/src/gallium/drivers/freedreno/freedreno_context.h @@ -246,7 +246,7 @@ struct fd_context { * means we'd always have to recalc tiles ever batch) */ struct fd_gmem_stateobj gmem; - struct fd_vsc_pipe pipe[16]; + struct fd_vsc_pipe vsc_pipe[16]; struct fd_tile tile[512]; /* which state objects need to be re-emit'd: */ |