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>2010-01-14 13:59:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-14 13:59:42 +0300
commitb0f87935a8d0de0f9ed886c7f26f1b7af41ed12a (patch)
tree5b3a22868f1b2eaedca523267cee05fa3fd71766 /source/blender/imbuf/intern
parent4371c3b0444bdaa8f47e43692095a70c388b57f2 (diff)
spelling errors, no real changes to code.
Diffstat (limited to 'source/blender/imbuf/intern')
-rw-r--r--source/blender/imbuf/intern/jpeg.c2
-rw-r--r--source/blender/imbuf/intern/radiance_hdr.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/jpeg.c b/source/blender/imbuf/intern/jpeg.c
index 2b2d17784e2..97d700f3af7 100644
--- a/source/blender/imbuf/intern/jpeg.c
+++ b/source/blender/imbuf/intern/jpeg.c
@@ -64,7 +64,7 @@ static ImBuf * ibJpegImageFromCinfo(struct jpeg_decompress_struct * cinfo, int f
type 3 is unsupported as of jul 05 2000 Frank.
- * 3. jstr - as 2, but written in 2 seperate fields
+ * 3. jstr - as 2, but written in 2 separate fields
* 4. jmax - no scaling in the components
*/
diff --git a/source/blender/imbuf/intern/radiance_hdr.c b/source/blender/imbuf/intern/radiance_hdr.c
index 5acde1232fd..ac62872479b 100644
--- a/source/blender/imbuf/intern/radiance_hdr.c
+++ b/source/blender/imbuf/intern/radiance_hdr.c
@@ -283,7 +283,7 @@ static int fwritecolrs(FILE* file, int width, int channels, unsigned char* ibufs
putc(2, file);
putc((unsigned char)(width >> 8), file);
putc((unsigned char)(width & 255), file);
- /* put components seperately */
+ /* put components separately */
for (i=0;i<4;i++) {
for (j=0;j<width;j+=cnt) { /* find next run */
for (beg=j;beg<width;beg+=cnt) {