X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=jpeg_frame_view.h;h=585417279ca8ebcfbbed1263abcdcfb6d3f7bbc3;hb=3b4728ed9e8e071de95868f9ce3fee40e9f6bbb7;hp=5ef68d01cb56d50ef7b1677455e2a7fc75fad4a0;hpb=c015224d38abb896d92c55f1b4517f0600828f68;p=nageru diff --git a/jpeg_frame_view.h b/jpeg_frame_view.h index 5ef68d0..5854172 100644 --- a/jpeg_frame_view.h +++ b/jpeg_frame_view.h @@ -65,11 +65,14 @@ private: movit::YCbCrInput *ycbcr_input; movit::YCbCrFormat ycbcr_format; - static constexpr int overlay_width = 16, overlay_height = 16; + static constexpr int overlay_base_width = 16, overlay_base_height = 16; + int overlay_width = overlay_base_width, overlay_height = overlay_base_height; std::unique_ptr overlay_image; // If nullptr, no overlay. std::unique_ptr overlay_chain; // Just to get the overlay on screen in the easiest way possible. movit::FlatInput *overlay_input; bool overlay_input_needs_refresh = false; + + int gl_width, gl_height; }; #endif // !defined(_JPEG_FRAME_VIEW_H)