From de13d0a80c3cb6a7445245b2999a29fe70e49953 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 18 Feb 2019 08:08:12 +1100 Subject: doxygen: add newline after \file While \file doesn't need an argument, it can't have another doxy command after it. --- source/blender/python/gpu/gpu_py_api.c | 3 ++- source/blender/python/gpu/gpu_py_api.h | 3 ++- source/blender/python/gpu/gpu_py_batch.c | 3 ++- source/blender/python/gpu/gpu_py_batch.h | 3 ++- source/blender/python/gpu/gpu_py_element.c | 3 ++- source/blender/python/gpu/gpu_py_element.h | 3 ++- source/blender/python/gpu/gpu_py_matrix.c | 3 ++- source/blender/python/gpu/gpu_py_matrix.h | 3 ++- source/blender/python/gpu/gpu_py_offscreen.c | 3 ++- source/blender/python/gpu/gpu_py_offscreen.h | 3 ++- source/blender/python/gpu/gpu_py_select.c | 3 ++- source/blender/python/gpu/gpu_py_select.h | 3 ++- source/blender/python/gpu/gpu_py_shader.c | 3 ++- source/blender/python/gpu/gpu_py_shader.h | 3 ++- source/blender/python/gpu/gpu_py_types.c | 3 ++- source/blender/python/gpu/gpu_py_types.h | 3 ++- source/blender/python/gpu/gpu_py_vertex_buffer.c | 3 ++- source/blender/python/gpu/gpu_py_vertex_buffer.h | 3 ++- source/blender/python/gpu/gpu_py_vertex_format.c | 3 ++- source/blender/python/gpu/gpu_py_vertex_format.h | 3 ++- 20 files changed, 40 insertions(+), 20 deletions(-) (limited to 'source/blender/python/gpu') diff --git a/source/blender/python/gpu/gpu_py_api.c b/source/blender/python/gpu/gpu_py_api.c index 0ec565a2029..e2baf548064 100644 --- a/source/blender/python/gpu/gpu_py_api.c +++ b/source/blender/python/gpu/gpu_py_api.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * Experimental Python API, not considered public yet (called '_gpu'), * we may re-expose as public later. diff --git a/source/blender/python/gpu/gpu_py_api.h b/source/blender/python/gpu/gpu_py_api.h index ea621d5d340..d4cfcce24e9 100644 --- a/source/blender/python/gpu/gpu_py_api.h +++ b/source/blender/python/gpu/gpu_py_api.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_API_H__ diff --git a/source/blender/python/gpu/gpu_py_batch.c b/source/blender/python/gpu/gpu_py_batch.c index 0ae730c6e16..b5f9bb0f45a 100644 --- a/source/blender/python/gpu/gpu_py_batch.c +++ b/source/blender/python/gpu/gpu_py_batch.c @@ -16,7 +16,8 @@ * Copyright 2015, Blender Foundation. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * This file defines the offscreen functionalities of the 'gpu' module * used for off-screen OpenGL rendering. diff --git a/source/blender/python/gpu/gpu_py_batch.h b/source/blender/python/gpu/gpu_py_batch.h index e6098919796..a0de4663889 100644 --- a/source/blender/python/gpu/gpu_py_batch.h +++ b/source/blender/python/gpu/gpu_py_batch.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_BATCH_H__ diff --git a/source/blender/python/gpu/gpu_py_element.c b/source/blender/python/gpu/gpu_py_element.c index 82df4429cc5..b33ab9ec7cc 100644 --- a/source/blender/python/gpu/gpu_py_element.c +++ b/source/blender/python/gpu/gpu_py_element.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * - Use ``bpygpu_`` for local API. * - Use ``BPyGPU`` for public API. diff --git a/source/blender/python/gpu/gpu_py_element.h b/source/blender/python/gpu/gpu_py_element.h index 3f8059554f2..274149db565 100644 --- a/source/blender/python/gpu/gpu_py_element.h +++ b/source/blender/python/gpu/gpu_py_element.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_ELEMENT_H__ diff --git a/source/blender/python/gpu/gpu_py_matrix.c b/source/blender/python/gpu/gpu_py_matrix.c index 3e3b096a8ad..6f74fc41567 100644 --- a/source/blender/python/gpu/gpu_py_matrix.c +++ b/source/blender/python/gpu/gpu_py_matrix.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * This file defines the gpu.matrix stack API. * diff --git a/source/blender/python/gpu/gpu_py_matrix.h b/source/blender/python/gpu/gpu_py_matrix.h index b9604d9f0b2..d17bce6a7d3 100644 --- a/source/blender/python/gpu/gpu_py_matrix.h +++ b/source/blender/python/gpu/gpu_py_matrix.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_MATRIX_H__ diff --git a/source/blender/python/gpu/gpu_py_offscreen.c b/source/blender/python/gpu/gpu_py_offscreen.c index 17a350b6868..4027edbb0f9 100644 --- a/source/blender/python/gpu/gpu_py_offscreen.c +++ b/source/blender/python/gpu/gpu_py_offscreen.c @@ -16,7 +16,8 @@ * Copyright 2015, Blender Foundation. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * This file defines the offscreen functionalities of the 'gpu' module * used for off-screen OpenGL rendering. diff --git a/source/blender/python/gpu/gpu_py_offscreen.h b/source/blender/python/gpu/gpu_py_offscreen.h index f2e92d4c36e..c62f1e9051a 100644 --- a/source/blender/python/gpu/gpu_py_offscreen.h +++ b/source/blender/python/gpu/gpu_py_offscreen.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_OFFSCREEN_H__ diff --git a/source/blender/python/gpu/gpu_py_select.c b/source/blender/python/gpu/gpu_py_select.c index 849c96a6f77..0744d6b26ba 100644 --- a/source/blender/python/gpu/gpu_py_select.c +++ b/source/blender/python/gpu/gpu_py_select.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * This file defines the gpu.select API. * diff --git a/source/blender/python/gpu/gpu_py_select.h b/source/blender/python/gpu/gpu_py_select.h index 0eeb77a2704..97cc4b8285f 100644 --- a/source/blender/python/gpu/gpu_py_select.h +++ b/source/blender/python/gpu/gpu_py_select.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_SELECT_H__ diff --git a/source/blender/python/gpu/gpu_py_shader.c b/source/blender/python/gpu/gpu_py_shader.c index 61674d93874..37f4c17a956 100644 --- a/source/blender/python/gpu/gpu_py_shader.c +++ b/source/blender/python/gpu/gpu_py_shader.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * - Use ``bpygpu_`` for local API. * - Use ``BPyGPU`` for public API. diff --git a/source/blender/python/gpu/gpu_py_shader.h b/source/blender/python/gpu/gpu_py_shader.h index 3bc8d4f02ac..a6fd9f5c915 100644 --- a/source/blender/python/gpu/gpu_py_shader.h +++ b/source/blender/python/gpu/gpu_py_shader.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_SHADER_H__ diff --git a/source/blender/python/gpu/gpu_py_types.c b/source/blender/python/gpu/gpu_py_types.c index e179070922e..7ed1832eb57 100644 --- a/source/blender/python/gpu/gpu_py_types.c +++ b/source/blender/python/gpu/gpu_py_types.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * - Use ``bpygpu_`` for local API. * - Use ``BPyGPU`` for public API. diff --git a/source/blender/python/gpu/gpu_py_types.h b/source/blender/python/gpu/gpu_py_types.h index 66d904ebfd2..7e73f5b9084 100644 --- a/source/blender/python/gpu/gpu_py_types.h +++ b/source/blender/python/gpu/gpu_py_types.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_TYPES_H__ diff --git a/source/blender/python/gpu/gpu_py_vertex_buffer.c b/source/blender/python/gpu/gpu_py_vertex_buffer.c index bffc2de3b58..62c3b4f696f 100644 --- a/source/blender/python/gpu/gpu_py_vertex_buffer.c +++ b/source/blender/python/gpu/gpu_py_vertex_buffer.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * - Use ``bpygpu_`` for local API. * - Use ``BPyGPU`` for public API. diff --git a/source/blender/python/gpu/gpu_py_vertex_buffer.h b/source/blender/python/gpu/gpu_py_vertex_buffer.h index a2300925d13..2037c145704 100644 --- a/source/blender/python/gpu/gpu_py_vertex_buffer.h +++ b/source/blender/python/gpu/gpu_py_vertex_buffer.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_VERTEX_BUFFER_H__ diff --git a/source/blender/python/gpu/gpu_py_vertex_format.c b/source/blender/python/gpu/gpu_py_vertex_format.c index 8e2fe0f6276..2cadbaf17ff 100644 --- a/source/blender/python/gpu/gpu_py_vertex_format.c +++ b/source/blender/python/gpu/gpu_py_vertex_format.c @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu * * - Use ``bpygpu_`` for local API. * - Use ``BPyGPU`` for public API. diff --git a/source/blender/python/gpu/gpu_py_vertex_format.h b/source/blender/python/gpu/gpu_py_vertex_format.h index 222595bfc6c..ba09c055aca 100644 --- a/source/blender/python/gpu/gpu_py_vertex_format.h +++ b/source/blender/python/gpu/gpu_py_vertex_format.h @@ -14,7 +14,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/** \file \ingroup bpygpu +/** \file + * \ingroup bpygpu */ #ifndef __GPU_PY_VERTEX_FORMAT_H__ -- cgit v1.2.3