summaryrefslogtreecommitdiff
path: root/src/libultra/io/viswapbuf.c
blob: e1e42922d200e08602eb71783697c2eb12e4a93e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "ultra64.h"
#include "ultra64/viint.h"

void osViSwapBuffer(void* frameBufPtr) {
    u32 prevInt = __osDisableInt();

    __osViNext->framep = frameBufPtr;
    __osViNext->state |= VI_STATE_BUFFER_SET;

    __osRestoreInt(prevInt);
}