diff options
author | Keith Whitwell <[email protected]> | 2007-06-14 18:25:10 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-06-14 18:25:10 +0100 |
commit | 477e18cb026b287e8fd0cb415b81f777fe0db39e (patch) | |
tree | d1c19240e4163214e6d1db158b7f44c669be5a60 /progs/trivial/tri-blend.c | |
parent | 943964a1e5bad86bdceb0a06d60fb3b302ebce6a (diff) |
Add GLUT_ALPHA for softpipe
Diffstat (limited to 'progs/trivial/tri-blend.c')
-rw-r--r-- | progs/trivial/tri-blend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/trivial/tri-blend.c b/progs/trivial/tri-blend.c index 284d15fd3c9..58c451c9769 100644 --- a/progs/trivial/tri-blend.c +++ b/progs/trivial/tri-blend.c @@ -132,7 +132,7 @@ void keyboard(unsigned char key, int x, int y) int main(int argc, char** argv) { glutInit(&argc, argv); - glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); + glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB | GLUT_ALPHA); glutInitWindowSize (200, 200); glutCreateWindow (argv[0]); init(); |