From c606313676ccc6d91d8b9a103384fe4f02dd9559 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Thu, 29 May 2003 03:01:53 +0000 Subject: [PATCH] line smoothing! --- glft/test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glft/test.c b/glft/test.c index cf32d42b..b4ff967b 100644 --- a/glft/test.c +++ b/glft/test.c @@ -84,8 +84,9 @@ int main(int argc, char **argv) glClearColor(0.0, 0.0, 1.0, 0.0); glMatrixMode(GL_PROJECTION); glLoadIdentity(); - glOrtho(0, 30, -10, 30, 0, 10); + glOrtho(0, 300, -100, 300, 0, 10); glMatrixMode(GL_MODELVIEW); + glEnable(GL_LINE_SMOOTH); quit = 0; while (!quit) { -- 2.34.1