Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-09-08 02:10:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-08 02:18:59 +0300
commitbedc68a83881b209b399bb5135fb08b0968b145a (patch)
treed0c6ce7458efee6e6b3926963922823e01543cf5 /source/blender/gpu/opengl/gl_framebuffer.hh
parent5c2ac8520e070db2085b7d95d9d232b567edb247 (diff)
Cleanup: consistent syntax for doxygen parameters
Also use back-slash instead of '@'.
Diffstat (limited to 'source/blender/gpu/opengl/gl_framebuffer.hh')
-rw-r--r--source/blender/gpu/opengl/gl_framebuffer.hh14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/gpu/opengl/gl_framebuffer.hh b/source/blender/gpu/opengl/gl_framebuffer.hh
index 73423425500..755f3f97567 100644
--- a/source/blender/gpu/opengl/gl_framebuffer.hh
+++ b/source/blender/gpu/opengl/gl_framebuffer.hh
@@ -63,13 +63,13 @@ class GLFrameBuffer : public FrameBuffer {
GLFrameBuffer(const char *name);
/**
- * Special Framebuffer encapsulating internal window framebuffer.
- * (i.e.: GL_FRONT_LEFT, GL_BACK_RIGHT, ...)
- * @param ctx context the handle is from.
- * @param target the internal GL name (i.e: GL_BACK_LEFT).
- * @param fbo the (optional) already created object for some implementation. Default is 0.
- * @param w buffer width.
- * @param h buffer height.
+ * Special frame-buffer encapsulating internal window frame-buffer.
+ * (i.e.: #GL_FRONT_LEFT, #GL_BACK_RIGHT, ...)
+ * \param ctx: context the handle is from.
+ * \param target: the internal GL name (i.e: #GL_BACK_LEFT).
+ * \param fbo: the (optional) already created object for some implementation. Default is 0.
+ * \param w: buffer width.
+ * \param h: buffer height.
**/
GLFrameBuffer(const char *name, GLContext *ctx, GLenum target, GLuint fbo, int w, int h);