blob: 7873648e175bb2b84229a6df3d564b9acf88f947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef GRAPH_H
#define GRAPH_H
#include "ultra64.h"
#include "fault.h"
struct GraphicsContext;
extern OSThread graphThread;
void func_800D3E14_jp(struct GraphicsContext *gfxCtx);
void func_800D3E40_jp(struct GraphicsContext *gfxCtx);
void graph_proc(void* arg);
extern FaultClient sGraphFaultClient;
extern FaultAddrConvClient sGraphFaultAddrConvClient;
extern struct GraphicsContext graph_class;
#endif
|