diff options
author | Timothy Arceri <[email protected]> | 2016-10-03 10:39:28 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-10-03 15:29:51 +1100 |
commit | b67633ce5e3ca29526f8378168ec312aa80c2861 (patch) | |
tree | adeb24991db3a9803099663504f9a2090da35ffb /src/intel/common/gen_device_info.h | |
parent | da274ba5f88ca76bb2e4369967cea381b9f219e4 (diff) |
i965: rename max_hs_* variables to max_tcs_*
Using consistent naming allows us to create macros more easily.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/common/gen_device_info.h')
-rw-r--r-- | src/intel/common/gen_device_info.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/common/gen_device_info.h b/src/intel/common/gen_device_info.h index 8b68a011ea4..40258d4239f 100644 --- a/src/intel/common/gen_device_info.h +++ b/src/intel/common/gen_device_info.h @@ -94,7 +94,7 @@ struct gen_device_info */ unsigned num_slices; unsigned max_vs_threads; /**< Maximum Vertex Shader threads */ - unsigned max_hs_threads; /**< Maximum Hull Shader threads */ + unsigned max_tcs_threads; /**< Maximum Hull Shader threads */ unsigned max_ds_threads; /**< Maximum Domain Shader threads */ unsigned max_gs_threads; /**< Maximum Geometry Shader threads. */ /** @@ -135,7 +135,7 @@ struct gen_device_info unsigned size; unsigned min_vs_entries; unsigned max_vs_entries; - unsigned max_hs_entries; + unsigned max_tcs_entries; unsigned min_ds_entries; unsigned max_ds_entries; unsigned max_gs_entries; |