mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
43 lines
1.0 KiB
C
43 lines
1.0 KiB
C
|
#include "internal.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
////// GLFW platform API //////
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
_GLFWmonitor** _glfwPlatformGetMonitors(int* count)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
GLboolean _glfwPlatformIsSameMonitor(_GLFWmonitor* first, _GLFWmonitor* second)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp)
|
||
|
{
|
||
|
// TODO
|
||
|
fprintf(stderr, "_glfwPlatformGetGammaRamp not implemented yet\n");
|
||
|
}
|
||
|
|
||
|
void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp)
|
||
|
{
|
||
|
// TODO
|
||
|
fprintf(stderr, "_glfwPlatformSetGammaRamp not implemented yet\n");
|
||
|
}
|