Replaced display with monitor in monitor related api.

This commit is contained in:
Marcel Metz
2011-10-03 03:24:35 -04:00
parent 58d4323ece
commit 426df42d00
13 changed files with 124 additions and 124 deletions
+7 -7
View File
@@ -202,7 +202,7 @@ typedef DWORD (WINAPI * TIMEGETTIME_T) (void);
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowWin32 Win32
#define _GLFW_PLATFORM_LIBRARY_STATE _GLFWlibraryWin32 Win32
#define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextWGL WGL
#define _GLFW_PLATFORM_DISPLAY_STATE _GLFWdisplayWin32 Win32
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorWin32 Win32
//========================================================================
@@ -312,12 +312,12 @@ typedef struct _GLFWlibraryWin32
} _GLFWlibraryWin32;
//------------------------------------------------------------------------
// Platform-specific display structure
// Platform-specific monitor structure
//------------------------------------------------------------------------
typedef struct _GLFWdisplayWin32
typedef struct _GLFWmonitorWin32
{
char DeviceName[32];
} _GLFWdisplayWin32;
} _GLFWmonitorWin32;
//========================================================================
// Prototypes for platform specific internal functions
@@ -326,9 +326,9 @@ typedef struct _GLFWdisplayWin32
// Time
void _glfwInitTimer(void);
// Display support
void _glfwInitDisplays(void);
void _glfwTerminateDisplays(void);
// Monitor support
void _glfwInitMonitors(void);
void _glfwTerminateMonitors(void);
// Fullscreen support
void _glfwSetVideoMode(int* width, int* height,