gtk.h (9b9fbe8a4e9eec9072ee2697a6af59144442785f) | gtk.h (a4f113fd691899d926425ffd74b8f341cebf672c) |
---|---|
1#ifndef UI_GTK_H 2#define UI_GTK_H 3 4#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE 5/* Work around an -Wstrict-prototypes warning in GTK headers */ 6#pragma GCC diagnostic push 7#pragma GCC diagnostic ignored "-Wstrict-prototypes" 8#endif --- 38 unchanged lines hidden (view full) --- 47 double scale_x; 48 double scale_y; 49#if defined(CONFIG_OPENGL) 50 ConsoleGLState *gls; 51 EGLContext ectx; 52 EGLSurface esurface; 53 int glupdates; 54 int x, y, w, h; | 1#ifndef UI_GTK_H 2#define UI_GTK_H 3 4#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE 5/* Work around an -Wstrict-prototypes warning in GTK headers */ 6#pragma GCC diagnostic push 7#pragma GCC diagnostic ignored "-Wstrict-prototypes" 8#endif --- 38 unchanged lines hidden (view full) --- 47 double scale_x; 48 double scale_y; 49#if defined(CONFIG_OPENGL) 50 ConsoleGLState *gls; 51 EGLContext ectx; 52 EGLSurface esurface; 53 int glupdates; 54 int x, y, w, h; |
55 GLuint tex_id; 56 GLuint fbo_id; | 55 egl_fb guest_fb; 56 egl_fb win_fb; |
57 bool y0_top; 58 bool scanout_mode; 59#endif 60} VirtualGfxConsole; 61 62#if defined(CONFIG_VTE) 63typedef struct VirtualVteConsole { 64 GtkWidget *box; --- 82 unchanged lines hidden --- | 57 bool y0_top; 58 bool scanout_mode; 59#endif 60} VirtualGfxConsole; 61 62#if defined(CONFIG_VTE) 63typedef struct VirtualVteConsole { 64 GtkWidget *box; --- 82 unchanged lines hidden --- |