replace some of the glBegin,glEnd calls with glDrawArrays
[supertux.git] / src / video / drawing_request.hpp
index 5eeb711..581438a 100644 (file)
@@ -70,7 +70,7 @@ enum Target {
 
 enum RequestType
 {
-  SURFACE, SURFACE_PART, TEXT, GRADIENT, FILLRECT, GETLIGHT
+  SURFACE, SURFACE_PART, TEXT, GRADIENT, FILLRECT, INVERSEELLIPSE, DRAW_LIGHTMAP, GETLIGHT
 };
 
 struct SurfacePartRequest
@@ -99,6 +99,12 @@ struct FillRectRequest
   float  radius;
 };
 
+struct InverseEllipseRequest
+{
+  Color  color;
+  Vector size;
+};
+
 struct DrawingRequest
 {
   Target target;