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>2013-09-12 07:02:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-12 07:02:50 +0400
commit8beb565c5992e239eb0f618f9df264de821d4cf7 (patch)
tree54f26cb6daf31c826d1ae20197d6e6840be49c92 /source/blender/render
parent30695da26187b9cfb3442f897394a64c4a8422fb (diff)
code cleanup: headers - doxy comments.
Diffstat (limited to 'source/blender/render')
-rw-r--r--source/blender/render/intern/include/texture_ocean.h4
-rw-r--r--source/blender/render/intern/source/texture_ocean.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/render/intern/include/texture_ocean.h b/source/blender/render/intern/include/texture_ocean.h
index 121142aa0b0..4a71aff930a 100644
--- a/source/blender/render/intern/include/texture_ocean.h
+++ b/source/blender/render/intern/include/texture_ocean.h
@@ -26,6 +26,10 @@
#ifndef __TEXTURE_OCEAN_H__
#define __TEXTURE_OCEAN_H__
+/** \file blender/render/intern/include/texture_ocean.h
+ * \ingroup render
+ */
+
int ocean_texture(struct Tex *tex, const float texvec[2], struct TexResult *texres);
#endif /* __TEXTURE_OCEAN_H__ */
diff --git a/source/blender/render/intern/source/texture_ocean.c b/source/blender/render/intern/source/texture_ocean.c
index a7547479093..0d68c40be0f 100644
--- a/source/blender/render/intern/source/texture_ocean.c
+++ b/source/blender/render/intern/source/texture_ocean.c
@@ -23,6 +23,10 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/blenkernel/intern/texture_ocean.c
+ * \ingroup bke
+ */
+
#include <stddef.h>
#include "BLI_math.h"