From: Eleni Maria Stea Date: Thu, 7 Mar 2013 15:21:58 +0000 (+0200) Subject: fixed key in the example conf file X-Git-Url: https://eleni.mutantstargoat.com/git/?p=libgliar;a=commitdiff_plain;h=1b5a213096e13b7cb526c70540adb194d11e992e fixed key in the example conf file --- diff --git a/examples/lenovo.conf b/examples/lenovo.conf index 5ca57f1..4484fae 100644 --- a/examples/lenovo.conf +++ b/examples/lenovo.conf @@ -228,5 +228,5 @@ GL_ARB_invalidate_subdata [max color attachments] 8 -[max renderbuffer size] +[max renderbuffer size ext] 8192 diff --git a/tests/glinfo/glinfo.c b/tests/glinfo/glinfo.c index 186ccd7..e272e84 100644 --- a/tests/glinfo/glinfo.c +++ b/tests/glinfo/glinfo.c @@ -50,6 +50,6 @@ int main(int argc, char **argv) printf("max fragment uniform vectors: %d\n", GET_INTEGER(GL_MAX_FRAGMENT_UNIFORM_VECTORS)); printf("max varying vectors: %d\n", GET_INTEGER(GL_MAX_VARYING_VECTORS)); printf("max color attachments: %d\n", GET_INTEGER(GL_MAX_COLOR_ATTACHMENTS_EXT)); - printf("max renderbuffer size: %d\n", GET_INTEGER(GL_MAX_RENDERBUFFER_SIZE_EXT)); + printf("max renderbuffer size ext: %d\n", GET_INTEGER(GL_MAX_RENDERBUFFER_SIZE_EXT)); return 0; }