mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 09:00:10 +01:00
glsl: fix is_integer_16_32
This shouldn't check for 64-bit...
Fixes: a052a9c277 ("glsl: handle int16 and uint16 types and add instructions for mediump")
Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10125>
This commit is contained in:
parent
0a7a61b2d7
commit
b718de746d
1 changed files with 1 additions and 1 deletions
|
|
@ -796,7 +796,7 @@ public:
|
||||||
*/
|
*/
|
||||||
bool is_integer_16_32() const
|
bool is_integer_16_32() const
|
||||||
{
|
{
|
||||||
return is_integer_16() || is_integer_32() || is_integer_64();
|
return is_integer_16() || is_integer_32();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue