filename | src/drivers/video_gl.h |
changeset | 669:ab344e42bca9 |
prev | 662:7c8b88493ee1 |
next | 736:a02d1475ccfd |
author | nkeynes |
date | Mon May 12 10:00:13 2008 +0000 (14 years ago) |
permissions | -rw-r--r-- |
last change | Cleanup most of the -Wall warnings (getting a bit sloppy...) Convert FP code to use fixed banks rather than indirect pointer (3-4% faster this way now) |
file | annotate | diff | log | raw |
1.1 --- a/src/drivers/video_gl.h Thu Apr 17 07:54:17 2008 +00001.2 +++ b/src/drivers/video_gl.h Mon May 12 10:00:13 2008 +00001.3 @@ -25,9 +25,14 @@1.4 gboolean gl_load_frame_buffer( frame_buffer_t frame, int tex_id );1.6 /**1.7 + * Reset the GL state to its initial values1.8 + */1.9 +void gl_reset_state();1.10 +1.11 +/**1.12 * Generic GL routine to blank the display view with the specified colour.1.13 */1.14 -gboolean gl_display_blank( uint32_t colour );1.15 +void gl_display_blank( uint32_t colour );1.17 /**1.18 * Write a rectangular texture (GL_TEXTURE_RECTANGLE_ARB) to the display frame
.