nir: Move nir_lower_mediump_outputs from ir3
[mesa.git] / src / compiler / nir / nir_constant_expressions.h
index 97997f2e5140b0d59027a79323f3c3a2c1f837e4..6450d5c3d03f38f20e81cf2959f9351ed8d1be04 100644 (file)
  *
  */
 
+#ifndef NIR_CONSTANT_EXPRESSIONS_H
+#define NIR_CONSTANT_EXPRESSIONS_H
+
 #include "nir.h"
 
-nir_const_value nir_eval_const_opcode(nir_op op, unsigned num_components,
-                                      nir_const_value *src);
+void nir_eval_const_opcode(nir_op op, nir_const_value *dest,
+                           unsigned num_components, unsigned bit_size,
+                           nir_const_value **src,
+                           unsigned float_controls_execution_mode);
+
+#endif /* NIR_CONSTANT_EXPRESSIONS_H */