diff options
Diffstat (limited to 'src/panfrost/include/panfrost-job.h')
-rw-r--r-- | src/panfrost/include/panfrost-job.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/panfrost/include/panfrost-job.h b/src/panfrost/include/panfrost-job.h index d9a3fe9327e..06a45d186d3 100644 --- a/src/panfrost/include/panfrost-job.h +++ b/src/panfrost/include/panfrost-job.h @@ -1280,12 +1280,13 @@ FIXED_16(float x) } struct mali_sampler_descriptor { - uint32_t filter_mode; + uint16_t filter_mode; /* Fixed point. Upper 8-bits is before the decimal point, although it * caps [0-31]. Lower 8-bits is after the decimal point: int(round(x * * 256)) */ + uint16_t lod_bias; uint16_t min_lod; uint16_t max_lod; |