From: Derek Foreman Date: Thu, 29 May 2003 22:37:26 +0000 (+0000) Subject: move ortho so we start off of the edge X-Git-Tag: gl2~25 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=7f901bb7385d3b9b74b72bf4b9e3294baef9a230;p=dana%2Fopenbox.git move ortho so we start off of the edge --- diff --git a/glft/test.c b/glft/test.c index 1000dfd0..e889baa2 100644 --- a/glft/test.c +++ b/glft/test.c @@ -83,7 +83,7 @@ int main(int argc, char **argv) XSetWMProtocols(display, win, &delete_win, 1); glMatrixMode(GL_PROJECTION); glLoadIdentity(); - glOrtho(0, W, -100, H-100, 0, 10); + glOrtho(-50, W-50, -100, H-100, 0, 10); glMatrixMode(GL_MODELVIEW); glEnable(GL_TEXTURE_2D); quit = 0;