~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to src/video/OpenGL/texture.hpp

  • Committer: Thomas Geymayer
  • Date: 2009-12-31 15:38:07 UTC
  • Revision ID: tomgey@gmail.com-20091231153807-9833458pgys6ia7j
Cleaned up and improved documentation:
 - Different doxyfiles for developers and users
 - Renamed remaining .h to .hpp
 - Relative paths in doxyfiles instead of absolute

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//------------------------------------------------------------------------------
 
2
// OpenGL/texture.hpp - this file is part of the gewoopi game engine
 
3
// (c) copyright 2008 Thomas Geymayer <tomgey@gmail.com>
 
4
// For conditions of distribution and use, see copyright notice in gewoopi.hpp
 
5
//------------------------------------------------------------------------------
 
6
 
1
7
/*!
2
 
 * @file texture.h
 
8
 * @file
3
9
 * @brief
4
10
 * @details
5
11
 * @author Thomas Geymayer <tomgey@gmail.com>
6
12
 * @date Date of Creation: 12.12.2009
7
13
 */
8
14
 
9
 
#ifndef _OPENGL_TEXTURE_H_
10
 
#define _OPENGL_TEXTURE_H_
 
15
#ifndef _OPENGL_TEXTURE_HPP_
 
16
#define _OPENGL_TEXTURE_HPP_
11
17
 
12
 
#include "video/texture.h"
 
18
#include "video/texture.hpp"
13
19
#include <SDL/SDL_opengl.h>
14
20
 
15
21
namespace gewoopi
35
41
} // namespace video
36
42
} // namespace gewoopi
37
43
 
38
 
#endif /* _OPENGL_TEXTURE_H_ */
 
44
#endif /* _OPENGL_TEXTURE_HPP_ */