blob: 55107eabfd559c33eae4d47a2aeac829c5fb097c [file] [log] [blame]
#include "_cgo_export.h"
GLFWmonitor *GetMonitorAtIndex(GLFWmonitor **monitors, int index) {
return monitors[index];
}
GLFWvidmode GetVidmodeAtIndex(GLFWvidmode *vidmodes, int index) {
return vidmodes[index];
}
void glfwSetMonitorCallbackCB() {
glfwSetMonitorCallback((GLFWmonitorfun)goMonitorCB);
}
unsigned int GetGammaAtIndex(unsigned short *color, int i) { return color[i]; }
void SetGammaAtIndex(unsigned short *color, int i, unsigned short value) {
color[i] = value;
}