1

私はできる限りグーグルで検索しましたが、何も見つかりませんでした。

私がやりたいこと:

  • X11(Xlib)でウィンドウを作成し、表示します
  • OpenGLES2.0を使用してウィンドウを色で塗りつぶします

ArchLinuxでのOpenGLES2.0のサポートには、MESAを使用します。Xlibを使用して単純なXウィンドウを作成する方法を知っています。EGLとOpenGLESの基本的な知識はありますが、それらすべて(X11 + EGL + OpenGL ES 2.0)を組み合わせて使用​​する方法を理解できません。

誰かがXウィンドウを準備してOpenGLES2.0に正しく接続し、レンダリングを開始する方法について、少なくとも短いコード例を書いたら、私は非常に感謝します。

4

2 に答える 2

4

ウィンドウの作成:

Window root;
XSetWindowAttributes swa;
XSetWindowAttributes  xattr;
Atom wm_state;
XWMHints hints;
XEvent xev;
EGLConfig ecfg;
EGLint num_config;
Window win;

/*
 * X11 native display initialization
 */

x_display = XOpenDisplay(NULL);
if ( x_display == NULL )
{
    return EGL_FALSE;
}

root = DefaultRootWindow(x_display);

swa.event_mask  =  ExposureMask | PointerMotionMask | KeyPressMask;
win = XCreateWindow(
           x_display, root,
           0, 0, esContext->width, esContext->height, 0,
           CopyFromParent, InputOutput,
           CopyFromParent, CWEventMask,
           &swa );

xattr.override_redirect = FALSE;
XChangeWindowAttributes ( x_display, win, CWOverrideRedirect, &xattr );

hints.input = TRUE;
hints.flags = InputHint;
XSetWMHints(x_display, win, &hints);

// make the window visible on the screen
XMapWindow (x_display, win);
XStoreName (x_display, win, title);

// get identifiers for the provided atom name strings
wm_state = XInternAtom (x_display, "_NET_WM_STATE", FALSE);

memset ( &xev, 0, sizeof(xev) );
xev.type                 = ClientMessage;
xev.xclient.window       = win;
xev.xclient.message_type = wm_state;
xev.xclient.format       = 32;
xev.xclient.data.l[0]    = 1;
xev.xclient.data.l[1]    = FALSE;
XSendEvent (
   x_display,
   DefaultRootWindow ( x_display ),
   FALSE,
   SubstructureNotifyMask,
   &xev );

セットカラー:

   glClearColor ( 0.0f, 0.0f, 0.0f, 0.0f );
   // Set the viewport
   glViewport ( 0, 0, esContext->width, esContext->height );

   // Clear the color buffer
   glClear ( GL_COLOR_BUFFER_BIT );

出典:

于 2012-02-08T16:35:47.150 に答える
2

opengles-book-sa​​mplesコードは実際には失敗します。同じinitの失敗が見られる場合は、を呼び出すとeglBindAPI(EGL_OPENGL_ES_API)修正されたようです。

于 2013-07-29T18:44:57.930 に答える