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/bitplanes.c
parent9508bb0d419fb160e9f39d693f6a14acccfb4e12 (diff)
translated comments for imbuf c files
Diffstat (limited to 'source/blender/imbuf/intern/bitplanes.c')
-rw-r--r--source/blender/imbuf/intern/bitplanes.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/imbuf/intern/bitplanes.c b/source/blender/imbuf/intern/bitplanes.c
index 60e04e0f5ca..578ab579510 100644
--- a/source/blender/imbuf/intern/bitplanes.c
+++ b/source/blender/imbuf/intern/bitplanes.c
@@ -52,7 +52,7 @@ unsigned int **imb_copyplanelist(struct ImBuf *ibuf)
unsigned int **listn,**listo;
nobp=ibuf->depth;
- listn= malloc(nobp*sizeof(int *)); /* kopie van bitmap maken */
+ listn= malloc(nobp*sizeof(int *)); /* make copy of bitmap */
if (listn==0) return (0);
listo=ibuf->planes;
@@ -66,9 +66,9 @@ unsigned int **imb_copyplanelist(struct ImBuf *ibuf)
static void bptolscanl(unsigned int *buf, int size, unsigned int **list, int nobp, int offset)
{
- /* zet bitplanes om in een buffer met ints
- door 4 deelbare hoeveelheid bitplanes,
- breedte bitplanes op ints afgrond */
+ /* converts bitplanes to a buffer with ints
+ by 4 dividiable amount of bitplanes,
+ the width of bitplanes is rounded at ints */
list += nobp;
@@ -183,7 +183,7 @@ void imb_bptolong(struct ImBuf *ibuf)
int nobp,i,x;
unsigned int *rect,offset;
- /* eerst alle ints wissen */
+ /* first clear all ints */
if (ibuf == 0) return;
if (ibuf->planes == 0) return;
@@ -191,7 +191,7 @@ void imb_bptolong(struct ImBuf *ibuf)
nobp=ibuf->depth;
if (nobp != 32){
- if (nobp == 24) IMB_rectoptot(ibuf, 0, IMB_rectfill, 0xff000000); /* alpha zetten */
+ if (nobp == 24) IMB_rectoptot(ibuf, 0, IMB_rectfill, 0xff000000); /* set alpha */
else IMB_rectoptot(ibuf, 0, IMB_rectfill, 0);
}
@@ -209,8 +209,8 @@ void imb_bptolong(struct ImBuf *ibuf)
static void ltobpscanl(unsigned int *rect, int x, unsigned int **list, int nobp, int offset)
{
- /* zet een buffer met ints, om in bitplanes. Opgepast, buffer
- wordt vernietigd !*/
+ /* converts a buffer with ints to bitplanes. Take care, buffer
+ will be destroyed !*/
if (nobp != 32)
{
@@ -338,8 +338,8 @@ static void ltobpscanl(unsigned int *rect, int x, unsigned int **list, int nobp,
void imb_longtobp(struct ImBuf *ibuf)
{
- /* zet een buffer met ints, om in bitplanes. Opgepast, buffer
- wordt vernietigd !*/
+ /* converts a buffer with ints to bitplanes. Take care, buffer
+ will be destroyed !*/
int nobp,i,x;
unsigned int *rect,offset,*buf;