From: Marek Olšák Date: Wed, 1 Jul 2020 17:11:33 +0000 (-0400) Subject: glsl: lower builtins to mediump that ignore precision of certain parameters X-Git-Tag: upstream/21.0.0~7844 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8fcf8e7fd401346ff32f0179ab96ee6b7739e0bb;p=platform%2Fupstream%2Fmesa.git glsl: lower builtins to mediump that ignore precision of certain parameters Reviewed-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/compiler/glsl/lower_precision.cpp b/src/compiler/glsl/lower_precision.cpp index e997532..f1ac00b 100644 --- a/src/compiler/glsl/lower_precision.cpp +++ b/src/compiler/glsl/lower_precision.cpp @@ -499,10 +499,28 @@ is_lowerable_builtin(ir_call *ir, assert(ir->callee->return_precision == GLSL_PRECISION_NONE); + /* Number of parameters to check if they are lowerable. */ + unsigned check_parameters = ir->actual_parameters.length(); + + /* Interpolation functions only consider the precision of the interpolant. */ + /* Bitfield functions ignore the precision of "offset" and "bits". */ + if (!strcmp(ir->callee_name(), "interpolateAtOffset") || + !strcmp(ir->callee_name(), "interpolateAtSample") || + !strcmp(ir->callee_name(), "bitfieldExtract")) { + check_parameters = 1; + } else if (!strcmp(ir->callee_name(), "bitfieldInsert")) { + check_parameters = 2; + } + foreach_in_list(ir_rvalue, param, &ir->actual_parameters) { + if (!check_parameters) + break; + if (!param->as_constant() && _mesa_set_search(lowerable_rvalues, param) == NULL) return false; + + --check_parameters; } return true; diff --git a/src/compiler/glsl/tests/lower_precision_test.py b/src/compiler/glsl/tests/lower_precision_test.py index 3fa7405..2fc8f19 100644 --- a/src/compiler/glsl/tests/lower_precision_test.py +++ b/src/compiler/glsl/tests/lower_precision_test.py @@ -1459,6 +1459,85 @@ TESTS = [ } """, r'expression uint packSnorm4x8 \(expression vec4'), + Test("interpolateAtCentroid", + """ + #version 320 es + precision mediump float; + precision mediump int; + + in float val; + out float color; + + void main() + { + color = interpolateAtCentroid(val) + 1.0; + } + """, + r'expression float16_t interpolate_at_centroid \(expression float16_t'), + Test("interpolateAtOffset", + """ + #version 320 es + precision mediump float; + precision mediump int; + + uniform highp vec2 offset; + in float val; + out float color; + + void main() + { + color = interpolateAtOffset(val, offset) + 1.0; + } + """, + r'expression float16_t interpolate_at_offset \(expression float16_t'), + Test("interpolateAtSample", + """ + #version 320 es + precision mediump float; + precision mediump int; + + uniform highp int sample_index; + in float val; + out float color; + + void main() + { + color = interpolateAtSample(val, sample_index) + 1.0; + } + """, + r'expression float16_t interpolate_at_sample \(expression float16_t'), + Test("bitfieldExtract", + """ + #version 310 es + precision mediump float; + precision mediump int; + + uniform highp int offset, bits; + uniform int val; + out int color; + + void main() + { + color = bitfieldExtract(val, offset, bits) + 1; + } + """, + r'expression int16_t bitfield_extract \(expression int16_t'), + Test("bitfieldInsert", + """ + #version 310 es + precision mediump float; + precision mediump int; + + uniform highp int offset, bits; + uniform int val, val2; + out int color; + + void main() + { + color = bitfieldInsert(val, val2, offset, bits) + 1; + } + """, + r'expression int16_t bitfield_insert \(expression int16_t'), ]