diff options
author | Sean D'Epagnier <geckosenator@freedesktop.org> | 2006-08-10 10:21:17 +0000 |
---|---|---|
committer | Sean D'Epagnier <geckosenator@freedesktop.org> | 2006-08-10 10:21:17 +0000 |
commit | 7196cddb3a404292858101f9cd1a5061e422d2c1 (patch) | |
tree | aa3f79e21b08d9f114c7b1984e6c86c114081cfe /src/glut/fbdev/Makefile | |
parent | 54e15d65858c1d1eeea7291059766686cf2e1671 (diff) |
Added initial multisampling support to glfbdev driver.
Fully implemented glutGameMode, and added vidresize stubs to make
Added support for glutReshapeDisplay to change video mode but not lose
current mesa context.
implementation glut 5 complient.
Fixed many minor bugs
Updated docs
Diffstat (limited to 'src/glut/fbdev/Makefile')
-rw-r--r-- | src/glut/fbdev/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/glut/fbdev/Makefile b/src/glut/fbdev/Makefile index 39a48f3634..4f70efe279 100644 --- a/src/glut/fbdev/Makefile +++ b/src/glut/fbdev/Makefile @@ -6,8 +6,8 @@ include $(TOP)/configs/current GLX_SHARED = $(TOP)/src/glut/glx SHAPES = $(TOP)/src/glut/mini -GLUT_MAJOR = 3 -GLUT_MINOR = 7 +GLUT_MAJOR = 5 +GLUT_MINOR = 0 GLUT_TINY = 1 INCLUDES = -I$(TOP)/include -I$(GLX_SHARED) @@ -22,7 +22,8 @@ CORE_SOURCES = \ state.c \ input.c \ callback.c \ - gamemode.c + gamemode.c \ + vidresize.c GLX_SHARED_SOURCES = \ $(GLX_SHARED)/glut_8x13.c \ |