mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 13:50:11 +01:00
intel: Replace signed char with int8_t
Let's use modern stdint types. Reviewed-by: Caio Oliveira <caio.oliveira@intel.com> Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38918>
This commit is contained in:
parent
ca96f8517c
commit
b02a01c636
1 changed files with 2 additions and 2 deletions
|
|
@ -312,7 +312,7 @@ struct intel_vue_map {
|
|||
* additional processing is applied before storing them in the VUE), the
|
||||
* value is -1.
|
||||
*/
|
||||
signed char varying_to_slot[VARYING_SLOT_TESS_MAX];
|
||||
int8_t varying_to_slot[VARYING_SLOT_TESS_MAX];
|
||||
|
||||
/**
|
||||
* Map from VUE slot to gl_varying_slot value. For slots that do not
|
||||
|
|
@ -321,7 +321,7 @@ struct intel_vue_map {
|
|||
*
|
||||
* For slots that are not in use, the value is BRW_VARYING_SLOT_PAD.
|
||||
*/
|
||||
signed char slot_to_varying[VARYING_SLOT_TESS_MAX];
|
||||
int8_t slot_to_varying[VARYING_SLOT_TESS_MAX];
|
||||
|
||||
/**
|
||||
* Total number of VUE slots in use
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue