aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gfx/gfx_driver.h
diff options
context:
space:
mode:
authorFilippos Karapetis2009-05-30 16:36:37 +0000
committerFilippos Karapetis2009-05-30 16:36:37 +0000
commitecfb2e5b5dd61b434951f0e6d95536d4b981569e (patch)
tree7bd4cab539944a4035cd166cdfa0cfb55083b1f3 /engines/sci/gfx/gfx_driver.h
parent86d78bbc8b4f752bf115ec394a5bc20c052de102 (diff)
downloadscummvm-rg350-ecfb2e5b5dd61b434951f0e6d95536d4b981569e.tar.gz
scummvm-rg350-ecfb2e5b5dd61b434951f0e6d95536d4b981569e.tar.bz2
scummvm-rg350-ecfb2e5b5dd61b434951f0e6d95536d4b981569e.zip
- Moved the print_port, segment_info and segment_kill console commands to console.cpp
- Removed the unused gfx driver debug flags svn-id: r41036
Diffstat (limited to 'engines/sci/gfx/gfx_driver.h')
-rw-r--r--engines/sci/gfx/gfx_driver.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/engines/sci/gfx/gfx_driver.h b/engines/sci/gfx/gfx_driver.h
index 634fe072e0..254f619b34 100644
--- a/engines/sci/gfx/gfx_driver.h
+++ b/engines/sci/gfx/gfx_driver.h
@@ -42,11 +42,6 @@ enum gfx_buffer_t {
#define GFX_CAPABILITY_SHADING (1<<0)
#define GFX_CAPABILITY_STIPPLED_LINES (1<<6)
-#define GFX_DEBUG_POINTER (1<<0)
-#define GFX_DEBUG_UPDATES (1<<1)
-#define GFX_DEBUG_PIXMAPS (1<<2)
-#define GFX_DEBUG_BASIC (1<<3) /* Basic geometric ops (lines, boxes, etc) */
-
/* Principial graphics driver architecture
** ---------------------------------------
**
@@ -92,9 +87,6 @@ struct gfx_driver_t { /* Graphics driver */
** horizontally and vertically (xl = 0 or yl = 0).
*/
- unsigned int debug_flags; /* Driver debug flags */
-
-
/*** Initialization ***/
int (*set_parameter)(gfx_driver_t *drv, char *attribute, char *value);