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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include <SDL.h>
#include "GlobalRendering.h"
#include "GlobalRenderingInfo.h"
#include "Rendering/VerticalSync.h"
#include "Rendering/GL/myGL.h"
#include "Rendering/GL/FBO.h"
#include "Rendering/GL/RenderDataBuffer.hpp"
#include "System/bitops.h"
#include "System/EventHandler.h"
#include "System/SafeUtil.h"
#include "System/StringUtil.h"
#include "System/type2.h"
#include "System/TimeProfiler.h"
#include "System/Config/ConfigHandler.h"
#include "System/creg/creg_cond.h"
#include "System/Log/ILog.h"
#include "System/Platform/CrashHandler.h"
#include "System/Platform/MessageBox.h"
#include "System/Platform/Threading.h"
#include "System/Platform/WindowManagerHelper.h"
#include "System/Platform/errorhandler.h"
CONFIG(bool, DebugGL).defaultValue(false).description("Enables GL debug-context and output. (see GL_ARB_debug_output)");
CONFIG(bool, DebugGLStacktraces).defaultValue(false).description("Create a stacktrace when an OpenGL error occurs");
CONFIG(int, GLContextMajorVersion).defaultValue(4).minimumValue(3).maximumValue(4);
CONFIG(int, GLContextMinorVersion).defaultValue(1).minimumValue(0).maximumValue(5);
CONFIG(int, MSAALevel).defaultValue(0).minimumValue(0).maximumValue(32).description("Enables multisample anti-aliasing; 'level' is the number of samples used.");
CONFIG(int, ForceDisableClipCtrl).defaultValue(0).minimumValue(0).maximumValue(1);
// apply runtime texture compression for glBuildMipmaps?
// glCompressedTex*Image* must additionally be supported
// for DDS (SMF DXT1, etc)
// this defaults to off because it reduces mipmap quality
// the smallest compressed mip-level is necessarily bigger
CONFIG(bool, CompressTextures).defaultValue(false).safemodeValue(true).description("Runtime compress most textures to save VideoRAM.");
CONFIG(bool, DualScreenMode).defaultValue(false).description("Sets whether to split the screen in half, with one half for minimap and one for main screen. Right side is for minimap unless DualScreenMiniMapOnLeft is set.");
CONFIG(bool, DualScreenMiniMapOnLeft).defaultValue(false).description("When set, will make the left half of the screen the minimap when DualScreenMode is set.");
CONFIG(bool, TeamNanoSpray).defaultValue(true).headlessValue(false);
CONFIG(int, MinimizeOnFocusLoss).defaultValue(0).minimumValue(0).maximumValue(1).description("When set to 1 minimize Window if it loses key focus when in fullscreen mode.");
CONFIG(bool, Fullscreen).defaultValue(true).headlessValue(false).description("Sets whether the game will run in fullscreen, as opposed to a window. For Windowed Fullscreen of Borderless Window, set this to 0, WindowBorderless to 1, and WindowPosX and WindowPosY to 0.");
CONFIG(bool, WindowBorderless).defaultValue(false).description("When set and Fullscreen is 0, will put the game in Borderless Window mode, also known as Windowed Fullscreen. When using this, it is generally best to also set WindowPosX and WindowPosY to 0");
CONFIG(bool, BlockCompositing).defaultValue(false).safemodeValue(true).description("Disables kwin compositing to fix tearing, possible fixes low FPS in windowed mode, too.");
CONFIG(int, XResolution).defaultValue(0).headlessValue(8).minimumValue(0).description("Sets the width of the game screen. If set to 0 Spring will autodetect the current resolution of your desktop.");
CONFIG(int, YResolution).defaultValue(0).headlessValue(8).minimumValue(0).description("Sets the height of the game screen. If set to 0 Spring will autodetect the current resolution of your desktop.");
CONFIG(int, XResolutionWindowed).defaultValue(0).headlessValue(8).minimumValue(0).description("See XResolution, just for windowed.");
CONFIG(int, YResolutionWindowed).defaultValue(0).headlessValue(8).minimumValue(0).description("See YResolution, just for windowed.");
CONFIG(int, WindowPosX).defaultValue(32).description("Sets the horizontal position of the game window, if Fullscreen is 0. When WindowBorderless is set, this should usually be 0.");
CONFIG(int, WindowPosY).defaultValue(32).description("Sets the vertical position of the game window, if Fullscreen is 0. When WindowBorderless is set, this should usually be 0.");
/**
* @brief global rendering
*
* Global instance of CGlobalRendering
*/
static uint8_t globalRenderingMem[sizeof(CGlobalRendering)];
CGlobalRendering* globalRendering = nullptr;
GlobalRenderingInfo globalRenderingInfo;
CR_BIND(CGlobalRendering, )
CR_REG_METADATA(CGlobalRendering, (
CR_MEMBER(active),
CR_MEMBER(drawSky),
CR_MEMBER(drawWater),
CR_MEMBER(drawGround),
CR_MEMBER(drawMapMarks),
CR_MEMBER(drawDebug),
CR_MEMBER(drawDebugTraceRay),
CR_MEMBER(drawDebugCubeMap),
CR_MEMBER(glDebug),
CR_MEMBER(glDebugErrors),
CR_MEMBER(timeOffset),
CR_MEMBER(lastFrameTime),
CR_MEMBER(lastFrameStart),
CR_MEMBER(weightedSpeedFactor),
CR_MEMBER(drawFrame),
CR_MEMBER(FPS),
CR_IGNORED(screenSizeX),
CR_IGNORED(screenSizeY),
CR_IGNORED(winPosX),
CR_IGNORED(winPosY),
CR_IGNORED(winSizeX),
CR_IGNORED(winSizeY),
CR_IGNORED(viewPosX),
CR_IGNORED(viewPosY),
CR_IGNORED(viewSizeX),
CR_IGNORED(viewSizeY),
CR_IGNORED(pixelX),
CR_IGNORED(pixelY),
CR_IGNORED(minViewRange),
CR_IGNORED(maxViewRange),
CR_IGNORED(aspectRatio),
CR_IGNORED(gammaExponent),
CR_IGNORED(msaaLevel),
CR_IGNORED(maxTextureSize),
CR_IGNORED(maxTexAnisoLvl),
CR_MEMBER(teamNanospray),
CR_IGNORED(compressTextures),
CR_IGNORED(haveATI),
CR_IGNORED(haveMesa),
CR_IGNORED(haveIntel),
CR_IGNORED(haveNvidia),
CR_IGNORED(supportNonPowerOfTwoTex),
CR_IGNORED(supportTextureQueryLOD),
CR_IGNORED(support24bitDepthBuffer),
CR_IGNORED(supportRestartPrimitive),
CR_IGNORED(supportClipSpaceControl),
CR_IGNORED(supportSeamlessCubeMaps),
CR_IGNORED(supportFragDepthLayout),
CR_IGNORED(glslMaxVaryings),
CR_IGNORED(glslMaxAttributes),
CR_IGNORED(glslMaxDrawBuffers),
CR_IGNORED(glslMaxRecommendedIndices),
CR_IGNORED(glslMaxRecommendedVertices),
CR_IGNORED(glslMaxUniformBufferBindings),
CR_IGNORED(glslMaxUniformBufferSize),
CR_IGNORED(dualScreenMode),
CR_IGNORED(dualScreenMiniMapOnLeft),
CR_IGNORED(fullScreen),
CR_IGNORED(borderless),
CR_IGNORED(sdlWindows),
CR_IGNORED(glContexts),
CR_IGNORED(glTimerQueries)
))
void CGlobalRendering::InitStatic() { globalRendering = new (globalRenderingMem) CGlobalRendering(); }
void CGlobalRendering::KillStatic() { spring::SafeDestruct(globalRendering); }
CGlobalRendering::CGlobalRendering()
: timeOffset(0.0f)
, lastFrameTime(0.0f)
, lastFrameStart(spring_notime)
, weightedSpeedFactor(0.0f)
, drawFrame(1)
, FPS(1.0f)
, screenSizeX(1)
, screenSizeY(1)
// window geometry
, winPosX(configHandler->GetInt("WindowPosX"))
, winPosY(configHandler->GetInt("WindowPosY"))
, winSizeX(1)
, winSizeY(1)
// viewport geometry
, viewPosX(0)
, viewPosY(0)
, viewSizeX(1)
, viewSizeY(1)
// pixel geometry
, pixelX(0.01f)
, pixelY(0.01f)
// sane defaults
, minViewRange(MIN_ZNEAR_DIST * 8.0f)
, maxViewRange(MAX_VIEW_RANGE * 0.5f)
, aspectRatio(1.0f)
, gammaExponent(1.0f)
// fallback
, msaaLevel(configHandler->GetInt("MSAALevel"))
, maxTextureSize(2048)
, maxTexAnisoLvl(0.0f)
, active(true)
, drawSky(true)
, drawWater(true)
, drawGround(true)
, drawMapMarks(true)
, drawDebug(false)
, drawDebugTraceRay(false)
, drawDebugCubeMap(false)
, glDebug(false)
, glDebugErrors(false)
, teamNanospray(configHandler->GetBool("TeamNanoSpray"))
, compressTextures(configHandler->GetBool("CompressTextures"))
, haveATI(false)
, haveMesa(false)
, haveIntel(false)
, haveNvidia(false)
, supportNonPowerOfTwoTex(false)
, supportTextureQueryLOD(false)
, support24bitDepthBuffer(false)
, supportRestartPrimitive(false)
, supportClipSpaceControl(false)
, supportSeamlessCubeMaps(false)
, supportFragDepthLayout(false)
, glslMaxVaryings(0)
, glslMaxAttributes(0)
, glslMaxDrawBuffers(0)
, glslMaxRecommendedIndices(0)
, glslMaxRecommendedVertices(0)
, glslMaxUniformBufferBindings(0)
, glslMaxUniformBufferSize(0)
, dualScreenMode(false)
, dualScreenMiniMapOnLeft(false)
, fullScreen(configHandler->GetBool("Fullscreen"))
, borderless(configHandler->GetBool("WindowBorderless"))
, sdlWindows{nullptr, nullptr}
, glContexts{nullptr, nullptr}
{
verticalSync->WrapNotifyOnChange();
configHandler->NotifyOnChange(this, {"Fullscreen", "WindowBorderless"});
}
CGlobalRendering::~CGlobalRendering()
{
configHandler->RemoveObserver(this);
verticalSync->WrapRemoveObserver();
// protect against aborted startup
if (glContexts[0] != nullptr) {
GL::KillRenderBuffers();
glDeleteQueries(NUM_OPENGL_TIMER_QUERIES * 2, &glTimerQueries[0]);
}
DestroyWindowAndContext(sdlWindows[0], glContexts[0]);
DestroyWindowAndContext(sdlWindows[1], glContexts[1]);
KillSDL();
sdlWindows[0] = nullptr;
sdlWindows[1] = nullptr;
glContexts[0] = nullptr;
glContexts[1] = nullptr;
}
SDL_Window* CGlobalRendering::CreateSDLWindow(const int2& winRes, const int2& minRes, const char* title, bool hidden) const
{
SDL_Window* newWindow = nullptr;
const int aaLvls[] = {msaaLevel, msaaLevel / 2, msaaLevel / 4, msaaLevel / 8, msaaLevel / 16, msaaLevel / 32, 0};
const int zbBits[] = {24, 32, 16};
uint32_t sdlFlags = SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE;
const char* winName = hidden? "hidden": "main";
const char* wpfName = "";
const char* frmts[2] = {
"[GR::%s] error \"%s\" using %dx anti-aliasing and %d-bit depth-buffer for %s window",
"[GR::%s] using %dx anti-aliasing and %d-bit depth-buffer (PF=\"%s\") for %s window",
};
// note:
// passing the minimized-flag is useless (state is not saved if minimized)
// and has no effect anyway, setting a minimum size for a window overrides
// it while disabling the SetWindowMinimumSize call still results in a 1x1
// window on the desktop
sdlFlags |= (SDL_WINDOW_FULLSCREEN_DESKTOP * borderless + SDL_WINDOW_FULLSCREEN * (1 - borderless)) * fullScreen;
sdlFlags |= (SDL_WINDOW_BORDERLESS * borderless);
sdlFlags |= (SDL_WINDOW_HIDDEN * hidden);
for (size_t i = 0; i < (sizeof(aaLvls) / sizeof(aaLvls[0])) && (newWindow == nullptr); i++) {
if (i > 0 && aaLvls[i] == aaLvls[i - 1])
break;
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, aaLvls[i] > 0);
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, aaLvls[i] );
for (size_t j = 0; j < (sizeof(zbBits) / sizeof(zbBits[0])) && (newWindow == nullptr); j++) {
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, zbBits[j]);
if ((newWindow = SDL_CreateWindow(title, winPosX, winPosY, winRes.x, winRes.y, sdlFlags)) == nullptr) {
LOG_L(L_WARNING, frmts[0], __func__, SDL_GetError(), aaLvls[i], zbBits[j], winName);
continue;
}
LOG(frmts[1], __func__, aaLvls[i], zbBits[j], wpfName = SDL_GetPixelFormatName(SDL_GetWindowPixelFormat(newWindow)), winName);
}
}
if (newWindow == nullptr) {
char buf[1024];
SNPRINTF(buf, sizeof(buf), "[GR::%s] could not create (hidden=%d) SDL-window\n", __func__, hidden);
handleerror(nullptr, buf, "ERROR", MBF_OK | MBF_EXCL);
return nullptr;
}
#if defined(_WIN32)
if (borderless && !fullScreen) {
WindowManagerHelper::SetWindowResizable(newWindow, !borderless);
SDL_SetWindowBordered(newWindow, borderless? SDL_FALSE: SDL_TRUE);
SDL_SetWindowPosition(newWindow, winPosX, winPosY);
SDL_SetWindowSize(newWindow, winRes.x, winRes.y);
}
#endif
SDL_SetWindowMinimumSize(newWindow, minRes.x, minRes.y);
return newWindow;
}
SDL_GLContext CGlobalRendering::CreateGLContext(const int2& minCtx, SDL_Window* targetWindow) const
{
SDL_GLContext newContext = nullptr;
constexpr int2 glCtxs[] = {{3, 2}, {3, 3}, {4, 0}, {4, 1}, {4, 2}, {4, 3}, {4, 4}, {4, 5}, {4, 6}};
int2 cmpCtx;
if (std::find(&glCtxs[0], &glCtxs[0] + (sizeof(glCtxs) / sizeof(int2)), minCtx) == (&glCtxs[0] + (sizeof(glCtxs) / sizeof(int2)))) {
handleerror(nullptr, "illegal OpenGL context-version specified, aborting", "ERROR", MBF_OK | MBF_EXCL);
return nullptr;
}
if ((newContext = SDL_GL_CreateContext(targetWindow)) != nullptr)
return newContext;
const char* winName = (targetWindow == sdlWindows[1])? "hidden": "main";
const char* msgFmts[] = {"[GR::%s] error (\"%s\") creating %s GL%d.%d context", "[GR::%s] created %s GL%d.%d context"};
char buf[1024] = {0};
SNPRINTF(buf, sizeof(buf), msgFmts[false], __func__, SDL_GetError(), winName, minCtx.x, minCtx.y);
for (const int2 tstCtx: glCtxs) {
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, tstCtx.x);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, tstCtx.y);
if ((newContext = SDL_GL_CreateContext(targetWindow)) == nullptr) {
LOG_L(L_WARNING, msgFmts[false], __func__, SDL_GetError(), winName, tstCtx.x, tstCtx.y);
break;
}
// save the lowest successfully created fallback context
if (cmpCtx.x == 0 && tstCtx.x >= minCtx.x)
cmpCtx = tstCtx;
LOG_L(L_WARNING, msgFmts[true], __func__, winName, tstCtx.x, tstCtx.y);
SDL_GL_DeleteContext(newContext);
}
if (cmpCtx.x == 0) {
handleerror(nullptr, buf, "ERROR", MBF_OK | MBF_EXCL);
return nullptr;
}
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, cmpCtx.x);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, cmpCtx.y);
return (SDL_GL_CreateContext(targetWindow));
}
bool CGlobalRendering::CreateWindowAndContext(const char* title, bool hidden)
{
if (SDL_Init(SDL_INIT_VIDEO) == -1) {
LOG_L(L_FATAL, "[GR::%s] error \"%s\" initializing SDL", __func__, SDL_GetError());
return false;
}
if (!CheckAvailableVideoModes()) {
handleerror(nullptr, "desktop color-depth should be at least 24 bits per pixel, aborting", "ERROR", MBF_OK | MBF_EXCL);
return false;
}
// should be set to "3.0" (non-core Mesa is stuck there), see below
const char* mesaGL = getenv("MESA_GL_VERSION_OVERRIDE");
const char* softGL = getenv("LIBGL_ALWAYS_SOFTWARE");
// get wanted resolution and context-version
const int2 winRes = GetCfgWinRes(fullScreen);
const int2 maxRes = GetMaxWinRes();
const int2 minRes = {MIN_WIN_SIZE_X, MIN_WIN_SIZE_Y};
const int2 minCtx = (mesaGL != nullptr && std::strlen(mesaGL) >= 3)?
int2{ std::max(mesaGL[0] - '0', 3), std::max(mesaGL[2] - '0', 0)}:
int2{configHandler->GetInt("GLContextMajorVersion"), configHandler->GetInt("GLContextMinorVersion")};
// start with the standard (R8G8B8A8 + 24-bit depth + 8-bit stencil + DB) format
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
// create GL debug-context if wanted (more verbose GL messages, but runs slower)
// note:
// requesting a core profile explicitly is needed to get versions later than
// 3.0/1.30 for Mesa, other drivers return their *maximum* supported context
// in compat and do not make 3.0 itself available in core (though this still
// suffices for most of Spring)
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_DEBUG_FLAG * configHandler->GetBool("DebugGL"));
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, minCtx.x);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, minCtx.y);
if (msaaLevel > 0) {
if (softGL != nullptr)
LOG_L(L_WARNING, "MSAALevel > 0 and LIBGL_ALWAYS_SOFTWARE set, this will very likely crash!");
make_even_number(msaaLevel);
}
if ((sdlWindows[0] = CreateSDLWindow(winRes, minRes, title, false)) == nullptr)
return false;
if ((sdlWindows[1] = CreateSDLWindow(winRes, minRes, title, true)) == nullptr)
return false;
#if 0
// do not use SDL_HideWindow since that also removes the taskbar entry
if (minimized)
SDL_MinimizeWindow(sdlWindows[0]);
#else
if (hidden)
SDL_HideWindow(sdlWindows[0]);
#endif
// make extra sure the maximized-flag is set
else if (winRes == maxRes)
SDL_MaximizeWindow(sdlWindows[0]);
if (configHandler->GetInt("MinimizeOnFocusLoss") == 0)
SDL_SetHint(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, "0");
#if !defined(HEADLESS)
// disable desktop compositing to fix tearing
// (happens at 300fps, neither fullscreen nor vsync fixes it, so disable compositing)
// On Windows Aero often uses vsync, and so when Spring runs windowed it will run with
// vsync too, resulting in bad performance.
if (configHandler->GetBool("BlockCompositing"))
WindowManagerHelper::BlockCompositing(sdlWindows[0]);
#endif
if ((glContexts[0] = CreateGLContext(minCtx, sdlWindows[0])) == nullptr)
return false;
if ((glContexts[1] = CreateGLContext(minCtx, sdlWindows[1])) == nullptr)
return false;
{
#ifndef HEADLESS
glewExperimental = true;
#endif
glewInit();
// glewInit sets GL_INVALID_ENUM, get rid of it
glGetError();
}
if (!CheckGLContextVersion(minCtx)) {
handleerror(nullptr, "minimum required OpenGL version not supported, aborting", "ERROR", MBF_OK | MBF_EXCL);
return false;
}
// always require a proper stencil-buffer
if (!CheckGLStencilBufferBits(8)) {
handleerror(nullptr, "insufficient OpenGL stencil-buffer support, aborting", "ERROR", MBF_OK | MBF_EXCL);
return false;
}
// redundant, but harmless
SDL_GL_MakeCurrent(sdlWindows[0], glContexts[0]);
SDL_DisableScreenSaver();
return true;
}
void CGlobalRendering::MakeCurrentContext(bool hidden, bool secondary, bool clear) {
if (clear) {
SDL_GL_MakeCurrent(sdlWindows[hidden], nullptr);
} else {
SDL_GL_MakeCurrent(sdlWindows[hidden], glContexts[secondary]);
}
}
void CGlobalRendering::DestroyWindowAndContext(SDL_Window* window, SDL_GLContext context) {
if (window == sdlWindows[0]) {
WindowManagerHelper::SetIconSurface(window, nullptr);
SetWindowInputGrabbing(false);
}
SDL_GL_MakeCurrent(window, nullptr);
SDL_DestroyWindow(window);
#if !defined(HEADLESS)
SDL_GL_DeleteContext(context);
#endif
}
void CGlobalRendering::KillSDL() const {
#if !defined(HEADLESS)
SDL_QuitSubSystem(SDL_INIT_VIDEO);
#endif
SDL_EnableScreenSaver();
SDL_Quit();
}
void CGlobalRendering::PostInit() {
char sdlVersionStr[64] = "";
char glVidMemStr[64] = "unknown";
QueryVersionInfo(sdlVersionStr, glVidMemStr);
LogVersionInfo(sdlVersionStr, glVidMemStr);
if (!CheckGLEWContextVersion(globalRenderingInfo.glContextVersion))
throw (unsupported_error("GLEW version outdated, aborting"));
CheckGLExtensions();
SetGLSupportFlags();
QueryGLMaxVals();
LogGLSupportInfo();
ToggleGLDebugOutput(0, 0, 0);
GL::InitRenderBuffers();
glGenQueries(NUM_OPENGL_TIMER_QUERIES * 2, &glTimerQueries[0]);
}
void CGlobalRendering::SetGLTimeStamp(uint32_t queryIdx) const
{
glQueryCounter(glTimerQueries[(NUM_OPENGL_TIMER_QUERIES * (drawFrame & 1)) + queryIdx], GL_TIMESTAMP);
}
uint64_t CGlobalRendering::CalcGLDeltaTime(uint32_t queryIdx0, uint32_t queryIdx1) const
{
const uint32_t queryBase = NUM_OPENGL_TIMER_QUERIES * (1 - (drawFrame & 1));
assert(queryIdx0 < NUM_OPENGL_TIMER_QUERIES);
assert(queryIdx1 < NUM_OPENGL_TIMER_QUERIES);
assert(queryIdx0 < queryIdx1);
GLuint64 t0 = 0;
GLuint64 t1 = 0;
GLint res = 0;
// results from the previous frame should already (or soon) be available
while (!res) {
glGetQueryObjectiv(glTimerQueries[queryBase + queryIdx1], GL_QUERY_RESULT_AVAILABLE, &res);
}
glGetQueryObjectui64v(glTimerQueries[queryBase + queryIdx0], GL_QUERY_RESULT, &t0);
glGetQueryObjectui64v(glTimerQueries[queryBase + queryIdx1], GL_QUERY_RESULT, &t1);
// nanoseconds between timestamps
return (t1 - t0);
}
void CGlobalRendering::SwapBuffers(bool allowSwapBuffers, bool clearErrors)
{
SCOPED_TIMER("Misc::SwapBuffers");
assert(sdlWindows[0] != nullptr);
// silently or verbosely clear queue at the end of every frame
if (clearErrors || glDebugErrors)
glClearErrors("GR", __func__, glDebugErrors);
const spring_time preSwapTime = spring_now();
GL::SwapRenderBuffers();
SDL_GL_SwapWindow(sdlWindows[0]);
eventHandler.DbgTimingInfo(TIMING_SWAP, preSwapTime, spring_now());
// NB: this does not just count frames drawn by game
drawFrame += 1;
}
void CGlobalRendering::CheckGLExtensions() const
{
#ifndef HEADLESS
const auto CheckExt = [](const char* extName, bool haveExt, bool needExt) {
if (haveExt)
return;
if (needExt) {
char buf[512];
memset(buf, 0, sizeof(buf));
snprintf(buf, sizeof(buf), "OpenGL extension \"%s\" not supported, aborting", extName);
throw (unsupported_error(buf));
}
LOG("[GR::CheckGLExtensions] OpenGL extension \"%s\" not supported, ignoring", extName);
};
#define CHECK_REQ_EXT(ext) CheckExt(#ext, ext, true)
#define CHECK_OPT_EXT(ext) CheckExt(#ext, ext, false)
CHECK_REQ_EXT(GLEW_ARB_multisample); // 1.3 (MSAA)
CHECK_REQ_EXT(GLEW_ARB_vertex_buffer_object); // 1.5 (VBO)
CHECK_REQ_EXT(GLEW_ARB_pixel_buffer_object); // 2.1 (PBO)
CHECK_REQ_EXT(GLEW_ARB_framebuffer_object); // 3.0 (FBO)
CHECK_REQ_EXT(GLEW_ARB_vertex_array_object); // 3.0 (VAO; core in 4.x)
CHECK_REQ_EXT(GLEW_ARB_uniform_buffer_object); // 3.1 (UBO)
#ifdef GLEW_ARB_buffer_storage
CHECK_REQ_EXT(GLEW_ARB_buffer_storage); // 4.4 (immutable storage)
#endif
CHECK_REQ_EXT(GLEW_ARB_draw_buffers); // 2.0 (MRT)
CHECK_REQ_EXT(GLEW_ARB_copy_buffer); // 3.1 (glCopyBufferSubData)
CHECK_REQ_EXT(GLEW_ARB_map_buffer_range); // 3.0 (glMapBufferRange[ARB])
CHECK_REQ_EXT(GLEW_EXT_framebuffer_multisample); // 3.0 (multi-sampled FB's)
CHECK_REQ_EXT(GLEW_EXT_framebuffer_blit); // 3.0 (glBlitFramebuffer[EXT])
// not yet mandatory
#ifdef GLEW_ARB_multi_bind
CHECK_OPT_EXT(GLEW_ARB_multi_bind); // 4.4
#endif
CHECK_OPT_EXT(GLEW_ARB_texture_storage); // 4.2
CHECK_OPT_EXT(GLEW_ARB_program_interface_query); // 4.3
CHECK_OPT_EXT(GLEW_EXT_direct_state_access); // 3.3 (core in 4.5)
CHECK_OPT_EXT(GLEW_ARB_invalidate_subdata); // 4.3 (glInvalidateBufferData)
CHECK_OPT_EXT(GLEW_ARB_shader_storage_buffer_object); // 4.3 (glShaderStorageBlockBinding)
CHECK_REQ_EXT(GLEW_ARB_get_program_binary); // 4.1 (gl{Get}ProgramBinary)
CHECK_REQ_EXT(GLEW_ARB_separate_shader_objects); // 4.1 (glProgramParameteri)
CHECK_REQ_EXT(GLEW_ARB_texture_compression);
CHECK_REQ_EXT(GLEW_EXT_texture_compression_s3tc);
CHECK_OPT_EXT(GLEW_EXT_texture_compression_dxt1); // for some reason AMD doesn't list this as supported even though it does
CHECK_REQ_EXT(GLEW_ARB_texture_float); // 3.0 (FP{16,32} textures)
CHECK_REQ_EXT(GLEW_ARB_texture_non_power_of_two); // 2.0 (NPOT textures)
CHECK_REQ_EXT(GLEW_ARB_texture_rectangle); // 3.0 (rectangular textures)
CHECK_REQ_EXT(GLEW_EXT_texture_filter_anisotropic); // 3.3 (AF; core in 4.6!)
//CHECK_REQ_EXT(GLEW_ARB_imaging); // 1.2 (imaging subset; texture_*_clamp [GL_CLAMP_TO_EDGE] etc)
CHECK_OPT_EXT(GLEW_EXT_texture_edge_clamp); // 1.2
CHECK_OPT_EXT(GLEW_ARB_texture_border_clamp); // 1.3
CHECK_REQ_EXT(GLEW_EXT_blend_func_separate); // 1.4
CHECK_REQ_EXT(GLEW_EXT_blend_equation_separate); // 2.0
CHECK_OPT_EXT(GLEW_EXT_stencil_two_side); // 2.0 (may also be an issue on AMD)
CHECK_REQ_EXT(GLEW_ARB_occlusion_query); // 1.5
CHECK_REQ_EXT(GLEW_ARB_occlusion_query2); // 3.3 (glBeginConditionalRender)
CHECK_REQ_EXT(GLEW_ARB_timer_query); // 3.3
CHECK_REQ_EXT(GLEW_ARB_depth_clamp); // 3.2
CHECK_REQ_EXT(GLEW_NV_primitive_restart); // 3.1
CHECK_REQ_EXT(GLEW_ARB_transform_feedback3); // 4.0 (VTF v3)
CHECK_REQ_EXT(GLEW_ARB_explicit_attrib_location); // 3.3
CHECK_REQ_EXT(GLEW_ARB_vertex_program); // VS-ARB
CHECK_OPT_EXT(GLEW_ARB_fragment_program); // FS-ARB
CHECK_OPT_EXT(GLEW_ARB_shading_language_100); // 2.0
CHECK_REQ_EXT(GLEW_ARB_vertex_shader); // 1.5 (VS-GLSL; core in 2.0)
CHECK_REQ_EXT(GLEW_ARB_fragment_shader); // 1.5 (FS-GLSL; core in 2.0)
CHECK_REQ_EXT(GLEW_ARB_geometry_shader4); // GS v4 (GL3.2)
#undef CHECK_OPT_EXT
#undef CHECK_REQ_EXT
#else
// for HL builds, all used GL functions are stubs
#endif
}
void CGlobalRendering::SetGLSupportFlags()
{
const char* glVendor = globalRenderingInfo.glVendor;
const char* glRenderer = globalRenderingInfo.glRenderer;
haveNvidia = (StrCaseStr( glVendor, "nvidia ") != nullptr);
haveATI |= (StrCaseStr( glVendor, "ati ") != nullptr);
haveATI |= (StrCaseStr( glVendor, "amd ") != nullptr);
haveIntel = (StrCaseStr( glVendor, "intel") != nullptr);
haveMesa |= (StrCaseStr(glRenderer, "mesa ") != nullptr);
haveMesa |= (StrCaseStr(glRenderer, "gallium ") != nullptr);
if (haveATI) {
globalRenderingInfo.gpuName = globalRenderingInfo.glRenderer;
globalRenderingInfo.gpuVendor = "ATI";
} else if (haveIntel) {
globalRenderingInfo.gpuName = globalRenderingInfo.glRenderer;
globalRenderingInfo.gpuVendor = "Intel";
} else if (haveNvidia) {
globalRenderingInfo.gpuName = globalRenderingInfo.glRenderer;
globalRenderingInfo.gpuVendor = "Nvidia";
} else if (haveMesa) {
globalRenderingInfo.gpuName = globalRenderingInfo.glRenderer;
globalRenderingInfo.gpuVendor = globalRenderingInfo.glVendor;
} else {
globalRenderingInfo.gpuName = "Unknown";
globalRenderingInfo.gpuVendor = "Unknown";
}
// all modern ATI's support NPOTs
supportNonPowerOfTwoTex = GLEW_ARB_texture_non_power_of_two;
supportTextureQueryLOD = GLEW_ARB_texture_query_lod;
for (size_t n = 0; (n < sizeof(globalRenderingInfo.glVersionShort) && globalRenderingInfo.glVersion[n] != 0); n++) {
if ((globalRenderingInfo.glVersionShort[n] = globalRenderingInfo.glVersion[n]) == ' ') {
globalRenderingInfo.glVersionShort[n] = 0;
break;
}
}
for (size_t n = 0; (n < sizeof(globalRenderingInfo.glslVersionShort) && globalRenderingInfo.glslVersion[n] != 0); n++) {
if ((globalRenderingInfo.glslVersionShort[n] = globalRenderingInfo.glslVersion[n]) == ' ') {
globalRenderingInfo.glslVersionShort[n] = 0;
break;
}
}
#ifdef GLEW_NV_primitive_restart
// not defined for headless builds
supportRestartPrimitive = GLEW_NV_primitive_restart;
#endif
#ifdef GLEW_ARB_clip_control
supportClipSpaceControl = GLEW_ARB_clip_control;
#endif
#ifdef GLEW_ARB_seamless_cube_map
supportSeamlessCubeMaps = GLEW_ARB_seamless_cube_map;
#endif
// CC did not exist as an extension before GL4.5, too recent to enforce
supportClipSpaceControl &= ((globalRenderingInfo.glContextVersion.x * 10 + globalRenderingInfo.glContextVersion.y) >= 45);
supportClipSpaceControl &= (configHandler->GetInt("ForceDisableClipCtrl") == 0);
supportFragDepthLayout = ((globalRenderingInfo.glContextVersion.x * 10 + globalRenderingInfo.glContextVersion.y) >= 42);
#if 0
{
// detect if GL_DEPTH_COMPONENT24 is supported for render targets
// many ATIs historically did not; they only seemed to support it
// for static textures
GLint state = 0;
glTexImage2D(GL_PROXY_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, 16, 16, 0, GL_RED, GL_FLOAT, nullptr);
glGetTexLevelParameteriv(GL_PROXY_TEXTURE_2D, 0, GL_TEXTURE_WIDTH, &state);
support24bitDepthBuffer = (state > 0);
}
#else
{
FBO fbo;
fbo.Bind();
fbo.CreateRenderBuffer(GL_COLOR_ATTACHMENT0, GL_RGBA8, 16, 16);
fbo.CreateRenderBuffer(GL_DEPTH_ATTACHMENT , GL_DEPTH_COMPONENT24, 16, 16);
support24bitDepthBuffer = (fbo.GetStatus() == GL_FRAMEBUFFER_COMPLETE);
fbo.Unbind();
}
#endif
}
void CGlobalRendering::QueryGLMaxVals()
{
// maximum 2D texture size
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &maxTexAnisoLvl);
// some GLSL relevant information
glGetIntegerv(GL_MAX_UNIFORM_BUFFER_BINDINGS, &glslMaxUniformBufferBindings);
glGetIntegerv(GL_MAX_UNIFORM_BLOCK_SIZE, &glslMaxUniformBufferSize);
glGetIntegerv(GL_MAX_VARYING_FLOATS, &glslMaxVaryings);
glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &glslMaxAttributes);
glGetIntegerv(GL_MAX_DRAW_BUFFERS, &glslMaxDrawBuffers);
glGetIntegerv(GL_MAX_ELEMENTS_INDICES, &glslMaxRecommendedIndices);
glGetIntegerv(GL_MAX_ELEMENTS_VERTICES, &glslMaxRecommendedVertices);
// GL_MAX_VARYING_FLOATS is the maximum number of floats, we count float4's
glslMaxVaryings /= 4;
}
void CGlobalRendering::QueryVersionInfo(char (&sdlVersionStr)[64], char (&glVidMemStr)[64])
{
auto& grInfo = globalRenderingInfo;
auto& sdlVC = grInfo.sdlVersionCompiled;
auto& sdlVL = grInfo.sdlVersionLinked;
SDL_VERSION(&sdlVC);
SDL_GetVersion(&sdlVL);
if ((grInfo.glVersion = (const char*) glGetString(GL_VERSION )) == nullptr) grInfo.glVersion = "unknown";
if ((grInfo.glVendor = (const char*) glGetString(GL_VENDOR )) == nullptr) grInfo.glVendor = "unknown";
if ((grInfo.glRenderer = (const char*) glGetString(GL_RENDERER )) == nullptr) grInfo.glRenderer = "unknown";
if ((grInfo.glslVersion = (const char*) glGetString(GL_SHADING_LANGUAGE_VERSION)) == nullptr) grInfo.glslVersion = "unknown";
if ((grInfo.glewVersion = (const char*) glewGetString(GLEW_VERSION )) == nullptr) grInfo.glewVersion = "unknown";
// should never be null with any driver, no harm in an extra check
// (absence of GLSL version string would indicate bigger problems)
if (std::strcmp(globalRenderingInfo.glslVersion, "unknown") == 0)
throw unsupported_error("OpenGL shaders not supported, aborting");
if (!ShowDriverWarning(grInfo.glVendor, grInfo.glRenderer))
throw unsupported_error("OpenGL drivers not installed, aborting");
memset(grInfo.glVersionShort, 0, sizeof(grInfo.glVersionShort));
memset(grInfo.glslVersionShort, 0, sizeof(grInfo.glslVersionShort));
constexpr const char* sdlFmtStr = "%d.%d.%d (linked) / %d.%d.%d (compiled)";
constexpr const char* memFmtStr = "%iMB (total) / %iMB (available)";
SNPRINTF(sdlVersionStr, sizeof(sdlVersionStr), sdlFmtStr,
sdlVL.major, sdlVL.minor, sdlVL.patch,
sdlVC.major, sdlVC.minor, sdlVC.patch
);
if (!GetAvailableVideoRAM(&grInfo.gpuMemorySize.x, grInfo.glVendor))
return;
const GLint totalMemMB = grInfo.gpuMemorySize.x / 1024;
const GLint availMemMB = grInfo.gpuMemorySize.y / 1024;
SNPRINTF(glVidMemStr, sizeof(glVidMemStr), memFmtStr, totalMemMB, availMemMB);
}
void CGlobalRendering::LogVersionInfo(const char* sdlVersionStr, const char* glVidMemStr) const
{
LOG("[GR::%s]", __func__);
LOG("\tSDL version : %s", sdlVersionStr);
LOG("\tGL version : %s", globalRenderingInfo.glVersion);
LOG("\tGL vendor : %s", globalRenderingInfo.glVendor);
LOG("\tGL renderer : %s", globalRenderingInfo.glRenderer);
LOG("\tGLSL version: %s", globalRenderingInfo.glslVersion);
LOG("\tGLEW version: %s", globalRenderingInfo.glewVersion);
LOG("\tGPU memory : %s", glVidMemStr);
LOG("\tSDL swap-int: %d", SDL_GL_GetSwapInterval());
LOG("\t");
}
void CGlobalRendering::LogGLSupportInfo() const
{
LOG("[GR::%s]", __func__);
LOG("\tNVX GPU mem-info support : %i", glewIsExtensionSupported("GL_NVX_gpu_memory_info"));
LOG("\tATI GPU mem-info support : %i", glewIsExtensionSupported("GL_ATI_meminfo"));
LOG("\tNPOT-texture support : %i (%i)", supportNonPowerOfTwoTex, glewIsExtensionSupported("GL_ARB_texture_non_power_of_two"));
LOG("\ttexture query-LOD support : %i (%i)", supportTextureQueryLOD, glewIsExtensionSupported("GL_ARB_texture_query_lod"));
LOG("\t24-bit Z-buffer support : %i (-)", support24bitDepthBuffer);
LOG("\tprimitive-restart support : %i (%i)", supportRestartPrimitive, glewIsExtensionSupported("GL_NV_primitive_restart"));
LOG("\tclip-space control support: %i (%i)", supportClipSpaceControl, glewIsExtensionSupported("GL_ARB_clip_control"));
LOG("\tseamless cube-map support : %i (%i)", supportSeamlessCubeMaps, glewIsExtensionSupported("GL_ARB_seamless_cube_map"));
LOG("\tfrag-depth layout support : %i (-)", supportFragDepthLayout);
LOG("\t");
LOG("\tmax. FBO samples : %i", FBO::GetMaxSamples());
LOG("\tmax. texture size : %i", maxTextureSize);
LOG("\tmax. texture anisotropy level: %f", maxTexAnisoLvl);
LOG("\tmax. vec4 varyings/attributes: %i/%i", glslMaxVaryings, glslMaxAttributes);
LOG("\tmax. draw-buffers : %i", glslMaxDrawBuffers);
LOG("\tmax. rec. indices/vertices : %i/%i", glslMaxRecommendedIndices, glslMaxRecommendedVertices);
LOG("\tmax. uniform buffer-bindings : %i", glslMaxUniformBufferBindings);
LOG("\tmax. uniform block-size : %iKB", glslMaxUniformBufferSize / 1024);
LOG("\t");
LOG("\trun-time texture compression: %i", compressTextures);
LOG("\t");
}
void CGlobalRendering::LogDisplayMode(SDL_Window* window) const
{
// print final mode (call after UpdateViewPortGeometry, which updates viewSizeX/Y)
SDL_DisplayMode dmode;
SDL_GetWindowDisplayMode(window, &dmode);
constexpr const char* names[] = {
"windowed::decorated",
"windowed::borderless",
"fullscreen::decorated",
"fullscreen::borderless",
};
const int fs = fullScreen;
const int bl = borderless;
LOG("[GR::%s] display-mode set to %ix%ix%ibpp@%iHz (%s)", __func__, viewSizeX, viewSizeY, SDL_BITSPERPIXEL(dmode.format), dmode.refresh_rate, names[fs * 2 + bl]);
}
void CGlobalRendering::SetWindowTitle(const std::string& title)
{
SDL_SetWindowTitle(sdlWindows[0], title.c_str());
}
void CGlobalRendering::ConfigNotify(const std::string& key, const std::string& value)
{
if (sdlWindows[0] == nullptr)
return;
// update wanted state
borderless = configHandler->GetBool("WindowBorderless");
fullScreen = configHandler->GetBool("Fullscreen");
const uint32_t sdlWindowFlags = SDL_GetWindowFlags(sdlWindows[0]);
const uint32_t fullScreenFlag = (sdlWindowFlags & SDL_WINDOW_FULLSCREEN);
// get desired resolution
// note that the configured fullscreen resolution is just
// ignored by SDL if not equal to the user's screen size
const int2 newRes = GetCfgWinRes(fullScreen);
const int2 maxRes = GetMaxWinRes();
LOG("[GR::%s][1] key=%s val=%s (cfgFullScreen=%d sdlFullScreen=%d) newRes=<%d,%d>", __func__, key.c_str(), value.c_str(), fullScreen, fullScreenFlag == SDL_WINDOW_FULLSCREEN, newRes.x, newRes.y);
// if currently in fullscreen mode, neither SDL_SetWindowSize nor SDL_SetWindowBordered will work
// need to first drop to windowed mode before changing these properties, then switch modes again
// the maximized-flag also has to be cleared, otherwise going from native fullscreen to windowed
// ignores the configured *ResolutionWindowed values
// (SDL_SetWindowDisplayMode sets the mode used by fullscreen windows which is not what we want)
#if 0
if (fullScreenFlag == SDL_WINDOW_FULLSCREEN) {
SDL_SetWindowFullscreen(sdlWindows[0], 0);
SDL_RestoreWindow(sdlWindows[0]);
}
#endif
if (SDL_SetWindowFullscreen(sdlWindows[0], 0) != 0)
LOG("[GR::%s][2][SDL_SetWindowFullscreen] err=\"%s\"", __func__, SDL_GetError());
SDL_RestoreWindow(sdlWindows[0]);
SDL_SetWindowPosition(sdlWindows[0], configHandler->GetInt("WindowPosX"), configHandler->GetInt("WindowPosY"));
SDL_SetWindowSize(sdlWindows[0], newRes.x, newRes.y);
SDL_SetWindowBordered(sdlWindows[0], borderless ? SDL_FALSE : SDL_TRUE);
if (SDL_SetWindowFullscreen(sdlWindows[0], (borderless? SDL_WINDOW_FULLSCREEN_DESKTOP: SDL_WINDOW_FULLSCREEN) * fullScreen) != 0)
LOG("[GR::%s][3][SDL_SetWindowFullscreen] err=\"%s\"", __func__, SDL_GetError());
if (newRes == maxRes)
SDL_MaximizeWindow(sdlWindows[0]);
WindowManagerHelper::SetWindowResizable(sdlWindows[0], !borderless && !fullScreen);
// on Windows, fullscreen-to-windowed switches can sometimes cause the context to be lost (?)
MakeCurrentContext(false, false, false);
}
bool CGlobalRendering::SetWindowInputGrabbing(bool enable)
{
SDL_SetWindowGrab(sdlWindows[0], enable? SDL_TRUE: SDL_FALSE);
return enable;
}
bool CGlobalRendering::ToggleWindowInputGrabbing()
{
if (SDL_GetWindowGrab(sdlWindows[0]))
return (SetWindowInputGrabbing(false));
return (SetWindowInputGrabbing(true));
}
int2 CGlobalRendering::GetMaxWinRes() const {
SDL_DisplayMode dmode;
SDL_GetDesktopDisplayMode(0, &dmode);
return {dmode.w, dmode.h};
}
int2 CGlobalRendering::GetCfgWinRes(bool fullScrn) const
{
static const char* xsKeys[2] = {"XResolutionWindowed", "XResolution"};
static const char* ysKeys[2] = {"YResolutionWindowed", "YResolution"};
int2 res = {configHandler->GetInt(xsKeys[fullScrn]), configHandler->GetInt(ysKeys[fullScrn])};
// copy Native Desktop Resolution if user did not specify a value
// SDL2 can do this itself if size{X,Y} are set to zero but fails
// with Display Cloning and similar, causing DVI monitors to only
// run at (e.g.) 640x400 and HDMI devices at full-HD
// TODO: make screen configurable?
if (res.x <= 0 || res.y <= 0)
res = GetMaxWinRes();
// limit minimum window size in windowed mode
res.x = std::max(res.x, MIN_WIN_SIZE_X * (1 - fullScrn));
res.y = std::max(res.y, MIN_WIN_SIZE_Y * (1 - fullScrn));
return res;
}
// only called on startup; change the config based on command-line args
void CGlobalRendering::SetFullScreen(bool cliWindowed, bool cliFullScreen)
{
const bool cfgFullScreen = configHandler->GetBool("Fullscreen");
fullScreen = (cfgFullScreen && !cliWindowed );
fullScreen = (cfgFullScreen || cliFullScreen);
configHandler->Set("Fullscreen", fullScreen);
}
void CGlobalRendering::SetDualScreenParams()
{
if ((dualScreenMode = configHandler->GetBool("DualScreenMode"))) {
dualScreenMiniMapOnLeft = configHandler->GetBool("DualScreenMiniMapOnLeft");
} else {
dualScreenMiniMapOnLeft = false;
}
}
void CGlobalRendering::UpdateViewPortGeometry()
{
// NOTE: viewPosY is not currently used (always 0)
viewSizeX = winSizeX >> (1 * dualScreenMode);
viewSizeY = winSizeY;
viewPosX = (winSizeX >> 1) * dualScreenMode * dualScreenMiniMapOnLeft;
viewPosY = 0;
}
void CGlobalRendering::UpdatePixelGeometry()
{
pixelX = 1.0f / viewSizeX;
pixelY = 1.0f / viewSizeY;
aspectRatio = viewSizeX / float(viewSizeY);
}
void CGlobalRendering::ReadWindowPosAndSize()
{
#ifdef HEADLESS
screenSizeX = 8;
screenSizeY = 8;
winSizeX = 8;
winSizeY = 8;
winPosX = 0;
winPosY = 0;
#else
SDL_Rect screenSize;
SDL_GetDisplayBounds(SDL_GetWindowDisplayIndex(sdlWindows[0]), &screenSize);
// no other good place to set these
screenSizeX = screenSize.w;
screenSizeY = screenSize.h;
SDL_GetWindowSize(sdlWindows[0], &winSizeX, &winSizeY);
SDL_GetWindowPosition(sdlWindows[0], &winPosX, &winPosY);
#endif
// should be done by caller
// UpdateViewPortGeometry();
}
void CGlobalRendering::SaveWindowPosAndSize()
{
#ifdef HEADLESS
return;
#endif
if (fullScreen)
return;
// do not save if minimized
// note that maximized windows are automagically restored; SDL2
// apparently detects if the resolution is maximal and sets the
// flag (but we also check if winRes equals maxRes to be safe)
if ((SDL_GetWindowFlags(sdlWindows[0]) & SDL_WINDOW_MINIMIZED) != 0)
return;
configHandler->Set("WindowPosX", winPosX);
configHandler->Set("WindowPosY", winPosY);
configHandler->Set("XResolutionWindowed", winSizeX);
configHandler->Set("YResolutionWindowed", winSizeY);
}
void CGlobalRendering::UpdateGLConfigs()
{
LOG("[GR::%s]", __func__);
// re-read configuration value
verticalSync->SetInterval();
}
void CGlobalRendering::UpdateGLGeometry()
{
LOG("[GR::%s][1] winSize=<%d,%d>", __func__, winSizeX, winSizeY);
ReadWindowPosAndSize();
SetDualScreenParams();
UpdateViewPortGeometry();
UpdatePixelGeometry();
LOG("[GR::%s][2] winSize=<%d,%d>", __func__, winSizeX, winSizeY);
}
void CGlobalRendering::InitGLState()
{
LOG("[GR::%s] glAttribStatePtr=%p", __func__, glAttribStatePtr);
if (glAttribStatePtr == nullptr) {
glClearDepth(1.0f);
glDepthRangef(0.0f, 1.0f);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
#ifdef GLEW_ARB_clip_control
// avoid precision loss with default DR transform
if (supportClipSpaceControl)
glClipControl(GL_LOWER_LEFT, GL_ZERO_TO_ONE);
#endif
#ifdef GLEW_ARB_seamless_cube_map
if (supportSeamlessCubeMaps)
glEnable(GL_TEXTURE_CUBE_MAP_SEAMLESS);
#endif
// MSAA rasterization
if ((msaaLevel *= CheckGLMultiSampling()) != 0) {
glEnable(GL_MULTISAMPLE);
} else {
glDisable(GL_MULTISAMPLE);
}
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glViewport(viewPosX, viewPosY, viewSizeX, viewSizeY);
// GL::MultMatrix(CMatrix44f::PerspProj(aspectRatio, std::tan((45.0f * math::DEG_TO_RAD) * 0.5f), minViewRange, maxViewRange));
} else {
// resize event, no need to reinitialize state in modern times
glAttribStatePtr->ViewPort(viewPosX, viewPosY, viewSizeX, viewSizeY);
}
// this does not accomplish much
// SwapBuffers(true, true);
LogDisplayMode(sdlWindows[0]);
}
/**
* @brief multisample verify
* @return whether verification passed
*/
bool CGlobalRendering::CheckGLMultiSampling() const
{
if (msaaLevel == 0)
return false;
GLint buffers = 0;
GLint samples = 0;
glGetIntegerv(GL_SAMPLE_BUFFERS, &buffers);
glGetIntegerv(GL_SAMPLES, &samples);
return (buffers != 0 && samples != 0);
}
bool CGlobalRendering::CheckGLStencilBufferBits(int minBufferBits) const
{
#ifdef HEADLESS
return true;
#endif
GLint ctxBufferBits = 0;
// GL4.5, must be GL_STENCIL for default FB
// glGetNamedFramebufferAttachmentParameteriv(0, GL_STENCIL, GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE, &ctxBufferBits);
glGetFramebufferAttachmentParameteriv(GL_FRAMEBUFFER, GL_STENCIL, GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE, &ctxBufferBits);
return (ctxBufferBits >= minBufferBits);
}
bool CGlobalRendering::CheckGLContextVersion(const int2& minCtx) const
{
#ifdef HEADLESS
return true;
#else
int2 tmpCtx = {0, 0};
glGetIntegerv(GL_MAJOR_VERSION, &tmpCtx.x);
glGetIntegerv(GL_MINOR_VERSION, &tmpCtx.y);
// keep this for convenience
globalRenderingInfo.glContextVersion = tmpCtx;
// compare major * 10 + minor s.t. 4.1 evaluates as larger than 3.2
return ((tmpCtx.x * 10 + tmpCtx.y) >= (minCtx.x * 10 + minCtx.y));
#endif
}
bool CGlobalRendering::CheckGLEWContextVersion(const int2& curCtx) const
{
#ifdef HEADLESS
return true;
#else
int2 tmpCtx = {0, 0};
// GLEW should know this GL version exists
switch (curCtx.x * 10 + curCtx.y) {
#ifdef GLEW_VERSION_3_0
case 30: { tmpCtx = curCtx * GLEW_VERSION_3_0; } break;
#endif
#ifdef GLEW_VERSION_3_1
case 31: { tmpCtx = curCtx * GLEW_VERSION_3_1; } break;
#endif
#ifdef GLEW_VERSION_3_2
case 32: { tmpCtx = curCtx * GLEW_VERSION_3_2; } break;
#endif
#ifdef GLEW_VERSION_3_3
case 33: { tmpCtx = curCtx * GLEW_VERSION_3_3; } break;
#endif
#ifdef GLEW_VERSION_4_0
case 40: { tmpCtx = curCtx * GLEW_VERSION_4_0; } break;
#endif
#ifdef GLEW_VERSION_4_1
case 41: { tmpCtx = curCtx * GLEW_VERSION_4_1; } break;
#endif
#ifdef GLEW_VERSION_4_2
case 42: { tmpCtx = curCtx * GLEW_VERSION_4_2; } break;
#endif
#ifdef GLEW_VERSION_4_3
case 43: { tmpCtx = curCtx * GLEW_VERSION_4_3; } break;
#endif
#ifdef GLEW_VERSION_4_4
case 44: { tmpCtx = curCtx * GLEW_VERSION_4_4; } break;
#endif
#ifdef GLEW_VERSION_4_5
case 45: { tmpCtx = curCtx * GLEW_VERSION_4_5; } break;
#endif
#ifdef GLEW_VERSION_4_6
case 46: { tmpCtx = curCtx * GLEW_VERSION_4_6; } break;
#endif
default: {} break;
}
return ((tmpCtx.x * 10 + tmpCtx.y) >= (curCtx.x * 10 + curCtx.y));
#endif
}
#if defined(_WIN32) && !defined(HEADLESS)
#if defined(_MSC_VER) && _MSC_VER >= 1600
#define _GL_APIENTRY __stdcall
#else
#include <windef.h>
#define _GL_APIENTRY APIENTRY
#endif
#else
#define _GL_APIENTRY
#endif
#if (defined(GL_ARB_debug_output) && !defined(HEADLESS))
#ifndef GL_DEBUG_SOURCE_API
#define GL_DEBUG_SOURCE_API GL_DEBUG_SOURCE_API_ARB
#define GL_DEBUG_SOURCE_WINDOW_SYSTEM GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB
#define GL_DEBUG_SOURCE_SHADER_COMPILER GL_DEBUG_SOURCE_SHADER_COMPILER_ARB
#define GL_DEBUG_SOURCE_THIRD_PARTY GL_DEBUG_SOURCE_THIRD_PARTY_ARB
#define GL_DEBUG_SOURCE_APPLICATION GL_DEBUG_SOURCE_APPLICATION_ARB
#define GL_DEBUG_SOURCE_OTHER GL_DEBUG_SOURCE_OTHER_ARB
#define GL_DEBUG_TYPE_ERROR GL_DEBUG_TYPE_ERROR_ARB
#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB
#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB
#define GL_DEBUG_TYPE_PORTABILITY GL_DEBUG_TYPE_PORTABILITY_ARB
#define GL_DEBUG_TYPE_PERFORMANCE GL_DEBUG_TYPE_PERFORMANCE_ARB
#if (defined(GL_DEBUG_TYPE_MARKER_ARB) && defined(GL_DEBUG_TYPE_PUSH_GROUP_ARB) && defined(GL_DEBUG_TYPE_POP_GROUP_ARB))
#define GL_DEBUG_TYPE_MARKER GL_DEBUG_TYPE_MARKER_ARB
#define GL_DEBUG_TYPE_PUSH_GROUP GL_DEBUG_TYPE_PUSH_GROUP_ARB
#define GL_DEBUG_TYPE_POP_GROUP GL_DEBUG_TYPE_POP_GROUP_ARB
#else
#define GL_DEBUG_TYPE_MARKER -1u
#define GL_DEBUG_TYPE_PUSH_GROUP -2u
#define GL_DEBUG_TYPE_POP_GROUP -3u
#endif
#define GL_DEBUG_TYPE_OTHER GL_DEBUG_TYPE_OTHER_ARB
#define GL_DEBUG_SEVERITY_HIGH GL_DEBUG_SEVERITY_HIGH_ARB
#define GL_DEBUG_SEVERITY_MEDIUM GL_DEBUG_SEVERITY_MEDIUM_ARB
#define GL_DEBUG_SEVERITY_LOW GL_DEBUG_SEVERITY_LOW_ARB
#define GL_DEBUG_OUTPUT_SYNCHRONOUS GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB
#define GLDEBUGPROC GLDEBUGPROCARB
#endif
#ifndef glDebugMessageCallback
#define glDebugMessageCallback glDebugMessageCallbackARB
#define glDebugMessageControl glDebugMessageControlARB
#endif
constexpr static std::array<GLenum, 7> msgSrceEnums = {GL_DONT_CARE, GL_DEBUG_SOURCE_API, GL_DEBUG_SOURCE_WINDOW_SYSTEM, GL_DEBUG_SOURCE_SHADER_COMPILER, GL_DEBUG_SOURCE_THIRD_PARTY, GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_SOURCE_OTHER};
constexpr static std::array<GLenum, 10> msgTypeEnums = {GL_DONT_CARE, GL_DEBUG_TYPE_ERROR, GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR, GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR, GL_DEBUG_TYPE_PORTABILITY, GL_DEBUG_TYPE_PERFORMANCE, GL_DEBUG_TYPE_MARKER, GL_DEBUG_TYPE_PUSH_GROUP, GL_DEBUG_TYPE_POP_GROUP, GL_DEBUG_TYPE_OTHER};
constexpr static std::array<GLenum, 4> msgSevrEnums = {GL_DONT_CARE, GL_DEBUG_SEVERITY_LOW, GL_DEBUG_SEVERITY_MEDIUM, GL_DEBUG_SEVERITY_HIGH};
static inline const char* glDebugMessageSourceName(GLenum msgSrce) {
switch (msgSrce) {
case GL_DEBUG_SOURCE_API : return "API"; break;
case GL_DEBUG_SOURCE_WINDOW_SYSTEM : return "WINDOW_SYSTEM"; break;
case GL_DEBUG_SOURCE_SHADER_COMPILER: return "SHADER_COMPILER"; break;
case GL_DEBUG_SOURCE_THIRD_PARTY : return "THIRD_PARTY"; break;
case GL_DEBUG_SOURCE_APPLICATION : return "APPLICATION"; break;
case GL_DEBUG_SOURCE_OTHER : return "OTHER"; break;
case GL_DONT_CARE : return "DONT_CARE"; break;
default : ; break;
}
return "UNKNOWN";
}
static inline const char* glDebugMessageTypeName(GLenum msgType) {
switch (msgType) {
case GL_DEBUG_TYPE_ERROR : return "ERROR"; break;
case GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR: return "DEPRECATED"; break;
case GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR : return "UNDEFINED"; break;
case GL_DEBUG_TYPE_PORTABILITY : return "PORTABILITY"; break;
case GL_DEBUG_TYPE_PERFORMANCE : return "PERFORMANCE"; break;
case GL_DEBUG_TYPE_MARKER : return "MARKER"; break;
case GL_DEBUG_TYPE_PUSH_GROUP : return "PUSH_GROUP"; break;
case GL_DEBUG_TYPE_POP_GROUP : return "POP_GROUP"; break;
case GL_DEBUG_TYPE_OTHER : return "OTHER"; break;
case GL_DONT_CARE : return "DONT_CARE"; break;
default : ; break;
}
return "UNKNOWN";
}
static inline const char* glDebugMessageSeverityName(GLenum msgSevr) {
switch (msgSevr) {
case GL_DEBUG_SEVERITY_HIGH : return "HIGH"; break;
case GL_DEBUG_SEVERITY_MEDIUM: return "MEDIUM"; break;
case GL_DEBUG_SEVERITY_LOW : return "LOW"; break;
case GL_DONT_CARE : return "DONT_CARE"; break;
default : ; break;
}
return "UNKNOWN";
}
static void _GL_APIENTRY glDebugMessageCallbackFunc(
GLenum msgSrce,
GLenum msgType,
GLuint msgID,
GLenum msgSevr,
GLsizei length,
const GLchar* dbgMessage,
const GLvoid* userParam
) {
switch (msgID) {
case 131154: { return; } break; // "Pixel-path performance warning: Pixel transfer is synchronized with 3D rendering."
case 131169: { return; } break; // "Framebuffer detailed info: The driver allocated storage for renderbuffer N."
case 131185: { return; } break; // "Buffer detailed info: Buffer object 123 (bound to GL_PIXEL_UNPACK_BUFFER_ARB, usage hint is GL_STREAM_DRAW) has been mapped in DMA CACHED memory."
case 131204: { return; } break; // "Texture state usage warning: Texture 123 is base level inconsistent. Check texture size."
case 131218: { return; } break; // "Program/shader state performance warning: Vertex shader in program 123 is being recompiled based on GL state."
default : { } break;
}
const char* msgSrceStr = glDebugMessageSourceName(msgSrce);
const char* msgTypeStr = glDebugMessageTypeName(msgType);
const char* msgSevrStr = glDebugMessageSeverityName(msgSevr);
LOG_L(L_WARNING, "[OPENGL_DEBUG] id=%u source=%s type=%s severity=%s msg=\"%s\"", msgID, msgSrceStr, msgTypeStr, msgSevrStr, dbgMessage);
if ((userParam == nullptr) || !(*reinterpret_cast<const bool*>(userParam)))
return;
CrashHandler::PrepareStacktrace();
CrashHandler::Stacktrace(Threading::GetCurrentThread(), "rendering", LOG_LEVEL_WARNING);
CrashHandler::CleanupStacktrace();
}
#endif
bool CGlobalRendering::ToggleGLDebugOutput(unsigned int msgSrceIdx, unsigned int msgTypeIdx, unsigned int msgSevrIdx)
{
const static bool dbgOutput = configHandler->GetBool("DebugGL");
const static bool dbgTraces = configHandler->GetBool("DebugGLStacktraces");
if (!dbgOutput) {
LOG("[GR::%s] OpenGL debug-context not installed (dbgErrors=%d dbgTraces=%d)", __func__, glDebugErrors, dbgTraces);
return false;
}
#if (defined(GL_ARB_debug_output) && !defined(HEADLESS))
if ((glDebug = !glDebug)) {
const char* msgSrceStr = glDebugMessageSourceName (msgSrceEnums[msgSrceIdx %= msgSrceEnums.size()]);
const char* msgTypeStr = glDebugMessageTypeName (msgTypeEnums[msgTypeIdx %= msgTypeEnums.size()]);
const char* msgSevrStr = glDebugMessageSeverityName(msgSevrEnums[msgSevrIdx %= msgSevrEnums.size()]);
// install OpenGL debug message callback; typecast is a workaround
// for #4510 (change in callback function signature with GLEW 1.11)
// use SYNCHRONOUS output, we want our callback to run in the same
// thread as the bugged GL call (for proper stacktraces)
// CB userParam is const, but has to be specified sans qualifiers
glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS);
glDebugMessageCallback((GLDEBUGPROC) &glDebugMessageCallbackFunc, (void*) &dbgTraces);
glDebugMessageControl(msgSrceEnums[msgSrceIdx], msgTypeEnums[msgTypeIdx], msgSevrEnums[msgSevrIdx], 0, nullptr, GL_TRUE);
LOG("[GR::%s] OpenGL debug-message callback enabled (source=%s type=%s severity=%s)", __func__, msgSrceStr, msgTypeStr, msgSevrStr);
} else {
glDebugMessageCallback(nullptr, nullptr);
glDisable(GL_DEBUG_OUTPUT_SYNCHRONOUS);
LOG("[GR::%s] OpenGL debug-message callback disabled", __func__);
}
#endif
return true;
}
|