Files
third_party_mesa3d/src/asahi/compiler/agx_nir.h

17 lines
341 B
C
Raw Normal View History

/*
* Copyright 2023 Alyssa Rosenzweig
* SPDX-License-Identifier: MIT
*/
#ifndef AGX_NIR_H
#define AGX_NIR_H
#include <stdbool.h>
struct nir_shader;
bool agx_nir_opt_ixor_bcsel(struct nir_shader *shader);
bool agx_nir_lower_algebraic_late(struct nir_shader *shader);
bool agx_nir_fuse_algebraic_late(struct nir_shader *shader);
#endif