Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions BuildConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,14 @@


//
// Enable the use of OpenGL display driver
// Enable the use of OpenGL display driver, otherwise use DirectX.
//
#ifndef _LEGACY_VCC
#ifndef USE_OPENGL
#define USE_OPENGL true
#endif
#endif

//
// Enable the use of DirectX display driver
//
#ifndef USE_DIRECTX
#define USE_DIRECTX true
#endif

//
// Enable black fill to preserve aspect ratio, otherwise replicate border color.
//
Expand Down Expand Up @@ -91,6 +84,13 @@
//
// Edit options above rather than these:
//
#if !USE_OPENGL
#define USE_DIRECTX true
#endif

#if USE_OPENGL && USE_DIRECTX
#error Enable either USE_OPENGL or USE_DIRECTX not both.
#endif

///////////////////////////////////////////////////////////////////////////////////////////////////
// Options that are always off for release
Expand Down
Loading