Cleanup: doxygen comments

This commit is contained in:
2020-11-06 14:35:38 +11:00
parent eed6bf22a4
commit 605425c006
7 changed files with 46 additions and 40 deletions

View File

@@ -67,11 +67,11 @@ class GLFrameBuffer : public FrameBuffer {
/**
* 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.
* \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);