3 This file is part of gldbg
4 Copyright © 2011 Mikko Rasa, Mikkosoft Productions
5 Distributed under the GPL
13 template<void (Grabber::*next_frame)()>
14 void eglSwapBuffers(void *user_data, unsigned, void *, void *)
16 (reinterpret_cast<Grabber *>(user_data)->*next_frame)();
21 unsigned short Grabber::break_funcs[] =
29 void Grabber::flavor_init()
31 decoder->eglSwapBuffers = eglSwapBuffers<&Grabber::next_frame>;