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>2021-06-24 08:57:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-24 08:59:34 +0300
commit1f778dbefcaf825dcad1f70a9cc45e503ad74ed5 (patch)
treed192550ac77a0f982fb43440d3c64d972cc2d011 /source/blender/freestyle/intern/application/AppCanvas.h
parent4b9ff3cd42be427e478743648e9951bf8c189a04 (diff)
Cleanup: use Blender's code style for doxygen commetns in freestyle
Diffstat (limited to 'source/blender/freestyle/intern/application/AppCanvas.h')
-rw-r--r--source/blender/freestyle/intern/application/AppCanvas.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/freestyle/intern/application/AppCanvas.h b/source/blender/freestyle/intern/application/AppCanvas.h
index 1ff7e781ce6..8329192e6d6 100644
--- a/source/blender/freestyle/intern/application/AppCanvas.h
+++ b/source/blender/freestyle/intern/application/AppCanvas.h
@@ -32,21 +32,21 @@ class AppCanvas : public Canvas {
AppCanvas(const AppCanvas &iBrother);
virtual ~AppCanvas();
- /*! operations that need to be done before a draw */
+ /** operations that need to be done before a draw */
virtual void preDraw();
- /*! operations that need to be done after a draw */
+ /** operations that need to be done after a draw */
virtual void postDraw();
- /*! Erases the layers and clears the canvas */
+ /** Erases the layers and clears the canvas */
virtual void Erase();
/* init the canvas */
virtual void init();
- /*! Reads a pixel area from the canvas */
+ /** Reads a pixel area from the canvas */
virtual void readColorPixels(int x, int y, int w, int h, RGBImage &oImage) const;
- /*! Reads a depth pixel area from the canvas */
+ /** Reads a depth pixel area from the canvas */
virtual void readDepthPixels(int x, int y, int w, int h, GrayImage &oImage) const;
virtual BBox<Vec3r> scene3DBBox() const;
@@ -55,7 +55,7 @@ class AppCanvas : public Canvas {
virtual void RenderStroke(Stroke *);
virtual void update();
- /*! accessors */
+ /** accessors */
virtual int width() const;
virtual int height() const;
virtual BBox<Vec2i> border() const;
@@ -67,7 +67,7 @@ class AppCanvas : public Canvas {
return _pViewer;
}
- /*! modifiers */
+ /** modifiers */
void setViewer(AppView *iViewer);
/* soc */