summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_atom.c
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2016-01-08 19:58:33 -0500
committerIlia Mirkin <[email protected]>2016-02-15 22:22:33 -0500
commit78093167b18ac9cb40e449916e85590d595ab297 (patch)
tree9f073410513c9f0e833fc34e3d09a4d81ee7d888 /src/mesa/state_tracker/st_atom.c
parente2a1ec5f0f0314915fdfc9a8ef93f3789f356404 (diff)
st/mesa: add an image atom for shader images
Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Marek Olšák <[email protected]> Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_atom.c')
-rw-r--r--src/mesa/state_tracker/st_atom.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_atom.c b/src/mesa/state_tracker/st_atom.c
index 8a04d747b13..622621bdcbb 100644
--- a/src/mesa/state_tracker/st_atom.c
+++ b/src/mesa/state_tracker/st_atom.c
@@ -85,6 +85,11 @@ static const struct st_tracked_state *render_atoms[] =
&st_bind_tes_ssbos,
&st_bind_fs_ssbos,
&st_bind_gs_ssbos,
+ &st_bind_vs_images,
+ &st_bind_tcs_images,
+ &st_bind_tes_images,
+ &st_bind_gs_images,
+ &st_bind_fs_images,
&st_update_pixel_transfer,
&st_update_tess,
@@ -105,6 +110,7 @@ static const struct st_tracked_state *compute_atoms[] =
&st_bind_cs_ubos,
&st_bind_cs_atomics,
&st_bind_cs_ssbos,
+ &st_bind_cs_images,
};