r600: fix typo in the last commit
authorAlex Deucher <alexdeucher@gmail.com>
Mon, 21 Sep 2009 20:48:55 +0000 (16:48 -0400)
committerAlex Deucher <alexdeucher@gmail.com>
Mon, 21 Sep 2009 20:48:55 +0000 (16:48 -0400)
128 gprs, 256 reg-based consts

src/mesa/drivers/dri/r600/r600_context.c

index 6a90a5bcd190950a826cf64498cf939f5e523f64..354b263f5cb0993700635470498717872c8ac3db 100644 (file)
@@ -330,16 +330,16 @@ GLboolean r600CreateContext(const __GLcontextModes * glVisual,
        _tnl_allow_pixel_fog(ctx, GL_FALSE);
        _tnl_allow_vertex_fog(ctx, GL_TRUE);
 
-       /* currently bogus data */
+       /* 256 for reg-based consts, inline consts also supported */
        ctx->Const.VertexProgram.MaxInstructions = 8192; /* in theory no limit */
        ctx->Const.VertexProgram.MaxNativeInstructions = 8192;
        ctx->Const.VertexProgram.MaxNativeAttribs = 160;
-       ctx->Const.VertexProgram.MaxTemps = 256; /* 256 for reg-based constants, inline consts also supported */
-       ctx->Const.VertexProgram.MaxNativeTemps = 256;
-       ctx->Const.VertexProgram.MaxNativeParameters = 256; /* ??? */
+       ctx->Const.VertexProgram.MaxTemps = 128;
+       ctx->Const.VertexProgram.MaxNativeTemps = 128;
+       ctx->Const.VertexProgram.MaxNativeParameters = 256;
        ctx->Const.VertexProgram.MaxNativeAddressRegs = 1; /* ??? */
 
-       ctx->Const.FragmentProgram.MaxNativeTemps = 256;
+       ctx->Const.FragmentProgram.MaxNativeTemps = 128;
        ctx->Const.FragmentProgram.MaxNativeAttribs = 32;
        ctx->Const.FragmentProgram.MaxNativeParameters = 256;
        ctx->Const.FragmentProgram.MaxNativeAluInstructions = 8192;