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:
Diffstat (limited to 'source/blender/gpu/intern')
-rw-r--r--source/blender/gpu/intern/gpu_attr_binding.c3
-rw-r--r--source/blender/gpu/intern/gpu_attr_binding_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_batch.c3
-rw-r--r--source/blender/gpu/intern/gpu_batch_presets.c3
-rw-r--r--source/blender/gpu/intern/gpu_batch_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_batch_utils.c3
-rw-r--r--source/blender/gpu/intern/gpu_buffers.c3
-rw-r--r--source/blender/gpu/intern/gpu_codegen.c3
-rw-r--r--source/blender/gpu/intern/gpu_codegen.h3
-rw-r--r--source/blender/gpu/intern/gpu_context.cpp3
-rw-r--r--source/blender/gpu/intern/gpu_context_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_debug.c3
-rw-r--r--source/blender/gpu/intern/gpu_draw.c3
-rw-r--r--source/blender/gpu/intern/gpu_element.c3
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c3
-rw-r--r--source/blender/gpu/intern/gpu_immediate.c3
-rw-r--r--source/blender/gpu/intern/gpu_immediate_util.c3
-rw-r--r--source/blender/gpu/intern/gpu_init_exit.c3
-rw-r--r--source/blender/gpu/intern/gpu_material.c3
-rw-r--r--source/blender/gpu/intern/gpu_matrix.c3
-rw-r--r--source/blender/gpu/intern/gpu_primitive.c3
-rw-r--r--source/blender/gpu/intern/gpu_primitive_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_select.c3
-rw-r--r--source/blender/gpu/intern/gpu_select_pick.c3
-rw-r--r--source/blender/gpu/intern/gpu_select_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_select_sample_query.c3
-rw-r--r--source/blender/gpu/intern/gpu_shader.c3
-rw-r--r--source/blender/gpu/intern/gpu_shader_interface.c3
-rw-r--r--source/blender/gpu/intern/gpu_shader_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_state.c3
-rw-r--r--source/blender/gpu/intern/gpu_uniformbuffer.c3
-rw-r--r--source/blender/gpu/intern/gpu_vertex_buffer.c3
-rw-r--r--source/blender/gpu/intern/gpu_vertex_format.c3
-rw-r--r--source/blender/gpu/intern/gpu_vertex_format_private.h3
-rw-r--r--source/blender/gpu/intern/gpu_viewport.c3
36 files changed, 72 insertions, 36 deletions
diff --git a/source/blender/gpu/intern/gpu_attr_binding.c b/source/blender/gpu/intern/gpu_attr_binding.c
index 9a81be83d46..242c157bec1 100644
--- a/source/blender/gpu/intern/gpu_attr_binding.c
+++ b/source/blender/gpu/intern/gpu_attr_binding.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU vertex attribute binding
*/
diff --git a/source/blender/gpu/intern/gpu_attr_binding_private.h b/source/blender/gpu/intern/gpu_attr_binding_private.h
index 5bb2e0f398d..8615e095197 100644
--- a/source/blender/gpu/intern/gpu_attr_binding_private.h
+++ b/source/blender/gpu/intern/gpu_attr_binding_private.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU vertex attribute binding
*/
diff --git a/source/blender/gpu/intern/gpu_batch.c b/source/blender/gpu/intern/gpu_batch.c
index 9738b303700..5f00fec7c88 100644
--- a/source/blender/gpu/intern/gpu_batch.c
+++ b/source/blender/gpu/intern/gpu_batch.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU geometry batch
* Contains VAOs + VBOs + Shader representing a drawable entity.
diff --git a/source/blender/gpu/intern/gpu_batch_presets.c b/source/blender/gpu/intern/gpu_batch_presets.c
index 0bee618d004..8d23d4be297 100644
--- a/source/blender/gpu/intern/gpu_batch_presets.c
+++ b/source/blender/gpu/intern/gpu_batch_presets.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include "BLI_utildefines.h"
diff --git a/source/blender/gpu/intern/gpu_batch_private.h b/source/blender/gpu/intern/gpu_batch_private.h
index 7d65158e99c..42cfc1e2a5c 100644
--- a/source/blender/gpu/intern/gpu_batch_private.h
+++ b/source/blender/gpu/intern/gpu_batch_private.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU geometry batch
* Contains VAOs + VBOs + Shader representing a drawable entity.
diff --git a/source/blender/gpu/intern/gpu_batch_utils.c b/source/blender/gpu/intern/gpu_batch_utils.c
index beadff28cdd..10b7b3c39b5 100644
--- a/source/blender/gpu/intern/gpu_batch_utils.c
+++ b/source/blender/gpu/intern/gpu_batch_utils.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/gpu/intern/gpu_buffers.c b/source/blender/gpu/intern/gpu_buffers.c
index f96ac893edd..9004ad5f4c9 100644
--- a/source/blender/gpu/intern/gpu_buffers.c
+++ b/source/blender/gpu/intern/gpu_buffers.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Mesh drawing using OpenGL VBO (Vertex Buffer Objects)
*/
diff --git a/source/blender/gpu/intern/gpu_codegen.c b/source/blender/gpu/intern/gpu_codegen.c
index 9e133844611..e85a2c62172 100644
--- a/source/blender/gpu/intern/gpu_codegen.c
+++ b/source/blender/gpu/intern/gpu_codegen.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Convert material node-trees to GLSL.
*/
diff --git a/source/blender/gpu/intern/gpu_codegen.h b/source/blender/gpu/intern/gpu_codegen.h
index 64c33ddb292..181bcde9120 100644
--- a/source/blender/gpu/intern/gpu_codegen.h
+++ b/source/blender/gpu/intern/gpu_codegen.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
diff --git a/source/blender/gpu/intern/gpu_context.cpp b/source/blender/gpu/intern/gpu_context.cpp
index 3711b899c1b..77a69999bf6 100644
--- a/source/blender/gpu/intern/gpu_context.cpp
+++ b/source/blender/gpu/intern/gpu_context.cpp
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Manage GL vertex array IDs in a thread-safe way
* Use these instead of glGenBuffers & its friends
diff --git a/source/blender/gpu/intern/gpu_context_private.h b/source/blender/gpu/intern/gpu_context_private.h
index b5f2900d729..9c4cb30e40f 100644
--- a/source/blender/gpu/intern/gpu_context_private.h
+++ b/source/blender/gpu/intern/gpu_context_private.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* This interface allow GPU to manage GL objects for multiple context and threads.
*/
diff --git a/source/blender/gpu/intern/gpu_debug.c b/source/blender/gpu/intern/gpu_debug.c
index f5e89d687b9..71f318f3a56 100644
--- a/source/blender/gpu/intern/gpu_debug.c
+++ b/source/blender/gpu/intern/gpu_debug.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include "BLI_compiler_attrs.h"
diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c
index ea5b0a1542d..93882ce1615 100644
--- a/source/blender/gpu/intern/gpu_draw.c
+++ b/source/blender/gpu/intern/gpu_draw.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Utility functions for dealing with OpenGL texture & material context,
* mipmap generation and light objects.
diff --git a/source/blender/gpu/intern/gpu_element.c b/source/blender/gpu/intern/gpu_element.c
index 649d0c2c016..2c80fff75a6 100644
--- a/source/blender/gpu/intern/gpu_element.c
+++ b/source/blender/gpu/intern/gpu_element.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU element list (AKA index buffer)
*/
diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index 102ae6e8a09..b1c8a972980 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Wrap OpenGL features such as textures, shaders and GLSL
* with checks for drivers and GPU support.
diff --git a/source/blender/gpu/intern/gpu_immediate.c b/source/blender/gpu/intern/gpu_immediate.c
index 5525c368d67..f24aa454560 100644
--- a/source/blender/gpu/intern/gpu_immediate.c
+++ b/source/blender/gpu/intern/gpu_immediate.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU immediate mode work-alike
*/
diff --git a/source/blender/gpu/intern/gpu_immediate_util.c b/source/blender/gpu/intern/gpu_immediate_util.c
index 29387e68aff..6d546c1b5c5 100644
--- a/source/blender/gpu/intern/gpu_immediate_util.c
+++ b/source/blender/gpu/intern/gpu_immediate_util.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU immediate mode drawing utilities
*/
diff --git a/source/blender/gpu/intern/gpu_init_exit.c b/source/blender/gpu/intern/gpu_init_exit.c
index 05e77110d5f..b1bdfccacff 100644
--- a/source/blender/gpu/intern/gpu_init_exit.c
+++ b/source/blender/gpu/intern/gpu_init_exit.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include "BLI_sys_types.h"
diff --git a/source/blender/gpu/intern/gpu_material.c b/source/blender/gpu/intern/gpu_material.c
index 14bdccaab2b..e7924f55d9f 100644
--- a/source/blender/gpu/intern/gpu_material.c
+++ b/source/blender/gpu/intern/gpu_material.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Manages materials, lights and textures.
*/
diff --git a/source/blender/gpu/intern/gpu_matrix.c b/source/blender/gpu/intern/gpu_matrix.c
index 0dc8ce7f447..b5bee35350e 100644
--- a/source/blender/gpu/intern/gpu_matrix.c
+++ b/source/blender/gpu/intern/gpu_matrix.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include "GPU_shader_interface.h"
diff --git a/source/blender/gpu/intern/gpu_primitive.c b/source/blender/gpu/intern/gpu_primitive.c
index 405e6fd5f21..e59e4a953d7 100644
--- a/source/blender/gpu/intern/gpu_primitive.c
+++ b/source/blender/gpu/intern/gpu_primitive.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU geometric primitives
*/
diff --git a/source/blender/gpu/intern/gpu_primitive_private.h b/source/blender/gpu/intern/gpu_primitive_private.h
index d335d150beb..abefa6abd20 100644
--- a/source/blender/gpu/intern/gpu_primitive_private.h
+++ b/source/blender/gpu/intern/gpu_primitive_private.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU geometric primitives
*/
diff --git a/source/blender/gpu/intern/gpu_private.h b/source/blender/gpu/intern/gpu_private.h
index ec15904e388..a92ff7287f6 100644
--- a/source/blender/gpu/intern/gpu_private.h
+++ b/source/blender/gpu/intern/gpu_private.h
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#ifndef __GPU_PRIVATE_H__
diff --git a/source/blender/gpu/intern/gpu_select.c b/source/blender/gpu/intern/gpu_select.c
index 58479c39a33..adc5f5a9864 100644
--- a/source/blender/gpu/intern/gpu_select.c
+++ b/source/blender/gpu/intern/gpu_select.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Interface for accessing gpu-related methods for selection. The semantics are
* similar to glRenderMode(GL_SELECT) from older OpenGL versions.
diff --git a/source/blender/gpu/intern/gpu_select_pick.c b/source/blender/gpu/intern/gpu_select_pick.c
index 82d6003ffd6..22388deccdb 100644
--- a/source/blender/gpu/intern/gpu_select_pick.c
+++ b/source/blender/gpu/intern/gpu_select_pick.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Custom select code for picking small regions (not efficient for large regions).
* `gpu_select_pick_*` API.
diff --git a/source/blender/gpu/intern/gpu_select_private.h b/source/blender/gpu/intern/gpu_select_private.h
index dbcc491040b..b89d6fd244a 100644
--- a/source/blender/gpu/intern/gpu_select_private.h
+++ b/source/blender/gpu/intern/gpu_select_private.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Selection implementations.
*/
diff --git a/source/blender/gpu/intern/gpu_select_sample_query.c b/source/blender/gpu/intern/gpu_select_sample_query.c
index d5298e78cff..60f42b31725 100644
--- a/source/blender/gpu/intern/gpu_select_sample_query.c
+++ b/source/blender/gpu/intern/gpu_select_sample_query.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* Interface for accessing gpu-related methods for selection. The semantics will be
* similar to glRenderMode(GL_SELECT) since the goal is to maintain compatibility.
diff --git a/source/blender/gpu/intern/gpu_shader.c b/source/blender/gpu/intern/gpu_shader.c
index 66c5aea92db..e9ca3257a8f 100644
--- a/source/blender/gpu/intern/gpu_shader.c
+++ b/source/blender/gpu/intern/gpu_shader.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/gpu/intern/gpu_shader_interface.c b/source/blender/gpu/intern/gpu_shader_interface.c
index 24fb3591da3..72f19b3fc6b 100644
--- a/source/blender/gpu/intern/gpu_shader_interface.c
+++ b/source/blender/gpu/intern/gpu_shader_interface.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU shader interface (C --> GLSL)
*/
diff --git a/source/blender/gpu/intern/gpu_shader_private.h b/source/blender/gpu/intern/gpu_shader_private.h
index d802707a252..da41e3472fd 100644
--- a/source/blender/gpu/intern/gpu_shader_private.h
+++ b/source/blender/gpu/intern/gpu_shader_private.h
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#ifndef __GPU_SHADER_PRIVATE_H__
diff --git a/source/blender/gpu/intern/gpu_state.c b/source/blender/gpu/intern/gpu_state.c
index 9d8e974ae42..98f905cd051 100644
--- a/source/blender/gpu/intern/gpu_state.c
+++ b/source/blender/gpu/intern/gpu_state.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include "DNA_userdef_types.h"
diff --git a/source/blender/gpu/intern/gpu_uniformbuffer.c b/source/blender/gpu/intern/gpu_uniformbuffer.c
index fd6901a98f0..fea23c1ac0f 100644
--- a/source/blender/gpu/intern/gpu_uniformbuffer.c
+++ b/source/blender/gpu/intern/gpu_uniformbuffer.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*/
#include <string.h>
diff --git a/source/blender/gpu/intern/gpu_vertex_buffer.c b/source/blender/gpu/intern/gpu_vertex_buffer.c
index a2700ce76b5..dc6367308cd 100644
--- a/source/blender/gpu/intern/gpu_vertex_buffer.c
+++ b/source/blender/gpu/intern/gpu_vertex_buffer.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU vertex buffer
*/
diff --git a/source/blender/gpu/intern/gpu_vertex_format.c b/source/blender/gpu/intern/gpu_vertex_format.c
index fd085200f99..d4b975a01ae 100644
--- a/source/blender/gpu/intern/gpu_vertex_format.c
+++ b/source/blender/gpu/intern/gpu_vertex_format.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU vertex format
*/
diff --git a/source/blender/gpu/intern/gpu_vertex_format_private.h b/source/blender/gpu/intern/gpu_vertex_format_private.h
index 6ab47e2be58..a850d17a1dd 100644
--- a/source/blender/gpu/intern/gpu_vertex_format_private.h
+++ b/source/blender/gpu/intern/gpu_vertex_format_private.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* GPU vertex format
*/
diff --git a/source/blender/gpu/intern/gpu_viewport.c b/source/blender/gpu/intern/gpu_viewport.c
index 5cc11c1c019..7688b113547 100644
--- a/source/blender/gpu/intern/gpu_viewport.c
+++ b/source/blender/gpu/intern/gpu_viewport.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup gpu
+/** \file
+ * \ingroup gpu
*
* System that manages viewport drawing.
*/