2011-05-07 08:53:50 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW - An OpenGL library
|
|
|
|
// Platform: X11 (Unix)
|
|
|
|
// API version: 3.0
|
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
|
|
|
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
#include <limits.h>
|
2011-05-07 08:53:50 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Finds the video mode closest in size to the specified desired size
|
|
|
|
//========================================================================
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
int _glfwGetClosestVideoMode(_GLFWmonitor* monitor, int* width, int* height)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
int i, match, bestmatch;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
int sizecount, bestsize;
|
|
|
|
XRRScreenConfiguration* sc;
|
|
|
|
XRRScreenSize* sizelist;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
sc = XRRGetScreenInfo(_glfw.x11.display, _glfw.x11.root);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
sizelist = XRRConfigSizes(sc, &sizecount);
|
|
|
|
|
|
|
|
// Find the best matching mode
|
|
|
|
bestsize = -1;
|
|
|
|
bestmatch = INT_MAX;
|
|
|
|
for (i = 0; i < sizecount; i++)
|
|
|
|
{
|
|
|
|
match = (*width - sizelist[i].width) *
|
|
|
|
(*width - sizelist[i].width) +
|
|
|
|
(*height - sizelist[i].height) *
|
|
|
|
(*height - sizelist[i].height);
|
|
|
|
if (match < bestmatch)
|
|
|
|
{
|
|
|
|
bestmatch = match;
|
|
|
|
bestsize = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bestsize != -1)
|
|
|
|
{
|
|
|
|
// Report width & height of best matching mode
|
|
|
|
*width = sizelist[bestsize].width;
|
|
|
|
*height = sizelist[bestsize].height;
|
|
|
|
}
|
|
|
|
|
|
|
|
XRRFreeScreenConfigInfo(sc);
|
|
|
|
|
|
|
|
if (bestsize != -1)
|
|
|
|
return bestsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default: Simply use the screen resolution
|
2013-01-02 00:40:42 +00:00
|
|
|
*width = DisplayWidth(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
*height = DisplayHeight(_glfw.x11.display, _glfw.x11.screen);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Change the current video mode
|
|
|
|
//========================================================================
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
void _glfwSetVideoModeMODE(_GLFWmonitor* monitor, int mode)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
XRRScreenConfiguration* sc;
|
|
|
|
Window root;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
root = _glfw.x11.root;
|
|
|
|
sc = XRRGetScreenInfo(_glfw.x11.display, root);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
// Remember old size and flag that we have changed the mode
|
2013-01-02 16:29:24 +00:00
|
|
|
if (!monitor->x11.modeChanged)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
monitor->x11.oldSizeID = XRRConfigCurrentConfiguration(sc, &monitor->x11.oldRotation);
|
|
|
|
monitor->x11.oldWidth = DisplayWidth(_glfw.x11.display,
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.x11.screen);
|
2013-01-02 16:29:24 +00:00
|
|
|
monitor->x11.oldHeight = DisplayHeight(_glfw.x11.display,
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.x11.screen);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
monitor->x11.modeChanged = GL_TRUE;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
XRRSetScreenConfig(_glfw.x11.display,
|
2012-12-31 01:06:19 +00:00
|
|
|
sc,
|
|
|
|
root,
|
|
|
|
mode,
|
|
|
|
RR_Rotate_0,
|
|
|
|
CurrentTime);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
XRRFreeScreenConfigInfo(sc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Change the current video mode
|
|
|
|
//========================================================================
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
void _glfwSetVideoMode(_GLFWmonitor* monitor, int* width, int* height)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
int bestmode;
|
|
|
|
|
|
|
|
// Find a best match mode
|
2013-01-02 16:29:24 +00:00
|
|
|
bestmode = _glfwGetClosestVideoMode(monitor, width, height);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
// Change mode
|
2013-01-02 16:29:24 +00:00
|
|
|
_glfwSetVideoModeMODE(monitor, bestmode);
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Restore the previously saved (original) video mode
|
|
|
|
//========================================================================
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
void _glfwRestoreVideoMode(_GLFWmonitor* monitor)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
if (!monitor->x11.modeChanged)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (_glfw.x11.randr.available)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
XRRScreenConfiguration* sc;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
sc = XRRGetScreenInfo(_glfw.x11.display, _glfw.x11.root);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
XRRSetScreenConfig(_glfw.x11.display,
|
|
|
|
sc,
|
|
|
|
_glfw.x11.root,
|
|
|
|
monitor->x11.oldSizeID,
|
|
|
|
monitor->x11.oldRotation,
|
|
|
|
CurrentTime);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
XRRFreeScreenConfigInfo(sc);
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
2013-01-02 16:29:24 +00:00
|
|
|
|
|
|
|
monitor->x11.modeChanged = GL_FALSE;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-16 17:11:31 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-01-12 17:10:18 +00:00
|
|
|
_GLFWmonitor** _glfwPlatformGetMonitors(int* found)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2012-09-12 17:35:52 +00:00
|
|
|
_GLFWmonitor** monitors = NULL;
|
2011-10-03 16:48:59 +00:00
|
|
|
|
2013-01-12 17:10:18 +00:00
|
|
|
*found = 0;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2012-09-12 17:35:52 +00:00
|
|
|
int i;
|
2012-12-22 22:35:45 +00:00
|
|
|
RROutput primary;
|
2012-09-12 17:35:52 +00:00
|
|
|
XRRScreenResources* sr;
|
2011-05-07 08:53:50 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
primary = XRRGetOutputPrimary(_glfw.x11.display, _glfw.x11.root);
|
2012-12-22 22:35:45 +00:00
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
monitors = (_GLFWmonitor**) calloc(sr->noutput, sizeof(_GLFWmonitor*));
|
|
|
|
if (!monitors)
|
|
|
|
{
|
2012-10-21 21:55:41 +00:00
|
|
|
XRRFreeScreenResources(sr);
|
|
|
|
|
2012-12-31 20:13:10 +00:00
|
|
|
_glfwInputError(GLFW_OUT_OF_MEMORY, NULL);
|
2012-09-12 17:35:52 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2011-05-07 08:53:50 +00:00
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
for (i = 0; i < sr->noutput; i++)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2012-09-12 17:35:52 +00:00
|
|
|
XRROutputInfo* oi;
|
|
|
|
XRRCrtcInfo* ci;
|
2011-05-07 08:53:50 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
oi = XRRGetOutputInfo(_glfw.x11.display, sr, sr->outputs[i]);
|
2012-09-12 17:35:52 +00:00
|
|
|
if (oi->connection != RR_Connected)
|
|
|
|
{
|
|
|
|
XRRFreeOutputInfo(oi);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, oi->crtc);
|
2011-05-07 08:53:50 +00:00
|
|
|
|
2013-01-12 17:10:18 +00:00
|
|
|
monitors[*found] = _glfwCreateMonitor(oi->name,
|
|
|
|
sr->outputs[i] == primary,
|
|
|
|
oi->mm_width, oi->mm_height,
|
|
|
|
ci->x, ci->y);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
|
|
|
XRRFreeCrtcInfo(ci);
|
|
|
|
|
2013-01-12 17:10:18 +00:00
|
|
|
if (!monitors[*found])
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2012-09-12 17:35:52 +00:00
|
|
|
// TODO: wat
|
|
|
|
return NULL;
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
2012-09-12 17:35:52 +00:00
|
|
|
|
|
|
|
// This is retained until the monitor object is destroyed
|
2013-01-12 17:10:18 +00:00
|
|
|
monitors[*found]->x11.output = oi;
|
|
|
|
(*found)++;
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
}
|
2013-01-12 17:10:18 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int widthMM, heightMM;
|
|
|
|
|
|
|
|
monitors = (_GLFWmonitor**) calloc(1, sizeof(_GLFWmonitor*));
|
|
|
|
if (!monitors)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_OUT_OF_MEMORY, NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
widthMM = DisplayWidthMM(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
heightMM = DisplayHeightMM(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
|
|
|
|
monitors[0] = _glfwCreateMonitor("Display",
|
|
|
|
GL_TRUE,
|
|
|
|
widthMM, heightMM,
|
|
|
|
0, 0);
|
|
|
|
|
|
|
|
*found = 1;
|
|
|
|
}
|
2012-01-30 11:33:32 +00:00
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
return monitors;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyMonitor(_GLFWmonitor* monitor)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
|
|
|
XRRFreeOutputInfo(monitor->x11.output);
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|
|
|
{
|
|
|
|
GLFWvidmode* result;
|
2012-12-27 20:13:04 +00:00
|
|
|
int depth, r, g, b;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
depth = DefaultDepth(_glfw.x11.display, _glfw.x11.screen);
|
2012-12-27 20:13:04 +00:00
|
|
|
_glfwSplitBPP(depth, &r, &g, &b);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
*found = 0;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
// Build array of available resolutions
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
2012-12-27 20:13:04 +00:00
|
|
|
{
|
|
|
|
XRRScreenResources* sr;
|
2013-01-02 00:40:42 +00:00
|
|
|
int i, j, count = monitor->x11.output->nmode;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
result = (GLFWvidmode*) malloc(sizeof(GLFWvidmode) * count);
|
2012-12-29 19:01:33 +00:00
|
|
|
if (!result)
|
|
|
|
{
|
2012-12-31 20:13:10 +00:00
|
|
|
_glfwInputError(GLFW_OUT_OF_MEMORY, NULL);
|
2012-12-29 19:01:33 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
for (i = 0; i < count; i++)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2012-12-27 20:13:04 +00:00
|
|
|
GLFWvidmode mode;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
for (j = 0; j < sr->nmode; j++)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (sr->modes[j].id == monitor->x11.output->modes[i])
|
2012-12-27 20:13:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
if (j == sr->nmode)
|
|
|
|
continue;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
mode.width = sr->modes[j].width;
|
|
|
|
mode.height = sr->modes[j].height;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
for (j = 0; j < *found; j++)
|
|
|
|
{
|
|
|
|
if (result[j].width == mode.width &&
|
|
|
|
result[j].height == mode.height)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
if (j < *found)
|
|
|
|
{
|
|
|
|
// This is a duplicate, so skip it
|
|
|
|
continue;
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
mode.redBits = r;
|
|
|
|
mode.greenBits = g;
|
|
|
|
mode.blueBits = b;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
result[*found] = mode;
|
2012-09-12 19:04:24 +00:00
|
|
|
(*found)++;
|
|
|
|
}
|
2012-12-27 20:13:04 +00:00
|
|
|
|
|
|
|
XRRFreeScreenResources(sr);
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
2013-01-12 17:10:18 +00:00
|
|
|
else
|
2012-12-27 20:13:04 +00:00
|
|
|
{
|
|
|
|
*found = 1;
|
2012-12-29 19:01:33 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
result = (GLFWvidmode*) malloc(sizeof(GLFWvidmode));
|
2012-12-29 19:01:33 +00:00
|
|
|
if (!result)
|
|
|
|
{
|
2012-12-31 20:13:10 +00:00
|
|
|
_glfwInputError(GLFW_OUT_OF_MEMORY, NULL);
|
2012-12-29 19:01:33 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-12-27 20:13:04 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
result[0].width = DisplayWidth(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
result[0].height = DisplayHeight(_glfw.x11.display, _glfw.x11.screen);
|
2012-12-27 20:13:04 +00:00
|
|
|
result[0].redBits = r;
|
|
|
|
result[0].greenBits = g;
|
|
|
|
result[0].blueBits = b;
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
2012-10-21 22:05:55 +00:00
|
|
|
{
|
|
|
|
XRRScreenResources* sr;
|
|
|
|
XRRCrtcInfo* ci;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
2012-10-21 22:05:55 +00:00
|
|
|
if (!sr)
|
|
|
|
{
|
2012-12-31 20:13:10 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: Failed to retrieve RandR screen resources");
|
2012-10-21 22:05:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.output->crtc);
|
2012-10-21 22:05:55 +00:00
|
|
|
if (!ci)
|
|
|
|
{
|
|
|
|
XRRFreeScreenResources(sr);
|
|
|
|
|
2012-12-31 20:13:10 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: Failed to retrieve RandR crtc info");
|
2012-10-21 22:05:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mode->width = ci->width;
|
|
|
|
mode->height = ci->height;
|
|
|
|
|
|
|
|
XRRFreeCrtcInfo(ci);
|
|
|
|
XRRFreeScreenResources(sr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
mode->width = DisplayWidth(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
mode->height = DisplayHeight(_glfw.x11.display, _glfw.x11.screen);
|
2012-10-21 22:05:55 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfwSplitBPP(DefaultDepth(_glfw.x11.display, _glfw.x11.screen),
|
2012-09-12 19:04:24 +00:00
|
|
|
&mode->redBits, &mode->greenBits, &mode->blueBits);
|
|
|
|
}
|
|
|
|
|