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-05-14 17:24:49 +0400
committerTon Roosendaal <ton@blender.org>2003-05-14 17:24:49 +0400
commitadacfb1b15968f8a3bd665f2e3ad1b57218d5d87 (patch)
treee076f6f9f647f5e1f7e2151ec40ff646cacd4b75 /source/blender/imbuf/IMB_imbuf_types.h
parent3ce849949e5c60e14ee0e0fac2c2ca365e5e0344 (diff)
just translated imbuf struct
Diffstat (limited to 'source/blender/imbuf/IMB_imbuf_types.h')
-rw-r--r--source/blender/imbuf/IMB_imbuf_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h
index a8a509f92b3..02037a00bbe 100644
--- a/source/blender/imbuf/IMB_imbuf_types.h
+++ b/source/blender/imbuf/IMB_imbuf_types.h
@@ -53,10 +53,10 @@ struct Mdec;
/* the basic imbuf type */
typedef struct ImBuf{
- short x,y; /* breedte in pixels, hoogte in scanlines */
- short skipx; /* breedte in ints om bij volgende scanline te komen */
- unsigned char depth; /* actieve aantal bits/bitplanes */
- unsigned char cbits; /* aantal active bits in cmap */
+ short x,y; /* width in pixels, height in scanlines */
+ short skipx; /* width in ints to get to the next scanline */
+ unsigned char depth; /* active amount of bits/bitplanes */
+ unsigned char cbits; /* amount of active bits in cmap */
unsigned short mincol;
unsigned short maxcol;
int type; /* 0=abgr, 1=bitplanes */
@@ -65,7 +65,7 @@ typedef struct ImBuf{
unsigned int *rect; /* databuffer */
unsigned int **planes; /* bitplanes */
int flags;
- int mall; /* wat is er intern gemalloced en mag weer vrijgegeven worden */
+ int mall; /* what is malloced internal, and can be freed */
short xorig, yorig;
char name[1023];
char namenull;