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:
authorTon Roosendaal <ton@blender.org>2003-04-27 13:59:36 +0400
committerTon Roosendaal <ton@blender.org>2003-04-27 13:59:36 +0400
commitaf45ac2703b2aadd494f1c871e3f6d7db2a4cd3c (patch)
tree5ccade2989991fbbf6dc3cbb573fe76fb2564a49 /source/blender/imbuf/intern/divers.c
parent9508bb0d419fb160e9f39d693f6a14acccfb4e12 (diff)
translated comments for imbuf c files
Diffstat (limited to 'source/blender/imbuf/intern/divers.c')
-rw-r--r--source/blender/imbuf/intern/divers.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/imbuf/intern/divers.c b/source/blender/imbuf/intern/divers.c
index 76197aa4eeb..3b2ae27577c 100644
--- a/source/blender/imbuf/intern/divers.c
+++ b/source/blender/imbuf/intern/divers.c
@@ -45,7 +45,6 @@
#endif
void imb_checkncols(struct ImBuf *ibuf)
-/* struct ImBuf *ibuf; */
{
unsigned int i;
@@ -78,7 +77,7 @@ void imb_checkncols(struct ImBuf *ibuf)
}
return;
} else {
- /* ibuf->maxcol is bepalend voor de diepte */
+ /* ibuf->maxcol defines the depth */
for (i=1 ; ibuf->maxcol > (1 << i); i++);
ibuf->depth = i;
return;
@@ -96,7 +95,7 @@ void IMB_de_interlace(struct ImBuf *ibuf)
ibuf->flags |= IB_fields;
if (ibuf->rect) {
- /* kopieen aanmaken */
+ /* make copies */
tbuf1 = IMB_allocImBuf(ibuf->x, ibuf->y / 2, 32, IB_rect, 0);
tbuf2 = IMB_allocImBuf(ibuf->x, ibuf->y / 2, 32, IB_rect, 0);