Add copyright message to gles_video
[gpsp.git] / video.h
diff --git a/video.h b/video.h
index 40c24c2..a8059bd 100644 (file)
--- a/video.h
+++ b/video.h
@@ -49,6 +49,8 @@ void debug_screen_update();
 
 extern u32 frame_speed;
 
+extern u32 resolution_width, resolution_height;
+
 extern s32 affine_reference_x[2];
 extern s32 affine_reference_y[2];
 
@@ -77,7 +79,7 @@ typedef enum
 {
   unscaled,
   scaled_aspect,
-#ifdef WIZ_BUILD
+#ifdef POLLUX_BUILD
   unscaled_rot,
   scaled_aspect_rot,
 #elif defined(GP2X_BUILD)
@@ -94,9 +96,18 @@ typedef enum
   filter_bilinear
 } video_filter_type;
 
+typedef enum
+{
+  filter2_none,
+  filter2_scale2x,
+  filter2_scale3x,
+  filter2_eagle2x,
+} video_filter_type2;
+
 extern video_scale_type screen_scale;
 extern video_scale_type current_scale;
 extern video_filter_type screen_filter;
+extern video_filter_type2 screen_filter2;
 
 void set_gba_resolution(video_scale_type scale);