~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to include/gewoopi/video/renderer.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
1
//------------------------------------------------------------------------------
2
 
// renderer.h - this file is part of the gewoopi game engine
 
2
// renderer.hpp - this file is part of the gewoopi game engine
3
3
// (c) copyright 2008 Thomas Geymayer <tomgey@gmail.com>
4
 
// For conditions of distribution and use, see copyright notice in gewoopi.h
 
4
// For conditions of distribution and use, see copyright notice in gewoopi.hpp
5
5
//------------------------------------------------------------------------------
6
6
 
7
 
#ifndef RENDERER_H_
8
 
#define RENDERER_H_
 
7
#ifndef RENDERER_HPP_
 
8
#define RENDERER_HPP_
9
9
 
10
 
#include "../math/math.h"
11
 
#include "../scene/fwd.h"
 
10
#include "../math/math.hpp"
 
11
#include "../scene/fwd.hpp"
12
12
#include "../scene/mesh.hpp"
13
 
#include "vertex.h"
 
13
#include "vertex.hpp"
14
14
 
15
15
namespace gewoopi
16
16
{
221
221
} // namespace gewoopi
222
222
} // namespace video
223
223
 
224
 
#endif /* RENDERER_H_ */
 
224
#endif /* RENDERER_HPP_ */