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>2019-01-26 13:43:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-26 13:43:24 +0300
commitf20dbc293fc9041a487544652f2d3baf1a4452c8 (patch)
treeb55a726a6999cea4ec07b7bb867b4c77a16782f9 /source/blender/python
parent1e4aab36c237b751c23be161217d989472bfaf20 (diff)
Cleanup: blank lines over doxy headers
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/bgl.c5
-rw-r--r--source/blender/python/generic/idprop_py_api.c1
-rw-r--r--source/blender/python/generic/py_capi_utils.c2
-rw-r--r--source/blender/python/gpu/gpu_py_api.c3
-rw-r--r--source/blender/python/gpu/gpu_py_element.c2
-rw-r--r--source/blender/python/gpu/gpu_py_offscreen.c2
-rw-r--r--source/blender/python/gpu/gpu_py_shader.c3
-rw-r--r--source/blender/python/gpu/gpu_py_vertex_buffer.c3
-rw-r--r--source/blender/python/gpu/gpu_py_vertex_format.c3
-rw-r--r--source/blender/python/intern/bpy_gizmo_wrap.c2
-rw-r--r--source/blender/python/mathutils/mathutils_bvhtree.c7
11 files changed, 0 insertions, 33 deletions
diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c
index ad30b5ceb2a..abbc7c48c87 100644
--- a/source/blender/python/generic/bgl.c
+++ b/source/blender/python/generic/bgl.c
@@ -43,7 +43,6 @@
/* -------------------------------------------------------------------- */
-
/** \name Local utility defines for wrapping OpenGL
* \{ */
@@ -456,7 +455,6 @@ static int Buffer_ass_subscript(Buffer *self, PyObject *item, PyObject *value);
/* -------------------------------------------------------------------- */
-
/** \name Utility Functions
* \{ */
@@ -512,7 +510,6 @@ static bool compare_dimensions(int ndim, int *dim1, Py_ssize_t *dim2)
/* -------------------------------------------------------------------- */
-
/** \name Buffer API
* \{ */
@@ -1055,7 +1052,6 @@ static PyObject *Buffer_repr(Buffer *self)
/* -------------------------------------------------------------------- */
-
/** \name OpenGL API Wrapping
* \{ */
@@ -1336,7 +1332,6 @@ BGL_Wrap(TexImage3DMultisample, void, (GLenum, GLsizei, GLenum, GLsizei
/* -------------------------------------------------------------------- */
-
/** \name Module Definition
* \{ */
diff --git a/source/blender/python/generic/idprop_py_api.c b/source/blender/python/generic/idprop_py_api.c
index 76cc8bf7c6b..c9975461bca 100644
--- a/source/blender/python/generic/idprop_py_api.c
+++ b/source/blender/python/generic/idprop_py_api.c
@@ -648,7 +648,6 @@ static IDProperty *idp_from_PyObject(PyObject *name_obj, PyObject *ob)
}
/* -------------------------------------------------------------------------- */
-
/**
* \note group can be a pointer array or a group.
* assume we already checked key is a string.
diff --git a/source/blender/python/generic/py_capi_utils.c b/source/blender/python/generic/py_capi_utils.c
index d158c92baae..559f6813284 100644
--- a/source/blender/python/generic/py_capi_utils.c
+++ b/source/blender/python/generic/py_capi_utils.c
@@ -1248,7 +1248,6 @@ bool PyC_RunString_AsString(const char *imports[], const char *expr, const char
#endif /* #ifndef MATH_STANDALONE */
/* -------------------------------------------------------------------- */
-
/** \name Int Conversion
*
* \note Python doesn't provide overflow checks for specific bit-widths.
@@ -1340,7 +1339,6 @@ uint32_t PyC_Long_AsU32(PyObject *value)
*/
/* -------------------------------------------------------------------- */
-
/** \name Py_buffer Utils
*
* \{ */
diff --git a/source/blender/python/gpu/gpu_py_api.c b/source/blender/python/gpu/gpu_py_api.c
index 7e999bdcc2d..3e872f28bb4 100644
--- a/source/blender/python/gpu/gpu_py_api.c
+++ b/source/blender/python/gpu/gpu_py_api.c
@@ -45,7 +45,6 @@
/* -------------------------------------------------------------------- */
-
/** \name Utils to invalidate functions
* \{ */
@@ -66,7 +65,6 @@ bool bpygpu_is_initialized_or_error(void)
/* -------------------------------------------------------------------- */
-
/** \name Primitive Type Utils
* \{ */
@@ -113,7 +111,6 @@ success:
/* -------------------------------------------------------------------- */
-
/** \name GPU Module
* \{ */
diff --git a/source/blender/python/gpu/gpu_py_element.c b/source/blender/python/gpu/gpu_py_element.c
index 2faf57ac55c..9c6a335febb 100644
--- a/source/blender/python/gpu/gpu_py_element.c
+++ b/source/blender/python/gpu/gpu_py_element.c
@@ -41,7 +41,6 @@
/* -------------------------------------------------------------------- */
-
/** \name IndexBuf Type
* \{ */
@@ -227,7 +226,6 @@ PyTypeObject BPyGPUIndexBuf_Type = {
/* -------------------------------------------------------------------- */
-
/** \name Public API
* \{ */
diff --git a/source/blender/python/gpu/gpu_py_offscreen.c b/source/blender/python/gpu/gpu_py_offscreen.c
index 3438f953ea0..be249245669 100644
--- a/source/blender/python/gpu/gpu_py_offscreen.c
+++ b/source/blender/python/gpu/gpu_py_offscreen.c
@@ -80,7 +80,6 @@ static int bpygpu_offscreen_valid_check(BPyGPUOffScreen *bpygpu_ofs)
/* -------------------------------------------------------------------- */
-
/** \name GPUOffscreen Type
* \{ */
@@ -354,7 +353,6 @@ PyTypeObject BPyGPUOffScreen_Type = {
/* -------------------------------------------------------------------- */
-
/** \name Public API
* \{ */
diff --git a/source/blender/python/gpu/gpu_py_shader.c b/source/blender/python/gpu/gpu_py_shader.c
index e216d18ed38..46de7e4ffd0 100644
--- a/source/blender/python/gpu/gpu_py_shader.c
+++ b/source/blender/python/gpu/gpu_py_shader.c
@@ -99,7 +99,6 @@ static int bpygpu_uniform_location_get(GPUShader *shader, const char *name, cons
/* -------------------------------------------------------------------- */
-
/** \name Shader Type
* \{ */
@@ -682,7 +681,6 @@ PyTypeObject BPyGPUShader_Type = {
/* -------------------------------------------------------------------- */
-
/** \name gpu.shader Module API
* \{ */
@@ -812,7 +810,6 @@ static PyModuleDef BPyGPU_shader_module_def = {
/* -------------------------------------------------------------------- */
-
/** \name Public API
* \{ */
diff --git a/source/blender/python/gpu/gpu_py_vertex_buffer.c b/source/blender/python/gpu/gpu_py_vertex_buffer.c
index c13e3f2195e..75fcfd1db05 100644
--- a/source/blender/python/gpu/gpu_py_vertex_buffer.c
+++ b/source/blender/python/gpu/gpu_py_vertex_buffer.c
@@ -40,7 +40,6 @@
#include "gpu_py_vertex_buffer.h" /* own include */
/* -------------------------------------------------------------------- */
-
/** \name Utility Functions
* \{ */
@@ -216,7 +215,6 @@ static int bpygpu_attr_fill(GPUVertBuf *buf, int id, PyObject *py_seq_data, cons
/* -------------------------------------------------------------------- */
-
/** \name VertBuf Type
* \{ */
@@ -335,7 +333,6 @@ PyTypeObject BPyGPUVertBuf_Type = {
/* -------------------------------------------------------------------- */
-
/** \name Public API
* \{ */
diff --git a/source/blender/python/gpu/gpu_py_vertex_format.c b/source/blender/python/gpu/gpu_py_vertex_format.c
index 27f3791ec15..738db14da88 100644
--- a/source/blender/python/gpu/gpu_py_vertex_format.c
+++ b/source/blender/python/gpu/gpu_py_vertex_format.c
@@ -49,7 +49,6 @@
#endif
/* -------------------------------------------------------------------- */
-
/** \name Enum Conversion
*
* Use with PyArg_ParseTuple's "O&" formatting.
@@ -148,7 +147,6 @@ static int bpygpu_ParseVertFetchMode(PyObject *o, void *p)
/* -------------------------------------------------------------------- */
-
/** \name VertFormat Type
* \{ */
@@ -241,7 +239,6 @@ PyTypeObject BPyGPUVertFormat_Type = {
/* -------------------------------------------------------------------- */
-
/** \name Public API
* \{ */
diff --git a/source/blender/python/intern/bpy_gizmo_wrap.c b/source/blender/python/intern/bpy_gizmo_wrap.c
index 411822ee4da..70b5a0fe8ac 100644
--- a/source/blender/python/intern/bpy_gizmo_wrap.c
+++ b/source/blender/python/intern/bpy_gizmo_wrap.c
@@ -48,7 +48,6 @@
/* we may want to add, but not now */
/* -------------------------------------------------------------------- */
-
/** \name Gizmo
* \{ */
@@ -186,7 +185,6 @@ void BPY_RNA_gizmo_wrapper(wmGizmoType *gzt, void *userdata)
/* -------------------------------------------------------------------- */
-
/** \name Gizmo Group
* \{ */
diff --git a/source/blender/python/mathutils/mathutils_bvhtree.c b/source/blender/python/mathutils/mathutils_bvhtree.c
index fce0dd7d2af..b4a2347830b 100644
--- a/source/blender/python/mathutils/mathutils_bvhtree.c
+++ b/source/blender/python/mathutils/mathutils_bvhtree.c
@@ -69,7 +69,6 @@
/* -------------------------------------------------------------------- */
-
/** \name Docstring (snippets)
* \{ */
@@ -119,7 +118,6 @@ typedef struct {
/* -------------------------------------------------------------------- */
-
/** \name Utility helper functions
* \{ */
@@ -152,7 +150,6 @@ static PyObject *bvhtree_CreatePyObject(
/* -------------------------------------------------------------------- */
-
/** \name BVHTreeRayHit to Python utilities
* \{ */
@@ -209,7 +206,6 @@ static PyObject *py_bvhtree_raycast_to_py_and_check(const BVHTreeRayHit *hit)
/* -------------------------------------------------------------------- */
-
/** \name BVHTreeNearest to Python utilities
* \{ */
@@ -281,7 +277,6 @@ static void py_bvhtree__tp_dealloc(PyBVHTree *self)
/* -------------------------------------------------------------------- */
-
/** \name Methods
* \{ */
@@ -661,7 +656,6 @@ static PyObject *py_bvhtree_overlap(PyBVHTree *self, PyBVHTree *other)
/* -------------------------------------------------------------------- */
-
/** \name Class Methods
* \{ */
@@ -1240,7 +1234,6 @@ static PyObject *C_BVHTree_FromObject(PyObject *UNUSED(cls), PyObject *args, PyO
/* -------------------------------------------------------------------- */
-
/** \name Module & Type definition
* \{ */