~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/render/renderers.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  The ManaPlus Client
 
3
 *  Copyright (C) 2013  The ManaPlus Developers
 
4
 *
 
5
 *  This file is part of The ManaPlus Client.
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU General Public License as published by
 
9
 *  the Free Software Foundation; either version 2 of the License, or
 
10
 *  any later version.
 
11
 *
 
12
 *  This program is distributed in the hope that it will be useful,
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *  GNU General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU General Public License
 
18
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
#include "render/renderers.h"
 
22
 
 
23
static RenderType getDefault()
 
24
{
 
25
#ifdef USE_OPENGL
 
26
#ifdef ANDROID
 
27
    return RENDER_GLES_OPENGL;
 
28
#else
 
29
    return RENDER_NORMAL_OPENGL;
 
30
#endif
 
31
#else
 
32
    return RENDER_SOFTWARE;
 
33
#endif
 
34
}
 
35
 
 
36
RenderType intToRenderType(const int mode)
 
37
{
 
38
    if (mode < 0 || mode >= RENDER_LAST)
 
39
        return getDefault();
 
40
 
 
41
    if (mode != RENDER_SOFTWARE
 
42
#if defined(USE_OPENGL) && defined(ANDROID) && defined(USE_SDL2)
 
43
        && mode != RENDER_GLES_OPENGL && mode != RENDER_SDL2_DEFAULT)
 
44
#elif defined(USE_OPENGL) && defined(ANDROID) && !defined(USE_SDL2)
 
45
        && mode != RENDER_GLES_OPENGL)
 
46
#elif defined(USE_OPENGL) && !defined(ANDROID) && defined(USE_SDL2)
 
47
        && mode != RENDER_NORMAL_OPENGL && mode != RENDER_SAFE_OPENGL
 
48
        && mode != RENDER_GLES_OPENGL && mode != RENDER_SDL2_DEFAULT)
 
49
#elif !defined(USE_OPENGL) && defined(USE_SDL2)
 
50
        && mode != RENDER_SDL2_DEFAULT)
 
51
#elif !defined(USE_OPENGL) && !defined(USE_SDL2)
 
52
        )
 
53
#elif defined(USE_OPENGL) && !defined(ANDROID) && !defined(USE_SDL2)
 
54
        && mode != RENDER_NORMAL_OPENGL && mode != RENDER_SAFE_OPENGL
 
55
        && mode != RENDER_GLES_OPENGL)
 
56
#endif
 
57
    {
 
58
        return getDefault();
 
59
    }
 
60
 
 
61
    return static_cast<RenderType>(mode);
 
62
}