From ec2d0decbd739df99cac4baba57fe0005bf4894d Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 16 Jun 2008 10:03:05 -0600 Subject: mesa: allocate pixel zoom arrays on heap, not stack Fixes stack overflow on Windows. --- src/mesa/swrast/s_context.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/mesa/swrast/s_context.h') diff --git a/src/mesa/swrast/s_context.h b/src/mesa/swrast/s_context.h index 3dcc3ed16e2..a511d1c9a17 100644 --- a/src/mesa/swrast/s_context.h +++ b/src/mesa/swrast/s_context.h @@ -206,6 +206,7 @@ typedef struct * on some systems. */ SWspanarrays *SpanArrays; + SWspanarrays *ZoomedArrays; /**< For pixel zooming */ /** * Used to buffer N GL_POINTS, instead of rendering one by one. -- cgit v1.2.3