mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 13:20:14 +01:00
Acked-by: Matt Turner <mattst88@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32534>
22 lines
493 B
C
22 lines
493 B
C
/*
|
|
* Copyright © 2015 Intel Corporation
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "elk_reg.h"
|
|
#include "nir.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum elk_conditional_mod elk_cmod_for_nir_comparison(nir_op op);
|
|
enum elk_lsc_opcode elk_lsc_aop_for_nir_intrinsic(const nir_intrinsic_instr *atomic);
|
|
enum elk_reg_type elk_type_for_nir_type(const struct intel_device_info *devinfo,
|
|
nir_alu_type type);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|