Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • STJr/UltimateZoneBuilder
  • KartKrew/high-voltage-ring
  • ashi/ultimate-zone-builder
  • Alam/UltimateZoneBuilder
  • Indev/UltimateZoneBuilder
  • Acelite/UltimateZoneBuilder
  • LoganAir/high-voltage-ring
  • coatlessali/high-voltage-ring
  • spherallic/high-voltage-ring
  • EeveeEuphoria/high-voltage-ring
  • StarManiaKG/the-story-of-horsepowering-vetted-racing
  • frostu8/high-voltage-ring
  • Benji_Menji/high-voltage-ring
  • Nep2Disk/UltimateZoneBuilder
  • PencilVoid/high-voltage-ring
15 results
Show changes
Commits on Source (2)
......@@ -210,7 +210,7 @@ i386:
variables:
CC: ccache i686-linux-gnu-gcc
CXX: ccache i686-linux-gnu-g++
CPPFLAGS: -msse2 -Werror
CPPFLAGS: -msse2
artifacts:
paths:
......@@ -249,7 +249,6 @@ amd64:
variables:
CC: ccache x86_64-linux-gnu-gcc
CXX: ccache x86_64-linux-gnu-gcc
CPPFLAGS: -Werror
artifacts:
paths:
......@@ -288,7 +287,6 @@ arm64:
variables:
CC: ccache aarch64-linux-gnu-gcc
CXX: ccache aarch64-linux-gnu-g++
CPPFLAGS: -Werror
artifacts:
paths:
......@@ -327,7 +325,6 @@ win32:
variables:
CC: ccache i686-w64-mingw32-gcc-posix
CXX: ccache i686-w64-mingw32-g++-posix
CPPFLAGS: -Werror
artifacts:
paths:
......@@ -358,7 +355,6 @@ win64:
variables:
CC: ccache x86_64-w64-mingw32-gcc-posix
CXX: ccache x86_64-w64-mingw32-g++-posix
CPPFLAGS: -Werror
artifacts:
paths:
......
......@@ -21,7 +21,7 @@ INC_FLAGS := $(addprefix -I,$(INC_DIRS))
CPPFLAGS_ := $(INC_FLAGS) -MMD -MP
CFLAGS_ = -O2 --shared -g3 -fPIC -Wall -Wextra -Wno-unused-parameter
CFLAGS_ = -O2 -g3 -fPIC -Wall -Wextra -Wno-unused-parameter -Werror
ifdef MINGW
CFLAGS_ += -msse2
......@@ -30,9 +30,9 @@ endif
CXXFLAGS_ = -std=c++14 $(CFLAGS_)
ifdef MINGW
LDFLAGS_ = -lopengl32 -lgdi32 --shared -Wl,--subsystem,windows
LDFLAGS_ = -lopengl32 -lgdi32 -shared -Wl,--subsystem,windows
else
LDFLAGS_ = -lX11 -ldl --shared
LDFLAGS_ = -lX11 -ldl -shared
endif
all: builder Build/$(TARGET_EXEC)
......
......@@ -63,7 +63,6 @@ private:
int mHeight = 0;
PixelFormat mFormat = {};
bool mCubeTexture = false;
bool mPBOTexture = false;
GLuint mTexture = 0;
GLuint mFramebuffer = 0;
GLuint mDepthRenderbuffer = 0;
......
......@@ -513,9 +513,6 @@ private:
bool is_glx_extension_supported(const char* ext_name);
int major_version = 3;
int minor_version = 2;
void* opengl_lib_handle = nullptr;
};
......