X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=glwidget.h;h=9b554d078d5280e1ae441bd345485f97112156a8;hb=778fe6ec989e7ed640a6c3d209099b6be3945bba;hp=ed67ae8621169fd7852c9bc9bccd5de2aa0797b7;hpb=f18d7ca5c487c54a7948179f68fb9d2e5616d98e;p=nageru diff --git a/glwidget.h b/glwidget.h index ed67ae8..9b554d0 100644 --- a/glwidget.h +++ b/glwidget.h @@ -39,6 +39,9 @@ public: void shutdown(); + // NOTE: Will make the white balance flicker for a frame. + void grab_white_balance(unsigned channel, unsigned x, unsigned y); + protected: void initializeGL() override; void resizeGL(int width, int height) override; @@ -63,6 +66,9 @@ private: GLuint position_vbo, texcoord_vbo; movit::ResourcePool *resource_pool = nullptr; int current_width = 1, current_height = 1; + bool should_grab = false; + unsigned grab_x, grab_y; + Mixer::Output grab_output; // Should nominally be the same as output. }; #endif