summaryrefslogtreecommitdiff
path: root/src/libultra_boot_O2/osViSwapBuffer.c
blob: 13995291de91d37c86e75d540763b0dbc59025ee (plain)
1
2
3
4
5
6
7
8
#include "global.h"

void osViSwapBuffer(void* vaddr) {
    u32 int_disabled = __osDisableInt();
    __osViNext->buffer = vaddr;
    __osViNext->state |= 0x10; // TODO: figure out what this flag means
    __osRestoreInt(int_disabled);
}