-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tz::ren] created new doxygen module name for tz::ren
- Loading branch information
Showing
5 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef TOPAZ_REN_API_HPP | ||
#define TOPAZ_REN_API_HPP | ||
|
||
namespace tz::ren | ||
{ | ||
/** | ||
* @ingroup tz_ren | ||
* Interface for a high-level `tz::ren` renderer class. | ||
*/ | ||
class ihigh_level_renderer | ||
{ | ||
public: | ||
/** | ||
* Append this renderer to the end of the render-graph, without specifying any dependencies. | ||
*/ | ||
virtual void append_to_render_graph() = 0; | ||
}; | ||
} | ||
|
||
#endif // TOPAZ_REN_API_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef TOPAZ_REN_TZ_REN_HPP | ||
#define TOPAZ_REN_TZ_REN_HPP | ||
|
||
namespace tz::ren | ||
{ | ||
/** | ||
* @ingroup tz_cpp | ||
* @defgroup tz_ren Rendering Library | ||
* High-level 3D rendering library. Built ontop of @ref tz_gl2. | ||
* | ||
* The rendering library is mostly comprised of high-level renderer classes. | ||
*/ | ||
} | ||
|
||
#endif // TOPAZ_REN_TZ_REN_HPP |