blob: 9ce9729dd8d0bf4eb4ec539842234ad5846bab97 (
plain) (
blame)
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
|
// -*- C++ -*-
/*
* Simple MultimEdia LiTerator(SMELT)
* by Chris Xiong 2015
* Configuration header for SDL version
*
* Modify this header according to your own requirements.
*
*/
/*
* Maximum audio channels.
* (How many audio can be played simultaneously?)
*/
#define SRC_MAX 128
/*
* Vertex buffer size.
*/
#define VERTEX_BUFFER_SIZE 4000
/*
* Uncomment this to build a "dumb" version with no audio routines.
*/
//#define ENABLE_DUMB
/*
* Undefine this to disable ogg support.
*/
#define ENABLE_OGG_SUPPORT
/*
* Uncomment this to use the OpenGL 1.2/2.1 implementation instead.
*/
//#define USE_OPENGL_COMPATIBILITY_PROFILE
|