2015-05-19 12:29:31 +00:00
|
|
|
|
/*
|
|
|
|
|
* This file is part of the Colobot: Gold Edition source code
|
|
|
|
|
* Copyright (C) 2001-2014, Daniel Roux, EPSITEC SA & TerranovaTeam
|
|
|
|
|
* http://epsiteс.ch; http://colobot.info; http://github.com/colobot
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see http://gnu.org/licenses
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2015-08-02 11:09:48 +00:00
|
|
|
|
// config.h must be included first
|
2015-05-19 21:02:54 +00:00
|
|
|
|
#include "common/config.h"
|
|
|
|
|
|
2015-08-02 11:09:48 +00:00
|
|
|
|
#include "graphics/core/device.h"
|
|
|
|
|
|
2015-05-19 21:02:54 +00:00
|
|
|
|
#include <GL/glew.h>
|
|
|
|
|
|
2015-06-25 22:24:05 +00:00
|
|
|
|
#include <memory>
|
|
|
|
|
|
2015-05-19 12:29:31 +00:00
|
|
|
|
|
|
|
|
|
// Graphics module namespace
|
|
|
|
|
namespace Gfx
|
|
|
|
|
{
|
|
|
|
|
|
2015-06-21 16:48:31 +00:00
|
|
|
|
enum FramebufferSupport
|
|
|
|
|
{
|
|
|
|
|
FBS_NONE,
|
|
|
|
|
FBS_EXT,
|
|
|
|
|
FBS_ARB,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
FramebufferSupport DetectFramebufferSupport();
|
|
|
|
|
|
2015-06-15 18:20:03 +00:00
|
|
|
|
//! Creates OpenGL device
|
2015-06-25 22:24:05 +00:00
|
|
|
|
std::unique_ptr<CDevice> CreateDevice(const DeviceConfig &config, const std::string& name);
|
2015-06-15 18:20:03 +00:00
|
|
|
|
|
|
|
|
|
//! Returns OpenGL version as one number.
|
|
|
|
|
// First digit is major part, second digit is minor part.
|
|
|
|
|
int GetOpenGLVersion();
|
|
|
|
|
|
2015-05-19 12:29:31 +00:00
|
|
|
|
//! Translate Gfx primitive type to OpenGL primitive type
|
|
|
|
|
GLenum TranslateGfxPrimitive(PrimitiveType type);
|
|
|
|
|
|
|
|
|
|
CompFunc TranslateGLCompFunc(GLenum flag);
|
|
|
|
|
|
|
|
|
|
GLenum TranslateGfxCompFunc(CompFunc func);
|
|
|
|
|
|
|
|
|
|
BlendFunc TranslateGLBlendFunc(GLenum flag);
|
|
|
|
|
|
|
|
|
|
GLenum TranslateGfxBlendFunc(BlendFunc func);
|
|
|
|
|
|
|
|
|
|
bool InPlane(Math::Vector normal, float originPlane, Math::Vector center, float radius);
|
|
|
|
|
|
2015-05-19 14:26:41 +00:00
|
|
|
|
GLenum TranslateTextureCoordinate(int index);
|
|
|
|
|
|
|
|
|
|
GLenum TranslateTextureCoordinateGen(int index);
|
|
|
|
|
|
2015-06-01 15:21:10 +00:00
|
|
|
|
GLint LoadShader(GLint type, const char* filename);
|
|
|
|
|
|
|
|
|
|
GLint LinkProgram(int count, GLint shaders[]);
|
|
|
|
|
|
2015-05-19 12:29:31 +00:00
|
|
|
|
} // namespace Gfx
|