X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fvideo%2Fdrawing_context.hpp;h=302b90e232e77a30a753e07b30236b29438eb3d6;hb=3aa6936791cf24344e27d452ab2fd8c33fb5a2e8;hp=a8b7fc400d018c4fabf04c25afd3a8f0edeae644;hpb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;p=supertux.git diff --git a/src/video/drawing_context.hpp b/src/video/drawing_context.hpp index a8b7fc400..302b90e23 100644 --- a/src/video/drawing_context.hpp +++ b/src/video/drawing_context.hpp @@ -116,6 +116,12 @@ public: void take_screenshot(); private: + typedef std::vector DrawingRequests; + +private: + void handle_drawing_requests(DrawingRequests& requests); + +private: class Transform { public: @@ -135,6 +141,7 @@ private: } }; +private: Renderer *renderer; Lightmap *lightmap; @@ -146,10 +153,6 @@ private: std::vector blend_stack; Blend blend_mode; - typedef std::vector DrawingRequests; - - void handle_drawing_requests(DrawingRequests& requests); - DrawingRequests drawing_requests; DrawingRequests lightmap_requests;