diff options
author | Chia-I Wu <[email protected]> | 2014-10-29 07:49:53 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-11-06 10:26:34 +0800 |
commit | 510a1a9012fc0d915033b7f1f18053e1b176ce85 (patch) | |
tree | 8ffac133b41c85d30ab68933ccf3bbcc216a05bb /src/gallium/drivers/ilo/ilo_common.h | |
parent | 29253f44d00663c377a6b4f45511123a92abfd6a (diff) |
ilo: add eu_count and thread_count to ilo_dev_info
They will be used to report compute params or program compute states.
thread_count can also be used for 3DSTATE_VS.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_common.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/ilo_common.h b/src/gallium/drivers/ilo/ilo_common.h index f83aa91657f..23a70805c2a 100644 --- a/src/gallium/drivers/ilo/ilo_common.h +++ b/src/gallium/drivers/ilo/ilo_common.h @@ -86,6 +86,8 @@ struct ilo_dev_info { int gen_opaque; int gt; + int eu_count; + int thread_count; int urb_size; }; |