mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 13:20:14 +01:00
23 lines
392 B
C
23 lines
392 B
C
|
|
/*
|
||
|
|
* Copyright 2024 Intel Corporation
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef ELK_NIR_OPTIONS_H
|
||
|
|
#define ELK_NIR_OPTIONS_H
|
||
|
|
|
||
|
|
#include "nir.h"
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
extern const struct nir_shader_compiler_options elk_scalar_nir_options;
|
||
|
|
extern const struct nir_shader_compiler_options elk_vector_nir_options;
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* ELK_NIR_OPTIONS_H */
|