mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
f319c81250
* graph_proc * game_get_next_game_dlftbl * graph_ct * func_800D38E0_jp * func_800D3C94_jp * graph_dt * graph_main * graph_setup_double_buffer * graph_task_set00 WIP * graph_draw_finish * func_800D3E40_jp * func_800D3E14_jp * Some cleanup * Fix m2ctx.py * graph_task_set00
21 lines
412 B
C
21 lines
412 B
C
#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
|