Compare commits

..

2 Commits

Author SHA1 Message Date
21c51ee0a3 hidpi support 2024-03-10 16:47:26 +11:00
0d891b4874 windows 2024-03-10 16:30:51 +11:00
2 changed files with 7 additions and 6 deletions

View File

@@ -1,15 +1,15 @@
cmake_minimum_required(VERSION "3.5" FATAL_ERROR)
project(Lesson10 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 98)
find_package(SDL3 REQUIRED CONFIG)
find_package(OpenGL REQUIRED)
add_executable(Lesson10 Lesson10.cpp)
set_property(TARGET Lesson10 PROPERTY CXX_STANDARD 98)
target_link_libraries(Lesson10 SDL3::SDL3 OpenGL::GL)
target_compile_options(Lesson10 PRIVATE -Wall -Wextra -pedantic)
set_target_properties(Lesson10 PROPERTIES
CXX_STANDARD 98
WIN32_EXECUTABLE ON)
target_link_libraries(Lesson10 SDL3::SDL3 OpenGL::GL OpenGL::GLU)
target_compile_options(Lesson10 PRIVATE $<$<CXX_COMPILER_ID:GNU>:-Wall -Wextra -pedantic>)
if (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
get_property(SDL3_IMPORTED_LOCATION TARGET SDL3::SDL3 PROPERTY IMPORTED_LOCATION)

View File

@@ -8,6 +8,7 @@
#include <math.h> // Math Library Header File
#include <stdio.h> // Header File For Standard Input/Output
#include <stdlib.h>
#include <SDL.h>
#include <SDL_main.h>
#include <SDL_opengl.h> // Header File For The OpenGL32 Library
@@ -314,7 +315,7 @@ bool CreateGLWindow(char* title, int width, int height, int bits, bool fullscree
if (!(hWnd = SDL_CreateWindow(title,
WindowRect.w, // Window Width
WindowRect.h, // Window Height
SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE)))
SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_HIGH_PIXEL_DENSITY)))
{
KillGLWindow(); // Reset The Display
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "ERROR", "Window Creation Error.", NULL);