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

Adjust comments and fix typo

parent 2d555684
No related branches found
No related tags found
1 merge request!107Resolve "Include FSR 2.0 in the upscaling module"
...@@ -23,7 +23,7 @@ namespace vkcv::upscaling { ...@@ -23,7 +23,7 @@ namespace vkcv::upscaling {
explicit BilinearUpscaling(Core& core); explicit BilinearUpscaling(Core& core);
/** /**
* Record the comands of the bilinear upscaling instance to * Record the commands of the bilinear upscaling instance to
* scale the image of the input handle to the resolution of * scale the image of the input handle to the resolution of
* the output image handle via bilinear interpolation. * the output image handle via bilinear interpolation.
* *
......
...@@ -174,9 +174,13 @@ namespace vkcv::upscaling { ...@@ -174,9 +174,13 @@ namespace vkcv::upscaling {
void bindVelocityBuffer(const ImageHandle& velocityInput); void bindVelocityBuffer(const ImageHandle& velocityInput);
/** /**
* Record the comands of the FSR2 upscaling instance to * Record the commands of the FSR2 upscaling instance to
* scale the image of the input handle to the resolution of * scale the image of the input handle to the resolution of
* the output image handle via FidelityFX Super Resolution. * the output image handle via FidelityFX Super Resolution
* and dispatch them.
*
* Beware that this method will dispatch the commands
* automatically!
* *
* @param[in] cmdStream Command stream handle to record commands * @param[in] cmdStream Command stream handle to record commands
* @param[in] colorInput Color input image handle * @param[in] colorInput Color input image handle
......
...@@ -188,7 +188,7 @@ namespace vkcv::upscaling { ...@@ -188,7 +188,7 @@ namespace vkcv::upscaling {
explicit FSRUpscaling(Core& core); explicit FSRUpscaling(Core& core);
/** /**
* Record the comands of the FSR upscaling instance to * Record the commands of the FSR upscaling instance to
* scale the image of the input handle to the resolution of * scale the image of the input handle to the resolution of
* the output image handle via FidelityFX Super Resolution. * the output image handle via FidelityFX Super Resolution.
* *
......
...@@ -84,7 +84,7 @@ namespace vkcv::upscaling { ...@@ -84,7 +84,7 @@ namespace vkcv::upscaling {
explicit NISUpscaling(Core &core); explicit NISUpscaling(Core &core);
/** /**
* Record the comands of the NIS upscaling instance to * Record the commands of the NIS upscaling instance to
* scale the image of the input handle to the resolution of * scale the image of the input handle to the resolution of
* the output image handle via NVIDIA Image Scaling. * the output image handle via NVIDIA Image Scaling.
* *
......
...@@ -32,7 +32,7 @@ namespace vkcv::upscaling { ...@@ -32,7 +32,7 @@ namespace vkcv::upscaling {
~Upscaling() = default; ~Upscaling() = default;
/** /**
* Record the comands of the given upscaling instance to * Record the commands of the given upscaling instance to
* scale the image of the input handle to the resolution of * scale the image of the input handle to the resolution of
* the output image handle. * the output image handle.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment