Clarified names of gamma array helper functions.

This commit is contained in:
Camilla Berglund
2013-07-04 14:51:52 +02:00
parent 209a470a5f
commit d7512f529c
6 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -42,7 +42,7 @@
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
void _glfwAllocGammaRamp(GLFWgammaramp* ramp, unsigned int size)
void _glfwAllocGammaArrays(GLFWgammaramp* ramp, unsigned int size)
{
ramp->red = (unsigned short*) calloc(size, sizeof(unsigned short));
ramp->green = (unsigned short*) calloc(size, sizeof(unsigned short));
@@ -50,7 +50,7 @@ void _glfwAllocGammaRamp(GLFWgammaramp* ramp, unsigned int size)
ramp->size = size;
}
void _glfwFreeGammaRamp(GLFWgammaramp* ramp)
void _glfwFreeGammaArrays(GLFWgammaramp* ramp)
{
free(ramp->red);
free(ramp->green);
@@ -111,7 +111,7 @@ GLFWAPI const GLFWgammaramp* glfwGetGammaRamp(GLFWmonitor* handle)
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_glfwFreeGammaRamp(&monitor->currentRamp);
_glfwFreeGammaArrays(&monitor->currentRamp);
_glfwPlatformGetGammaRamp(monitor, &monitor->currentRamp);
return &monitor->currentRamp;