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>2015-07-31 15:59:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-31 16:44:37 +0300
commit03f00eb91d873cc118a100d6e5b5d7bf801dd451 (patch)
treece48560052400014fae1ca335c333caad57daa5d /source/blender/python/generic/bgl.c
parent12b7850d4fcd420f23f80c16a85f08d7cd9158f5 (diff)
Docs: doxy corrections
Diffstat (limited to 'source/blender/python/generic/bgl.c')
-rw-r--r--source/blender/python/generic/bgl.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c
index 6dc606f3dca..8682b860fe3 100644
--- a/source/blender/python/generic/bgl.c
+++ b/source/blender/python/generic/bgl.c
@@ -435,9 +435,7 @@
/* -------------------------------------------------------------------- */
-
-/** \name Forward Declarations
- * \{ */
+/* Forward Declarations */
static PyObject *Buffer_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
static PyObject *Method_ShaderSource(PyObject *self, PyObject *args);
@@ -452,8 +450,6 @@ static int Buffer_ass_slice(Buffer *self, int begin, int end, PyObject *seq);
static PyObject *Buffer_subscript(Buffer *self, PyObject *item);
static int Buffer_ass_subscript(Buffer *self, PyObject *item, PyObject *value);
-/** \} */
-
/* -------------------------------------------------------------------- */
@@ -756,7 +752,7 @@ static PyObject *Buffer_new(PyTypeObject *UNUSED(type), PyObject *args, PyObject
return (PyObject *)buffer;
}
-/*@ Buffer sequence methods */
+/* Buffer sequence methods */
static int Buffer_len(Buffer *self)
{