From 371f576731967ebca2d3fb6568a075d2f3927e6c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 29 Jan 2005 13:48:27 +0000 Subject: assorted fixes --- progs/demos/osdemo16.c | 21 ++++++++++++--------- progs/demos/osdemo32.c | 32 +++++++++++++++++++++++--------- 2 files changed, 35 insertions(+), 18 deletions(-) diff --git a/progs/demos/osdemo16.c b/progs/demos/osdemo16.c index 6f892620ce..10ed695d7a 100644 --- a/progs/demos/osdemo16.c +++ b/progs/demos/osdemo16.c @@ -4,7 +4,7 @@ * * Compile with something like this: * - * gcc osdemo16.c -I../include -L../lib -lOSMesa16 -lm -o osdemo16 + * gcc osdemo16.c -I../../include -L../../lib -lglut -lGLU -lOSMesa16 -lm -o osdemo16 */ @@ -178,6 +178,7 @@ write_targa(const char *filename, const GLushort *buffer, int width, int height) for (y=height-1; y>=0; y--) { for (x=0; x> 8, f); /* write blue */ fputc(ptr[i+1] >> 8, f); /* write green */ fputc(ptr[i] >> 8, f); /* write red */ @@ -188,13 +189,13 @@ write_targa(const char *filename, const GLushort *buffer, int width, int height) static void -write_ppm(const char *filename, const GLubyte *buffer, int width, int height) +write_ppm(const char *filename, const GLushort *buffer, int width, int height) { const int binary = 0; FILE *f = fopen( filename, "w" ); if (f) { int i, x, y; - const GLubyte *ptr = buffer; + const GLushort *ptr = buffer; if (binary) { fprintf(f,"P6\n"); fprintf(f,"# ppm-file created by osdemo.c\n"); @@ -205,9 +206,10 @@ write_ppm(const char *filename, const GLubyte *buffer, int width, int height) for (y=height-1; y>=0; y--) { for (x=0; x> 8, f); /* write red */ + fputc(ptr[i+1] >> 8, f); /* write green */ + fputc(ptr[i+2] >> 8, f); /* write blue */ } } } @@ -221,7 +223,8 @@ write_ppm(const char *filename, const GLubyte *buffer, int width, int height) for (y=height-1; y>=0; y--) { for (x=0; x> 8, ptr[i+1] >> 8, ptr[i+2] >> 8); counter++; if (counter % 5 == 0) fprintf(f, "\n"); @@ -236,7 +239,7 @@ write_ppm(const char *filename, const GLubyte *buffer, int width, int height) int main( int argc, char *argv[] ) { - void *buffer; + GLushort *buffer; /* Create an RGBA-mode context */ #if OSMESA_MAJOR_VERSION * 100 + OSMESA_MINOR_VERSION >= 305 @@ -251,7 +254,7 @@ int main( int argc, char *argv[] ) } /* Allocate the image buffer */ - buffer = malloc( WIDTH * HEIGHT * 4 * sizeof(GLushort)); + buffer = (GLushort *) malloc( WIDTH * HEIGHT * 4 * sizeof(GLushort)); if (!buffer) { printf("Alloc image buffer failed!\n"); return 0; diff --git a/progs/demos/osdemo32.c b/progs/demos/osdemo32.c index b425a56c84..7295b46a83 100644 --- a/progs/demos/osdemo32.c +++ b/progs/demos/osdemo32.c @@ -4,7 +4,7 @@ * * Compile with something like this: * - * gcc osdemo32.c -I../include -L../lib -lOSMesa32 -lm -o osdemo32 + * gcc osdemo32.c -I../../include -L../../lib -lglut -lGLU -lOSMesa32 -lm -o osdemo32 */ @@ -194,13 +194,13 @@ write_targa(const char *filename, const GLfloat *buffer, int width, int height) static void -write_ppm(const char *filename, const GLubyte *buffer, int width, int height) +write_ppm(const char *filename, const GLfloat *buffer, int width, int height) { const int binary = 0; FILE *f = fopen( filename, "w" ); if (f) { int i, x, y; - const GLubyte *ptr = buffer; + const GLfloat *ptr = buffer; if (binary) { fprintf(f,"P6\n"); fprintf(f,"# ppm-file created by osdemo.c\n"); @@ -210,10 +210,17 @@ write_ppm(const char *filename, const GLubyte *buffer, int width, int height) f = fopen( filename, "ab" ); /* reopen in binary append mode */ for (y=height-1; y>=0; y--) { for (x=0; x 255) r = 255; + if (g > 255) g = 255; + if (b > 255) b = 255; + fputc(r, f); /* write red */ + fputc(g, f); /* write green */ + fputc(b, f); /* write blue */ } } } @@ -226,8 +233,15 @@ write_ppm(const char *filename, const GLubyte *buffer, int width, int height) fprintf(f,"255\n"); for (y=height-1; y>=0; y--) { for (x=0; x 255) r = 255; + if (g > 255) g = 255; + if (b > 255) b = 255; + fprintf(f, " %3d %3d %3d", r, g, b); counter++; if (counter % 5 == 0) fprintf(f, "\n"); @@ -242,7 +256,7 @@ write_ppm(const char *filename, const GLubyte *buffer, int width, int height) int main( int argc, char *argv[] ) { - void *buffer; + GLfloat *buffer; /* Create an RGBA-mode context */ #if OSMESA_MAJOR_VERSION * 100 + OSMESA_MINOR_VERSION >= 305 @@ -257,7 +271,7 @@ int main( int argc, char *argv[] ) } /* Allocate the image buffer */ - buffer = malloc( WIDTH * HEIGHT * 4 * sizeof(GLfloat)); + buffer = (GLfloat *) malloc( WIDTH * HEIGHT * 4 * sizeof(GLfloat)); if (!buffer) { printf("Alloc image buffer failed!\n"); return 0; -- cgit v1.2.3