Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/tests/hello_xr/graphicsplugin_opengl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,7 @@ struct OpenGLGraphicsPlugin : public IGraphicsPlugin {
m_graphicsBinding.glxDrawable = window.context.glxDrawable;
// m_graphicsBinding.glxContext = window.context.glxContext;
#elif defined(XR_USE_PLATFORM_WAYLAND)
// TODO: Just need something other than NULL here for now (for validation). Eventually need
// to correctly put in a valid pointer to an wl_display
m_graphicsBinding.display = reinterpret_cast<wl_display*>(0xFFFFFFFF);
m_graphicsBinding.display = window.display;
#elif defined(XR_USE_PLATFORM_MACOS)
#error OpenGL bindings for Mac have not been implemented
#else
Expand Down
Loading