1 /* -*- mesa-c++ -*- 2 * Copyright 2019 Collabora LTD 3 * Author: Gert Wollny <[email protected]> 4 * SPDX-License-Identifier: MIT 5 */ 6 7 #ifndef SFN_NIR_LOWER_FS_OUT_TO_VECTOR_H 8 #define SFN_NIR_LOWER_FS_OUT_TO_VECTOR_H 9 10 #include "nir.h" 11 12 namespace r600 { 13 14 bool 15 r600_lower_fs_out_to_vector(nir_shader *sh); 16 17 } 18 19 #endif // SFN_NIR_LOWER_FS_OUT_TO_VECTOR_H 20