mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-01-25 03:05:11 +00:00
0192bd6617
Signed-off-by: Hector Martin <marcan@marcan.st>
16 lines
326 B
C
16 lines
326 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef __GXF_H__
|
|
#define __GXF_H__
|
|
|
|
#include "types.h"
|
|
|
|
bool gxf_enabled(void);
|
|
bool in_gl12(void);
|
|
|
|
void gxf_init(void);
|
|
|
|
uint64_t gl1_call(void *func, uint64_t a, uint64_t b, uint64_t c, uint64_t d);
|
|
uint64_t gl2_call(void *func, uint64_t a, uint64_t b, uint64_t c, uint64_t d);
|
|
|
|
#endif
|