Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

glTexSubImage2D(), support more texture formats, fast conversions #30

Merged
merged 12 commits into from
May 30, 2024
Merged
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.13)
project(OpenGX VERSION 0.1)

set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)

set(TARGET opengx)

Expand All @@ -15,9 +16,10 @@ add_library(${TARGET} STATIC
src/image_DXT.c
src/image_DXT.h
src/opengx.h
src/pixels.c
src/pixels.cpp
src/pixels.h
src/state.h
src/texture.c
src/utils.h
)
set_target_properties(${TARGET} PROPERTIES
Expand Down
Loading