pureikyubu/SRC/DolwinVideo/Gpl.cpp
2020-04-01 15:41:10 +03:00

18 lines
334 B
C++

// graphics platform interface
#include "pch.h"
Vertex tri[3]; // triangle to be rendered
BOOL frame_done=1;
// rendering complete, swap buffers, sync to vretrace
void GPFrameDone()
{
GL_EndFrame();
frame_done = 1;
}
// make screenshot
void GPMakeSnapshot(char *path)
{
GL_MakeSnapshot(path);
}