diff options
author | Tom Stellard <[email protected]> | 2015-01-23 22:54:43 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2015-01-28 21:03:46 +0000 |
commit | 32206c5e560cea8c992ec983e7f5324493385ead (patch) | |
tree | c7c41bcfb5a79cd998f14a240a3cd825ddf9735c /src/gallium/drivers/radeonsi/si_shader.h | |
parent | 37559f8dfcaa9bcbfff2d9fa0a0bd2fe4564e635 (diff) |
radeonsi: Add radeon_shader_binary member to struct si_shader
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_shader.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.h b/src/gallium/drivers/radeonsi/si_shader.h index 08e344af444..6def5c71313 100644 --- a/src/gallium/drivers/radeonsi/si_shader.h +++ b/src/gallium/drivers/radeonsi/si_shader.h @@ -142,6 +142,7 @@ struct si_shader { struct si_pm4_state *pm4; struct r600_resource *bo; struct r600_resource *scratch_bo; + struct radeon_shader_binary binary; unsigned num_sgprs; unsigned num_vgprs; unsigned lds_size; |