2016-10-13 15:24:51 +00:00
|
|
|
//========================================================================
|
2017-02-28 19:27:10 +00:00
|
|
|
// GLFW 3.3 - www.glfw.org
|
2016-10-13 15:24:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2016 Google Inc.
|
2019-04-15 18:50:00 +00:00
|
|
|
// Copyright (c) 2016-2019 Camilla Löwy <elmindreda@glfw.org>
|
2016-10-13 15:24:51 +00:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
2016-08-30 22:53:19 +00:00
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2018-02-24 20:53:39 +00:00
|
|
|
void _glfwPlatformFreeMonitor(_GLFWmonitor* monitor)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-10-13 15:24:51 +00:00
|
|
|
void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos)
|
|
|
|
{
|
|
|
|
}
|
2016-08-30 22:53:19 +00:00
|
|
|
|
2017-08-29 17:19:00 +00:00
|
|
|
void _glfwPlatformGetMonitorContentScale(_GLFWmonitor* monitor,
|
|
|
|
float* xscale, float* yscale)
|
|
|
|
{
|
|
|
|
if (xscale)
|
|
|
|
*xscale = 1.f;
|
|
|
|
if (yscale)
|
|
|
|
*yscale = 1.f;
|
|
|
|
}
|
|
|
|
|
2019-02-25 13:01:08 +00:00
|
|
|
void _glfwPlatformGetMonitorWorkarea(_GLFWmonitor* monitor,
|
|
|
|
int* xpos, int* ypos,
|
|
|
|
int* width, int* height)
|
2017-04-06 19:48:08 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-08-30 22:53:19 +00:00
|
|
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|
|
|
{
|
2016-10-13 15:24:51 +00:00
|
|
|
return NULL;
|
2016-08-30 22:53:19 +00:00
|
|
|
}
|
|
|
|
|
2016-10-13 15:24:51 +00:00
|
|
|
void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
|
|
|
{
|
|
|
|
}
|
2016-08-30 22:53:19 +00:00
|
|
|
|
2018-12-19 13:53:01 +00:00
|
|
|
GLFWbool _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp)
|
2016-10-13 15:24:51 +00:00
|
|
|
{
|
2018-12-19 13:53:01 +00:00
|
|
|
return GLFW_FALSE;
|
2016-10-13 15:24:51 +00:00
|
|
|
}
|
2016-08-30 22:53:19 +00:00
|
|
|
|
2016-10-13 15:24:51 +00:00
|
|
|
void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
}
|
2016-08-30 22:53:19 +00:00
|
|
|
|