snes9x/gtk/src/gtk_display_driver_opengl.h

74 lines
1.9 KiB
C
Raw Normal View History

2010-09-25 15:46:12 +00:00
#ifndef __GTK_DISPLAY_DRIVER_OPENGL_H
#define __GTK_DISPLAY_DRIVER_OPENGL_H
#include "gtk_s9x.h"
#include "gtk_display_driver.h"
#include <epoxy/gl.h>
#include "gtk_opengl_context.h"
2018-10-15 19:04:28 +00:00
#ifdef GDK_WINDOWING_X11
#include "gtk_glx_context.h"
2018-10-15 19:04:28 +00:00
#endif
#ifdef GDK_WINDOWING_WAYLAND
#include "gtk_wayland_egl_context.h"
#endif
2018-05-10 23:47:55 +00:00
#include "shaders/glsl.h"
2018-10-27 21:06:16 +00:00
#define BUFFER_OFFSET(i) ((char *) NULL + (i))
2010-09-25 15:46:12 +00:00
class S9xOpenGLDisplayDriver : public S9xDisplayDriver
{
public:
S9xOpenGLDisplayDriver (Snes9xWindow *window, Snes9xConfig *config);
void refresh (int width, int height);
int init ();
void deinit ();
void clear_buffers ();
2018-05-04 22:12:22 +00:00
void update (int width, int height, int yoffset);
uint16 *get_next_buffer ();
uint16 *get_current_buffer ();
2010-09-25 15:46:12 +00:00
void push_buffer (uint16 *src);
void *get_parameters ();
2018-05-13 16:02:52 +00:00
void save (const char *filename);
static int query_availability ();
2010-09-25 15:46:12 +00:00
private:
int opengl_defaults ();
void swap_buffers ();
int load_shaders (const char *);
2010-09-25 15:46:12 +00:00
void update_texture_size (int width, int height);
2018-10-27 21:06:16 +00:00
int create_context ();
void resize ();
2010-09-26 09:19:15 +00:00
2018-10-27 21:06:16 +00:00
GLint texture_width;
GLint texture_height;
GLfloat vertices[8];
GLfloat texcoords[8];
GLuint texmap;
GLuint pbo;
2010-09-25 15:46:12 +00:00
2018-10-27 21:06:16 +00:00
bool npot;
bool using_pbos;
bool initialized;
2010-09-25 15:46:12 +00:00
2018-10-27 21:06:16 +00:00
bool using_glsl_shaders;
GLSLShader *glsl_shader;
2018-05-10 23:47:55 +00:00
2018-10-27 21:06:16 +00:00
GdkWindow *gdk_window;
int output_window_width;
int output_window_height;
2018-10-15 19:04:28 +00:00
2018-10-27 21:06:16 +00:00
OpenGLContext *context;
2018-10-15 19:04:28 +00:00
#ifdef GDK_WINDOWING_X11
2018-10-27 21:06:16 +00:00
GTKGLXContext glx;
2018-10-15 19:04:28 +00:00
#endif
#ifdef GDK_WINDOWING_WAYLAND
2018-10-27 21:06:16 +00:00
WaylandEGLContext wl;
#endif
2010-09-25 15:46:12 +00:00
};
#endif /* __GTK_DISPLAY_DRIVER_OPENGL_H */