Skip to content
Snippets Groups Projects
Verified Commit 0db3faab authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#96] Added doxygen comments to define modules as groups

parent 9632a747
No related branches found
No related tags found
1 merge request!97Resolve "Dokumentation vervollständigen"
Pipeline #27228 passed
...@@ -5,6 +5,11 @@ ...@@ -5,6 +5,11 @@
#include <vkcv/ShaderProgram.hpp> #include <vkcv/ShaderProgram.hpp>
namespace vkcv::upscaling { namespace vkcv::upscaling {
/**
* @addtogroup vkcv_upscaling
* @{
*/
enum class FSRQualityMode : int { enum class FSRQualityMode : int {
NONE = 0, NONE = 0,
...@@ -80,4 +85,6 @@ namespace vkcv::upscaling { ...@@ -80,4 +85,6 @@ namespace vkcv::upscaling {
}; };
/** @} */
} }
...@@ -4,6 +4,12 @@ ...@@ -4,6 +4,12 @@
#include <vkcv/Handles.hpp> #include <vkcv/Handles.hpp>
namespace vkcv::upscaling { namespace vkcv::upscaling {
/**
* @defgroup vkcv_upscaling Upscaling Module
* A module to upscale an image from an internal resolution to a final resolution in realtime.
* @{
*/
class Upscaling { class Upscaling {
protected: protected:
...@@ -19,5 +25,7 @@ namespace vkcv::upscaling { ...@@ -19,5 +25,7 @@ namespace vkcv::upscaling {
const ImageHandle& output) = 0; const ImageHandle& output) = 0;
}; };
/** @} */
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment