diff options
author | Chia-I Wu <[email protected]> | 2014-10-30 10:03:17 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-11-06 10:42:19 +0800 |
commit | 1d5194769371767d046210df83c430a448bb3a53 (patch) | |
tree | 4b47e58ead5c932a8cc760dd52725ee837cd3712 /src/gallium/drivers/ilo/shader | |
parent | 99742998fc3a4520c9106f4ef5cc1246e38a35a9 (diff) |
ilo: add kernel queries for compute shaders
We need to know the local/input/private sizes and others. This is not
complete. We need many others for CURBE setup.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ilo/shader')
-rw-r--r-- | src/gallium/drivers/ilo/shader/ilo_shader_internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/shader/ilo_shader_internal.h b/src/gallium/drivers/ilo/shader/ilo_shader_internal.h index 98ec8dd0e04..c55fde78ef0 100644 --- a/src/gallium/drivers/ilo/shader/ilo_shader_internal.h +++ b/src/gallium/drivers/ilo/shader/ilo_shader_internal.h @@ -138,9 +138,12 @@ struct ilo_shader { int rt_base, rt_count; int tex_base, tex_count; int const_base, const_count; + int res_base, res_count; int gen6_so_base, gen6_so_count; + int global_base, global_count; + int total_count; } bt; |