簡體   English   中英

如何通過EGL創建OpenGL 3.3或4.x上下文

[英]How to create an OpenGL 3.3 or 4.x context through EGL

我有興趣制作一個不依賴於X11的OpenGL應用程序。 正如我所見,這應該可以通過EGL實現。 互聯網上甚至還有一些例子。 但是我如何控制上下文版本? 下面的示例代碼創建了一個版本為2.1的OpenGL上下文(在路上),但是在我的計算機上,它顯示支持的最高OpenGL版本是3.3(這樣的上下文可以使用glXCreateContextAttribsARB在X服務器中使用GLX和xlib創建)。 所以我的問題是:我可以通過EGL以某種方式創建一個具有更高版本的OpenGL上下文,如果是,如何?

示例代碼:

#include <wayland-client.h>
#include <wayland-egl.h>
#include <EGL/egl.h>
#include <GL/gl.h>
#include <string.h>
#include <stdio.h>

#define WIDTH 256
#define HEIGHT 256

static struct wl_display *display;
static struct wl_compositor *compositor = NULL;
static struct wl_shell *shell = NULL;
static EGLDisplay egl_display;
static char running = 1;

struct window {
    EGLContext egl_context;
    struct wl_surface *surface;
    struct wl_shell_surface *shell_surface;
    struct wl_egl_window *egl_window;
    EGLSurface egl_surface;
};

// listeners
static void registry_add_object (void *data, struct wl_registry *registry, uint32_t name, const char *interface, uint32_t version) {
    if (!strcmp(interface,"wl_compositor")) {
        compositor = wl_registry_bind (registry, name, &wl_compositor_interface, 0);
    }
    else if (!strcmp(interface,"wl_shell")) {
        shell = wl_registry_bind (registry, name, &wl_shell_interface, 0);
    }
}
static void registry_remove_object (void *data, struct wl_registry *registry, uint32_t name) {

}
static struct wl_registry_listener registry_listener = {&registry_add_object, &registry_remove_object};

static void shell_surface_ping (void *data, struct wl_shell_surface *shell_surface, uint32_t serial) {
    wl_shell_surface_pong (shell_surface, serial);
}
static void shell_surface_configure (void *data, struct wl_shell_surface *shell_surface, uint32_t edges, int32_t width, int32_t height) {
    struct window *window = data;
    wl_egl_window_resize (window->egl_window, width, height, 0, 0);
}
static void shell_surface_popup_done (void *data, struct wl_shell_surface *shell_surface) {

}
static struct wl_shell_surface_listener shell_surface_listener = {&shell_surface_ping, &shell_surface_configure, &shell_surface_popup_done};

static void create_window (struct window *window, int32_t width, int32_t height) {
    eglBindAPI (EGL_OPENGL_API);
    EGLint attributes[] = {
        EGL_RED_SIZE, 8,
        EGL_GREEN_SIZE, 8,
        EGL_BLUE_SIZE, 8,
    EGL_NONE};
    EGLConfig config;
    EGLint num_config;
    eglChooseConfig (egl_display, attributes, &config, 1, &num_config);
    window->egl_context = eglCreateContext (egl_display, config, EGL_NO_CONTEXT, NULL);

    window->surface = wl_compositor_create_surface (compositor);
    window->shell_surface = wl_shell_get_shell_surface (shell, window->surface);
    wl_shell_surface_add_listener (window->shell_surface, &shell_surface_listener, window);
    wl_shell_surface_set_toplevel (window->shell_surface);
    window->egl_window = wl_egl_window_create (window->surface, width, height);
    window->egl_surface = eglCreateWindowSurface (egl_display, config, window->egl_window, NULL);
    eglMakeCurrent (egl_display, window->egl_surface, window->egl_surface, window->egl_context);
}
static void delete_window (struct window *window) {
    eglDestroySurface (egl_display, window->egl_surface);
    wl_egl_window_destroy (window->egl_window);
    wl_shell_surface_destroy (window->shell_surface);
    wl_surface_destroy (window->surface);
    eglDestroyContext (egl_display, window->egl_context);
}
static void draw_window (struct window *window) {
    glClearColor (0.0, 1.0, 0.0, 1.0);
    glClear (GL_COLOR_BUFFER_BIT);

    printf("%s\n", glGetString(GL_VERSION));

    eglSwapBuffers (egl_display, window->egl_surface);
}

int main () {
    display = wl_display_connect (NULL);
    struct wl_registry *registry = wl_display_get_registry (display);
    wl_registry_add_listener (registry, &registry_listener, NULL);
    wl_display_dispatch (display);

    egl_display = eglGetDisplay (display);
    eglInitialize (egl_display, NULL, NULL);

    struct window window;
    create_window (&window, WIDTH, HEIGHT);

    while (running) {
        wl_display_dispatch_pending (display);
        draw_window (&window);
    }

    delete_window (&window);
    eglTerminate (egl_display);
    wl_display_disconnect (display);
    return 0;
}

資料來源: https//github.com/eyelash/tutorials

EGL最初僅針對OpenGL ES開發。 使用EGL 1.4(2008年發布)添加了對桌面OpenGL的支持。 然而,那時,“遺留”GL上下文,前向兼容上下文和OpenGL配置文件(如核心和兼容性)之間的區別尚不存在,因此EGL 1.4不包括請求任何這些內容的方法。 您唯一可以依賴的是獲得與“遺留”GL 1.x / 2.x兼容的GL上下文。 這並不意味着它也不能創建更高版本的兼容性配置文件,但是你不能依賴它,也無法控制它。

在2012年, EGL_KHR_create_context EGL擴展首次提供了請求與特定版本兼容或實現特定配置文件的GL上下文的能力,該擴展在功能上與傳統桌面GL綁定API的WGL / glX對應物非常相似。 此功能也已添加到核心EGL 1.5版

這意味着您需要一個支持EGL 1.5或1.4擴展的實現,以便能夠以受控方式可靠地創建現代OpenGL上下文,方法是指定

  • EGL_CONTEXT_MAJOR_VERSIONEGL_CONTEXT_MINOR_VERSION
  • EGL_CONTEXT_FLAGS
  • EGL_CONTEXT_OPENGL_PROFILE_MASK

_KHR ,屬性(或帶有_KHR后綴的擴展對應物,最終具有相同的值 - 后者僅在elgext.h定義,而核心版本在版本1.5的egl.h定義)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM