egldisplay: Support creating headless GLES contexts

See #557
This commit is contained in:
rdb 2020-05-19 22:33:48 +02:00
parent c218af2f49
commit fbc4947455
12 changed files with 120 additions and 62 deletions

View File

@ -4494,13 +4494,14 @@ if (GetTarget() == 'windows' and PkgSkip("GL")==0):
# DIRECTORY: panda/src/egldisplay/ # DIRECTORY: panda/src/egldisplay/
# #
if (PkgSkip("EGL")==0 and PkgSkip("GLES")==0 and PkgSkip("X11")==0): if (PkgSkip("EGL")==0 and PkgSkip("GLES")==0):
DefSymbol('GLES', 'OPENGLES_1', '') DefSymbol('GLES', 'OPENGLES_1', '')
OPTS=['DIR:panda/src/egldisplay', 'DIR:panda/src/glstuff', 'BUILDING:PANDAGLES', 'GLES', 'EGL'] OPTS=['DIR:panda/src/egldisplay', 'DIR:panda/src/glstuff', 'BUILDING:PANDAGLES', 'GLES', 'EGL']
TargetAdd('pandagles_egldisplay_composite1.obj', opts=OPTS, input='p3egldisplay_composite1.cxx') TargetAdd('pandagles_egldisplay_composite1.obj', opts=OPTS, input='p3egldisplay_composite1.cxx')
OPTS=['DIR:panda/metalibs/pandagles', 'BUILDING:PANDAGLES', 'GLES', 'EGL'] OPTS=['DIR:panda/metalibs/pandagles', 'BUILDING:PANDAGLES', 'GLES', 'EGL']
TargetAdd('pandagles_pandagles.obj', opts=OPTS, input='pandagles.cxx') TargetAdd('pandagles_pandagles.obj', opts=OPTS, input='pandagles.cxx')
TargetAdd('libpandagles.dll', input='p3x11display_composite1.obj') if not PkgSkip("X11"):
TargetAdd('libpandagles.dll', input='p3x11display_composite1.obj')
TargetAdd('libpandagles.dll', input='pandagles_pandagles.obj') TargetAdd('libpandagles.dll', input='pandagles_pandagles.obj')
TargetAdd('libpandagles.dll', input='p3glesgsg_config_glesgsg.obj') TargetAdd('libpandagles.dll', input='p3glesgsg_config_glesgsg.obj')
TargetAdd('libpandagles.dll', input='p3glesgsg_glesgsg.obj') TargetAdd('libpandagles.dll', input='p3glesgsg_glesgsg.obj')
@ -4512,13 +4513,14 @@ if (PkgSkip("EGL")==0 and PkgSkip("GLES")==0 and PkgSkip("X11")==0):
# DIRECTORY: panda/src/egldisplay/ # DIRECTORY: panda/src/egldisplay/
# #
if (PkgSkip("EGL")==0 and PkgSkip("GLES2")==0 and PkgSkip("X11")==0): if (PkgSkip("EGL")==0 and PkgSkip("GLES2")==0):
DefSymbol('GLES2', 'OPENGLES_2', '') DefSymbol('GLES2', 'OPENGLES_2', '')
OPTS=['DIR:panda/src/egldisplay', 'DIR:panda/src/glstuff', 'BUILDING:PANDAGLES2', 'GLES2', 'EGL'] OPTS=['DIR:panda/src/egldisplay', 'DIR:panda/src/glstuff', 'BUILDING:PANDAGLES2', 'GLES2', 'EGL']
TargetAdd('pandagles2_egldisplay_composite1.obj', opts=OPTS, input='p3egldisplay_composite1.cxx') TargetAdd('pandagles2_egldisplay_composite1.obj', opts=OPTS, input='p3egldisplay_composite1.cxx')
OPTS=['DIR:panda/metalibs/pandagles2', 'BUILDING:PANDAGLES2', 'GLES2', 'EGL'] OPTS=['DIR:panda/metalibs/pandagles2', 'BUILDING:PANDAGLES2', 'GLES2', 'EGL']
TargetAdd('pandagles2_pandagles2.obj', opts=OPTS, input='pandagles2.cxx') TargetAdd('pandagles2_pandagles2.obj', opts=OPTS, input='pandagles2.cxx')
TargetAdd('libpandagles2.dll', input='p3x11display_composite1.obj') if not PkgSkip("X11"):
TargetAdd('libpandagles2.dll', input='p3x11display_composite1.obj')
TargetAdd('libpandagles2.dll', input='pandagles2_pandagles2.obj') TargetAdd('libpandagles2.dll', input='pandagles2_pandagles2.obj')
TargetAdd('libpandagles2.dll', input='p3gles2gsg_config_gles2gsg.obj') TargetAdd('libpandagles2.dll', input='p3gles2gsg_config_gles2gsg.obj')
TargetAdd('libpandagles2.dll', input='p3gles2gsg_gles2gsg.obj') TargetAdd('libpandagles2.dll', input='p3gles2gsg_gles2gsg.obj')

View File

@ -45,7 +45,9 @@ init_libegldisplay() {
initialized = true; initialized = true;
eglGraphicsPipe::init_type(); eglGraphicsPipe::init_type();
#ifdef HAVE_X11
eglGraphicsWindow::init_type(); eglGraphicsWindow::init_type();
#endif
eglGraphicsStateGuardian::init_type(); eglGraphicsStateGuardian::init_type();
GraphicsPipeSelection *selection = GraphicsPipeSelection::get_global_ptr(); GraphicsPipeSelection *selection = GraphicsPipeSelection::get_global_ptr();

View File

@ -127,7 +127,7 @@ close_buffer() {
if (_gsg != nullptr) { if (_gsg != nullptr) {
eglGraphicsStateGuardian *eglgsg; eglGraphicsStateGuardian *eglgsg;
DCAST_INTO_V(eglgsg, _gsg); DCAST_INTO_V(eglgsg, _gsg);
if (!eglMakeCurrent(eglgsg->_egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)) { if (!eglMakeCurrent(_egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)) {
egldisplay_cat.error() << "Failed to call eglMakeCurrent: " egldisplay_cat.error() << "Failed to call eglMakeCurrent: "
<< get_egl_error_string(eglGetError()) << "\n"; << get_egl_error_string(eglGetError()) << "\n";
} }
@ -159,7 +159,7 @@ open_buffer() {
if (_gsg == 0) { if (_gsg == 0) {
// There is no old gsg. Create a new one. // There is no old gsg. Create a new one.
eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, nullptr); eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, nullptr);
eglgsg->choose_pixel_format(_fb_properties, egl_pipe->get_display(), egl_pipe->get_screen(), true, false); eglgsg->choose_pixel_format(_fb_properties, egl_pipe, false, true, false);
_gsg = eglgsg; _gsg = eglgsg;
} else { } else {
// If the old gsg has the wrong pixel format, create a new one that shares // If the old gsg has the wrong pixel format, create a new one that shares
@ -167,7 +167,7 @@ open_buffer() {
DCAST_INTO_R(eglgsg, _gsg, false); DCAST_INTO_R(eglgsg, _gsg, false);
if (!eglgsg->get_fb_properties().subsumes(_fb_properties)) { if (!eglgsg->get_fb_properties().subsumes(_fb_properties)) {
eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, eglgsg); eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, eglgsg);
eglgsg->choose_pixel_format(_fb_properties, egl_pipe->get_display(), egl_pipe->get_screen(), true, false); eglgsg->choose_pixel_format(_fb_properties, egl_pipe, false, true, false);
_gsg = eglgsg; _gsg = eglgsg;
} }
} }
@ -178,6 +178,8 @@ open_buffer() {
return false; return false;
} }
_egl_display = eglgsg->_egl_display;
int attrib_list[] = { int attrib_list[] = {
EGL_WIDTH, _size.get_x(), EGL_WIDTH, _size.get_x(),
EGL_HEIGHT, _size.get_y(), EGL_HEIGHT, _size.get_y(),

View File

@ -10,3 +10,11 @@
* @author rdb * @author rdb
* @date 2009-05-21 * @date 2009-05-21
*/ */
/**
*
*/
INLINE EGLDisplay eglGraphicsPipe::
get_egl_display() const {
return _egl_display;
}

View File

@ -25,19 +25,32 @@ TypeHandle eglGraphicsPipe::_type_handle;
* *
*/ */
eglGraphicsPipe:: eglGraphicsPipe::
eglGraphicsPipe(const std::string &display) : x11GraphicsPipe(display) { eglGraphicsPipe() {
//NB. if the X11 display failed to open, _display will be 0, which is a valid
// input to eglGetDisplay - it means to open the default display.
#ifdef HAVE_X11
_egl_display = eglGetDisplay((NativeDisplayType) _display); _egl_display = eglGetDisplay((NativeDisplayType) _display);
#else
_egl_display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
#endif
if (!eglInitialize(_egl_display, nullptr, nullptr)) { if (!eglInitialize(_egl_display, nullptr, nullptr)) {
egldisplay_cat.error() egldisplay_cat.error()
<< "Couldn't initialize the EGL display: " << "Couldn't initialize the EGL display: "
<< get_egl_error_string(eglGetError()) << "\n"; << get_egl_error_string(eglGetError()) << "\n";
_is_valid = false;
return;
} }
if (!eglBindAPI(EGL_OPENGL_ES_API)) { if (!eglBindAPI(EGL_OPENGL_ES_API)) {
egldisplay_cat.error() egldisplay_cat.error()
<< "Couldn't bind EGL to the OpenGL ES API: " << "Couldn't bind EGL to the OpenGL ES API: "
<< get_egl_error_string(eglGetError()) << "\n"; << get_egl_error_string(eglGetError()) << "\n";
_is_valid = false;
return;
} }
// Even if we don't have an X11 display, we can still render headless.
_is_valid = true;
} }
/** /**
@ -110,6 +123,10 @@ make_output(const std::string &name,
// First thing to try: an eglGraphicsWindow // First thing to try: an eglGraphicsWindow
if (retry == 0) { if (retry == 0) {
#ifdef HAVE_X11
if (!_display) {
return nullptr;
}
if (((flags&BF_require_parasite)!=0)|| if (((flags&BF_require_parasite)!=0)||
((flags&BF_refuse_window)!=0)|| ((flags&BF_refuse_window)!=0)||
((flags&BF_resizeable)!=0)|| ((flags&BF_resizeable)!=0)||
@ -121,6 +138,9 @@ make_output(const std::string &name,
} }
return new eglGraphicsWindow(engine, this, name, fb_prop, win_prop, return new eglGraphicsWindow(engine, this, name, fb_prop, win_prop,
flags, gsg, host); flags, gsg, host);
#else
return nullptr;
#endif
} }
// Second thing to try: a GLES(2)GraphicsBuffer // Second thing to try: a GLES(2)GraphicsBuffer
@ -184,6 +204,10 @@ make_output(const std::string &name,
// Fourth thing to try: an eglGraphicsPixmap. // Fourth thing to try: an eglGraphicsPixmap.
if (retry == 3) { if (retry == 3) {
#ifdef HAVE_X11
if (!_display) {
return nullptr;
}
if (((flags&BF_require_parasite)!=0)|| if (((flags&BF_require_parasite)!=0)||
((flags&BF_require_window)!=0)|| ((flags&BF_require_window)!=0)||
((flags&BF_resizeable)!=0)|| ((flags&BF_resizeable)!=0)||
@ -198,6 +222,9 @@ make_output(const std::string &name,
return new eglGraphicsPixmap(engine, this, name, fb_prop, win_prop, return new eglGraphicsPixmap(engine, this, name, fb_prop, win_prop,
flags, gsg, host); flags, gsg, host);
#else
return nullptr;
#endif
} }
// Nothing else left to try. // Nothing else left to try.

View File

@ -15,7 +15,14 @@
#define EGLGRAPHICSPIPE_H #define EGLGRAPHICSPIPE_H
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_X11
#include "x11GraphicsPipe.h" #include "x11GraphicsPipe.h"
typedef x11GraphicsPipe BaseGraphicsPipe;
#else
#include "graphicsPipe.h"
typedef GraphicsPipe BaseGraphicsPipe;
#endif
#ifdef OPENGLES_2 #ifdef OPENGLES_2
#include "gles2gsg.h" #include "gles2gsg.h"
@ -42,14 +49,16 @@ class eglGraphicsWindow;
* This graphics pipe represents the interface for creating OpenGL ES graphics * This graphics pipe represents the interface for creating OpenGL ES graphics
* windows on an X-based (e.g. Unix) client. * windows on an X-based (e.g. Unix) client.
*/ */
class eglGraphicsPipe : public x11GraphicsPipe { class eglGraphicsPipe : public BaseGraphicsPipe {
public: public:
eglGraphicsPipe(const std::string &display = std::string()); eglGraphicsPipe();
virtual ~eglGraphicsPipe(); virtual ~eglGraphicsPipe();
virtual std::string get_interface_name() const; virtual std::string get_interface_name() const;
static PT(GraphicsPipe) pipe_constructor(); static PT(GraphicsPipe) pipe_constructor();
INLINE EGLDisplay get_egl_display() const;
protected: protected:
virtual PT(GraphicsOutput) make_output(const std::string &name, virtual PT(GraphicsOutput) make_output(const std::string &name,
const FrameBufferProperties &fb_prop, const FrameBufferProperties &fb_prop,
@ -62,16 +71,16 @@ protected:
bool &precertify); bool &precertify);
private: private:
EGLDisplay _egl_display; EGLDisplay _egl_display = 0;
public: public:
static TypeHandle get_class_type() { static TypeHandle get_class_type() {
return _type_handle; return _type_handle;
} }
static void init_type() { static void init_type() {
x11GraphicsPipe::init_type(); BaseGraphicsPipe::init_type();
register_type(_type_handle, "eglGraphicsPipe", register_type(_type_handle, "eglGraphicsPipe",
x11GraphicsPipe::get_class_type()); BaseGraphicsPipe::get_class_type());
} }
virtual TypeHandle get_type() const { virtual TypeHandle get_type() const {
return get_class_type(); return get_class_type();
@ -80,10 +89,6 @@ public:
private: private:
static TypeHandle _type_handle; static TypeHandle _type_handle;
friend class eglGraphicsBuffer;
friend class eglGraphicsPixmap;
friend class eglGraphicsWindow;
}; };
#include "eglGraphicsPipe.I" #include "eglGraphicsPipe.I"

View File

@ -12,6 +12,9 @@
*/ */
#include "eglGraphicsPixmap.h" #include "eglGraphicsPixmap.h"
#ifdef HAVE_X11
#include "eglGraphicsWindow.h" #include "eglGraphicsWindow.h"
#include "eglGraphicsStateGuardian.h" #include "eglGraphicsStateGuardian.h"
#include "config_egldisplay.h" #include "config_egldisplay.h"
@ -37,8 +40,7 @@ eglGraphicsPixmap(GraphicsEngine *engine, GraphicsPipe *pipe,
{ {
eglGraphicsPipe *egl_pipe; eglGraphicsPipe *egl_pipe;
DCAST_INTO_V(egl_pipe, _pipe); DCAST_INTO_V(egl_pipe, _pipe);
_display = egl_pipe->get_display(); _egl_display = egl_pipe->get_egl_display();
_egl_display = egl_pipe->_egl_display;
_drawable = None; _drawable = None;
_x_pixmap = None; _x_pixmap = None;
_egl_surface = EGL_NO_SURFACE; _egl_surface = EGL_NO_SURFACE;
@ -167,7 +169,7 @@ open_buffer() {
if (_gsg == 0) { if (_gsg == 0) {
// There is no old gsg. Create a new one. // There is no old gsg. Create a new one.
eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, nullptr); eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, nullptr);
eglgsg->choose_pixel_format(_fb_properties, _display, egl_pipe->get_screen(), false, true); eglgsg->choose_pixel_format(_fb_properties, egl_pipe, false, false, true);
_gsg = eglgsg; _gsg = eglgsg;
} else { } else {
// If the old gsg has the wrong pixel format, create a new one that shares // If the old gsg has the wrong pixel format, create a new one that shares
@ -175,7 +177,7 @@ open_buffer() {
DCAST_INTO_R(eglgsg, _gsg, false); DCAST_INTO_R(eglgsg, _gsg, false);
if (!eglgsg->get_fb_properties().subsumes(_fb_properties)) { if (!eglgsg->get_fb_properties().subsumes(_fb_properties)) {
eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, eglgsg); eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, eglgsg);
eglgsg->choose_pixel_format(_fb_properties, _display, egl_pipe->get_screen(), false, true); eglgsg->choose_pixel_format(_fb_properties, egl_pipe, false, false, true);
_gsg = eglgsg; _gsg = eglgsg;
} }
} }
@ -194,6 +196,7 @@ open_buffer() {
return false; return false;
} }
_display = egl_pipe->get_display();
_drawable = egl_pipe->get_root(); _drawable = egl_pipe->get_root();
if (_host != nullptr) { if (_host != nullptr) {
if (_host->is_of_type(eglGraphicsWindow::get_class_type())) { if (_host->is_of_type(eglGraphicsWindow::get_class_type())) {
@ -241,3 +244,5 @@ open_buffer() {
_is_valid = true; _is_valid = true;
return true; return true;
} }
#endif // HAVE_X11

View File

@ -16,6 +16,8 @@
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_X11
#include "eglGraphicsPipe.h" #include "eglGraphicsPipe.h"
#include "graphicsBuffer.h" #include "graphicsBuffer.h"
@ -67,4 +69,6 @@ private:
static TypeHandle _type_handle; static TypeHandle _type_handle;
}; };
#endif // HAVE_X11
#endif #endif

View File

@ -33,11 +33,7 @@ eglGraphicsStateGuardian(GraphicsEngine *engine, GraphicsPipe *pipe,
{ {
_share_context=0; _share_context=0;
_context=0; _context=0;
_display=0;
_egl_display=0; _egl_display=0;
_screen=0;
_visual=0;
_visuals=0;
_fbconfig=0; _fbconfig=0;
if (share_with != nullptr) { if (share_with != nullptr) {
@ -51,9 +47,6 @@ eglGraphicsStateGuardian(GraphicsEngine *engine, GraphicsPipe *pipe,
*/ */
eglGraphicsStateGuardian:: eglGraphicsStateGuardian::
~eglGraphicsStateGuardian() { ~eglGraphicsStateGuardian() {
if (_visuals != nullptr) {
XFree(_visuals);
}
if (_context != (EGLContext)nullptr) { if (_context != (EGLContext)nullptr) {
if (!eglDestroyContext(_egl_display, _context)) { if (!eglDestroyContext(_egl_display, _context)) {
egldisplay_cat.error() << "Failed to destroy EGL context: " egldisplay_cat.error() << "Failed to destroy EGL context: "
@ -108,11 +101,6 @@ get_properties(FrameBufferProperties &properties,
slow = true; slow = true;
} }
if ((surface_type & EGL_WINDOW_BIT)==0) {
// We insist on having a context that will support an onscreen window.
return;
}
properties.set_back_buffers(1); properties.set_back_buffers(1);
properties.set_rgb_color(1); properties.set_rgb_color(1);
properties.set_rgba_bits(red_size, green_size, blue_size, alpha_size); properties.set_rgba_bits(red_size, green_size, blue_size, alpha_size);
@ -131,16 +119,12 @@ get_properties(FrameBufferProperties &properties,
*/ */
void eglGraphicsStateGuardian:: void eglGraphicsStateGuardian::
choose_pixel_format(const FrameBufferProperties &properties, choose_pixel_format(const FrameBufferProperties &properties,
X11_Display *display, eglGraphicsPipe *egl_pipe, bool need_window,
int screen, bool need_pbuffer, bool need_pixmap) { bool need_pbuffer, bool need_pixmap) {
_display = display; _egl_display = egl_pipe->get_egl_display();
_egl_display = eglGetDisplay((NativeDisplayType) display);
_screen = screen;
_context = 0; _context = 0;
_fbconfig = 0; _fbconfig = 0;
_visual = 0;
_visuals = 0;
_fbprops.clear(); _fbprops.clear();
int attrib_list[] = { int attrib_list[] = {
@ -150,7 +134,7 @@ choose_pixel_format(const FrameBufferProperties &properties,
#ifdef OPENGLES_2 #ifdef OPENGLES_2
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
#endif #endif
EGL_SURFACE_TYPE, EGL_DONT_CARE, EGL_SURFACE_TYPE, need_window ? EGL_WINDOW_BIT : EGL_DONT_CARE,
EGL_NONE EGL_NONE
}; };
@ -206,9 +190,15 @@ choose_pixel_format(const FrameBufferProperties &properties,
best_props = fbprops; best_props = fbprops;
} }
} }
int depth = DefaultDepth(_display, _screen); #ifdef HAVE_X11
_visual = new XVisualInfo; X11_Display *display = egl_pipe->get_display();
XMatchVisualInfo(_display, _screen, depth, TrueColor, _visual); if (display) {
int screen = egl_pipe->get_screen();
int depth = DefaultDepth(display, screen);
_visual = new XVisualInfo;
XMatchVisualInfo(display, screen, depth, TrueColor, _visual);
}
#endif
if (best_quality > 0) { if (best_quality > 0) {
egldisplay_cat.debug() egldisplay_cat.debug()
@ -222,7 +212,10 @@ choose_pixel_format(const FrameBufferProperties &properties,
#endif #endif
int err = eglGetError(); int err = eglGetError();
if (_context && err == EGL_SUCCESS) { if (_context && err == EGL_SUCCESS) {
if (_visual) { #ifdef HAVE_X11
if (!display || _visual)
#endif
{
_fbprops = best_props; _fbprops = best_props;
delete[] configs; delete[] configs;
return; return;
@ -234,8 +227,9 @@ choose_pixel_format(const FrameBufferProperties &properties,
<< get_egl_error_string(err) << "\n"; << get_egl_error_string(err) << "\n";
_fbconfig = 0; _fbconfig = 0;
_context = 0; _context = 0;
#ifdef HAVE_X11
_visual = 0; _visual = 0;
_visuals = 0; #endif
} }
egldisplay_cat.error() << egldisplay_cat.error() <<
@ -255,12 +249,7 @@ reset() {
GLESGraphicsStateGuardian::reset(); GLESGraphicsStateGuardian::reset();
#endif #endif
// If "Mesa" is present, assume software. However, if "Mesa DRI" is found, if (_gl_renderer == "Software Rasterizer") {
// it's actually a Mesa-based OpenGL layer running over a hardware driver.
if (_gl_renderer == "Software Rasterizer" ||
(_gl_renderer.find("Mesa") != std::string::npos &&
_gl_renderer.find("Mesa DRI") == std::string::npos)) {
// It's Mesa, therefore probably a software context.
_fbprops.set_force_software(1); _fbprops.set_force_software(1);
_fbprops.set_force_hardware(0); _fbprops.set_force_hardware(0);
} else { } else {
@ -289,8 +278,10 @@ egl_is_at_least_version(int major_version, int minor_version) const {
*/ */
void eglGraphicsStateGuardian:: void eglGraphicsStateGuardian::
gl_flush() const { gl_flush() const {
#ifdef HAVE_X11
// This call requires synchronization with X. // This call requires synchronization with X.
LightReMutexHolder holder(eglGraphicsPipe::_x_mutex); LightReMutexHolder holder(eglGraphicsPipe::_x_mutex);
#endif
#ifdef OPENGLES_2 #ifdef OPENGLES_2
GLES2GraphicsStateGuardian::gl_flush(); GLES2GraphicsStateGuardian::gl_flush();
#else #else
@ -303,8 +294,10 @@ gl_flush() const {
*/ */
GLenum eglGraphicsStateGuardian:: GLenum eglGraphicsStateGuardian::
gl_get_error() const { gl_get_error() const {
#ifdef HAVE_X11
// This call requires synchronization with X. // This call requires synchronization with X.
LightReMutexHolder holder(eglGraphicsPipe::_x_mutex); LightReMutexHolder holder(eglGraphicsPipe::_x_mutex);
#endif
#ifdef OPENGLES_2 #ifdef OPENGLES_2
return GLES2GraphicsStateGuardian::gl_get_error(); return GLES2GraphicsStateGuardian::gl_get_error();
#else #else

View File

@ -16,7 +16,10 @@
#include "pandabase.h" #include "pandabase.h"
#include "eglGraphicsPipe.h" #include "eglGraphicsPipe.h"
#ifdef HAVE_X11
#include "get_x11.h" #include "get_x11.h"
#endif
/** /**
* A tiny specialization on GLESGraphicsStateGuardian to add some egl-specific * A tiny specialization on GLESGraphicsStateGuardian to add some egl-specific
@ -33,9 +36,8 @@ public:
bool &pbuffer_supported, bool &pixmap_supported, bool &pbuffer_supported, bool &pixmap_supported,
bool &slow, EGLConfig config); bool &slow, EGLConfig config);
void choose_pixel_format(const FrameBufferProperties &properties, void choose_pixel_format(const FrameBufferProperties &properties,
X11_Display *_display, eglGraphicsPipe *egl_pipe, bool need_window,
int _screen, bool need_pbuffer, bool need_pixmap);
bool need_pbuffer, bool need_pixmap);
eglGraphicsStateGuardian(GraphicsEngine *engine, GraphicsPipe *pipe, eglGraphicsStateGuardian(GraphicsEngine *engine, GraphicsPipe *pipe,
eglGraphicsStateGuardian *share_with); eglGraphicsStateGuardian *share_with);
@ -49,10 +51,9 @@ public:
EGLContext _share_context; EGLContext _share_context;
EGLContext _context; EGLContext _context;
EGLDisplay _egl_display; EGLDisplay _egl_display;
X11_Display *_display; #ifdef HAVE_X11
int _screen; XVisualInfo *_visual = nullptr;
XVisualInfo *_visual; #endif
XVisualInfo *_visuals;
EGLConfig _fbconfig; EGLConfig _fbconfig;
FrameBufferProperties _fbprops; FrameBufferProperties _fbprops;

View File

@ -12,6 +12,9 @@
*/ */
#include "eglGraphicsWindow.h" #include "eglGraphicsWindow.h"
#ifdef HAVE_X11
#include "eglGraphicsStateGuardian.h" #include "eglGraphicsStateGuardian.h"
#include "config_egldisplay.h" #include "config_egldisplay.h"
#include "eglGraphicsPipe.h" #include "eglGraphicsPipe.h"
@ -44,7 +47,7 @@ eglGraphicsWindow(GraphicsEngine *engine, GraphicsPipe *pipe,
{ {
eglGraphicsPipe *egl_pipe; eglGraphicsPipe *egl_pipe;
DCAST_INTO_V(egl_pipe, _pipe); DCAST_INTO_V(egl_pipe, _pipe);
_egl_display = egl_pipe->_egl_display; _egl_display = egl_pipe->get_egl_display();
_egl_surface = 0; _egl_surface = 0;
} }
@ -206,7 +209,7 @@ open_window() {
if (_gsg == 0) { if (_gsg == 0) {
// There is no old gsg. Create a new one. // There is no old gsg. Create a new one.
eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, nullptr); eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, nullptr);
eglgsg->choose_pixel_format(_fb_properties, egl_pipe->get_display(), egl_pipe->get_screen(), false, false); eglgsg->choose_pixel_format(_fb_properties, egl_pipe, true, false, false);
_gsg = eglgsg; _gsg = eglgsg;
} else { } else {
// If the old gsg has the wrong pixel format, create a new one that shares // If the old gsg has the wrong pixel format, create a new one that shares
@ -214,7 +217,7 @@ open_window() {
DCAST_INTO_R(eglgsg, _gsg, false); DCAST_INTO_R(eglgsg, _gsg, false);
if (!eglgsg->get_fb_properties().subsumes(_fb_properties)) { if (!eglgsg->get_fb_properties().subsumes(_fb_properties)) {
eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, eglgsg); eglgsg = new eglGraphicsStateGuardian(_engine, _pipe, eglgsg);
eglgsg->choose_pixel_format(_fb_properties, egl_pipe->get_display(), egl_pipe->get_screen(), false, false); eglgsg->choose_pixel_format(_fb_properties, egl_pipe, true, false, false);
_gsg = eglgsg; _gsg = eglgsg;
} }
} }
@ -258,3 +261,5 @@ open_window() {
return true; return true;
} }
#endif // HAVE_X11

View File

@ -16,6 +16,8 @@
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_X11
#include "eglGraphicsPipe.h" #include "eglGraphicsPipe.h"
#include "x11GraphicsWindow.h" #include "x11GraphicsWindow.h"
@ -65,4 +67,6 @@ private:
#include "eglGraphicsWindow.I" #include "eglGraphicsWindow.I"
#endif // HAVE_X11
#endif #endif