From 713635adef160b6dffaa929a00bfd72703f0b873 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 25 Aug 2005 22:09:43 +0000 Subject: [PATCH] fix comment and #if test --- progs/demos/readpix.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/progs/demos/readpix.c b/progs/demos/readpix.c index c340e13..75ba45c 100644 --- a/progs/demos/readpix.c +++ b/progs/demos/readpix.c @@ -186,11 +186,12 @@ Display( void ) else { /* clear the temporary image to white (helpful for debugging */ memset(TempImage, 255, ImgWidth * ImgHeight * 4); -#if 0 - /* you might use this when debugging */ +#if 1 glReadPixels(APosX, APosY, ImgWidth, ImgHeight, ReadFormat, ReadType, TempImage); + (void) ComplexReadPixels; #else + /* you might use this when debugging */ ComplexReadPixels(APosX, APosY, ImgWidth, ImgHeight, ReadFormat, ReadType, TempImage); #endif -- 2.7.4