You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
Co-authored-by: Louis <35883445+louist103@users.noreply.github.com> Co-authored-by: Nicholas Estelami <NEstelami@users.noreply.github.com> Co-authored-by: Random06457 <28494085+Random06457@users.noreply.github.com>
21 lines
401 B
C
21 lines
401 B
C
#ifndef BUFFERS_H
|
|
#define BUFFERS_H
|
|
|
|
#include "z64.h"
|
|
#include "macros.h"
|
|
#include "stack.h"
|
|
|
|
|
|
extern u8 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE];
|
|
extern STACK(gGfxSPTaskStack, 0x400);
|
|
extern GfxPool gGfxPools[2];
|
|
extern u8* gAudioHeap;
|
|
extern u8* gSystemHeap;
|
|
|
|
extern u8 gPictoPhotoI8[PICTO_PHOTO_SIZE];
|
|
extern u8 D_80784600[0x56200];
|
|
extern u16 gFramebuffer0[SCREEN_HEIGHT][SCREEN_WIDTH];
|
|
|
|
|
|
#endif
|