Module: Mesa Branch: master Commit: 50175716d26273d273b54627715465e74cb45ae3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=50175716d26273d273b54627715465e74cb45ae3
Author: Vinson Lee <[email protected]> Date: Wed Nov 11 11:49:50 2020 -0800 microsoft/compiler: Add dxil_nir_lower_16bit_conv prototype. Fix missing-prototypes build error. src/microsoft/compiler/dxil_nir_algebraic.c:5761:1: error: no previous prototype for ‘dxil_nir_lower_16bit_conv’ [-Werror=missing-prototypes] 5761 | dxil_nir_lower_16bit_conv(nir_shader *shader) | ^~~~~~~~~~~~~~~~~~~~~~~~~ Fixes: b9c61379ab4 ("microsoft/compiler: translate nir to dxil") Signed-off-by: Vinson Lee <[email protected]> Reviewed-by: Erik Faye-Lund <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7559> --- src/microsoft/compiler/dxil_nir.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/microsoft/compiler/dxil_nir.h b/src/microsoft/compiler/dxil_nir.h index 49de8eb9934..b20b63257b9 100644 --- a/src/microsoft/compiler/dxil_nir.h +++ b/src/microsoft/compiler/dxil_nir.h @@ -29,6 +29,7 @@ #include "nir_builder.h" bool dxil_nir_lower_8bit_conv(nir_shader *shader); +bool dxil_nir_lower_16bit_conv(nir_shader *shader); bool dxil_nir_lower_x2b(nir_shader *shader); bool dxil_nir_lower_inot(nir_shader *shader); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
