1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* Copyright 2015-2018 Egor Yusov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.
*
* In no event and under no legal theory, whether in tort (including negligence),
* contract, or otherwise, unless required by applicable law (such as deliberate
* and grossly negligent acts) or agreed to in writing, shall any Contributor be
* liable for any damages, including any direct, indirect, special, incidental,
* or consequential damages of any character arising as a result of this License or
* out of the use or inability to use the software (including but not limited to damages
* for loss of goodwill, work stoppage, computer failure or malfunction, or any and
* all other commercial damages or losses), even if such Contributor has been advised
* of the possibility of such damages.
*/
#include "pch.h"
#include "GLContextLinux.hpp"
#include "GraphicsTypes.h"
#include "GLTypeConversions.hpp"
namespace Diligent
{
GLContext::GLContext(const EngineGLCreateInfo& InitAttribs, DeviceCaps& deviceCaps, const struct SwapChainDesc* /*pSCDesc*/) :
m_Context(0),
m_WindowId(InitAttribs.Window.WindowId),
m_pDisplay(InitAttribs.Window.pDisplay)
{
auto CurrentCtx = glXGetCurrentContext();
if (CurrentCtx == 0)
{
LOG_ERROR_AND_THROW("No current GL context found!");
}
// Initialize GLEW
GLenum err = glewInit();
if (GLEW_OK != err)
LOG_ERROR_AND_THROW("Failed to initialize GLEW");
//Checking GL version
const GLubyte* GLVersionString = glGetString(GL_VERSION);
const GLubyte* GLRenderer = glGetString(GL_RENDERER);
Int32 MajorVersion = 0, MinorVersion = 0;
//Or better yet, use the GL3 way to get the version number
glGetIntegerv(GL_MAJOR_VERSION, &MajorVersion);
glGetIntegerv(GL_MINOR_VERSION, &MinorVersion);
LOG_INFO_MESSAGE(InitAttribs.Window.WindowId != 0 ? "Initialized OpenGL " : "Attached to OpenGL ", MajorVersion, '.', MinorVersion, " context (", GLVersionString, ", ", GLRenderer, ')');
// Under the standard filtering rules for cubemaps, filtering does not work across faces of the cubemap.
// This results in a seam across the faces of a cubemap. This was a hardware limitation in the past, but
// modern hardware is capable of interpolating across a cube face boundary.
// GL_TEXTURE_CUBE_MAP_SEAMLESS is not defined in OpenGLES
glEnable(GL_TEXTURE_CUBE_MAP_SEAMLESS);
if (glGetError() != GL_NO_ERROR)
LOG_ERROR_MESSAGE("Failed to enable seamless cubemap filtering");
// When GL_FRAMEBUFFER_SRGB is enabled, and if the destination image is in the sRGB colorspace
// then OpenGL will assume the shader's output is in the linear RGB colorspace. It will therefore
// convert the output from linear RGB to sRGB.
// Any writes to images that are not in the sRGB format should not be affected.
// Thus this setting should be just set once and left that way
glEnable(GL_FRAMEBUFFER_SRGB);
if (glGetError() != GL_NO_ERROR)
LOG_ERROR_MESSAGE("Failed to enable SRGB framebuffers");
deviceCaps.DevType = RENDER_DEVICE_TYPE_GL;
deviceCaps.MajorVersion = MajorVersion;
deviceCaps.MinorVersion = MinorVersion;
}
GLContext::~GLContext()
{
}
void GLContext::SwapBuffers(int SwapInterval)
{
if (m_WindowId != 0 && m_pDisplay != nullptr)
{
auto wnd = static_cast<Window>(m_WindowId);
auto display = reinterpret_cast<Display*>(m_pDisplay);
#if GLX_EXT_swap_control
if (glXSwapIntervalEXT != nullptr)
{
glXSwapIntervalEXT(display, wnd, SwapInterval);
}
# if GLX_MESA_swap_control
else if (glXSwapIntervalMESA != nullptr)
{
glXSwapIntervalMESA(SwapInterval);
}
# endif
#endif
glXSwapBuffers(display, wnd);
}
else
{
LOG_ERROR("Swap buffer failed because window and/or display handle is not initialized");
}
}
GLContext::NativeGLContextType GLContext::GetCurrentNativeGLContext()
{
return glXGetCurrentContext();
}
} // namespace Diligent
|