2

Android 用のネイティブ NDK C++ で OpenGL ES を使用して開発中の 1 つのアプリケーションに関する面白いイベントがあります。プログラムは問題なくコンパイルおよび実行されます。ただし、単体テストを実行してコードをデバッグすることにした場合、次のメッセージが表示されます。

Invalid arguments ' Candidates are: 
    void * eglCreateWindowSurface(void *, void *, unsigned long int, 
                                                         const int *) '

これは、次のコード スナップショットの最後の行に関連しています。

    EGLint lFormat, lNumConfigs, lErrorResult;
    EGLConfig lConfig;
    // Defines display requirements. 16bits mode here.
    const EGLint lAttributes[] = {
        EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
        EGL_BLUE_SIZE, 5, EGL_GREEN_SIZE, 6, EGL_RED_SIZE, 5,
        EGL_SURFACE_TYPE, EGL_WINDOW_BIT, EGL_RENDER_BUFFER, EGL_BACK_BUFFER,
        EGL_NONE
    };
    // Retrieves a display connection and initializes it.
    packt_Log_debug("Connecting to the display.");
    mDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
    if (mDisplay == EGL_NO_DISPLAY) goto ERROR;
    if (!eglInitialize(mDisplay, NULL, NULL)) goto ERROR;
    // Selects the first OpenGL configuration found.
    packt_Log_debug("Selecting a display config.");
    if(!eglChooseConfig(mDisplay, lAttributes, &lConfig, 1,
        &lNumConfigs) || (lNumConfigs <= 0)) goto ERROR;
    // Reconfigures the Android window with the EGL format.
    packt_Log_debug("Configuring window format.");
    if (!eglGetConfigAttrib(mDisplay, lConfig,
        EGL_NATIVE_VISUAL_ID, &lFormat)) goto ERROR;
    ANativeWindow_setBuffersGeometry(mApplication->window, 0, 0, lFormat);
    // Creates the display surface.
    packt_Log_debug("Initializing the display.");
    mSurface = eglCreateWindowSurface(mDisplay, lConfig, mApplication->window, NULL);

私はすでに OGLES のリファレンスを調べましたが、私が試したすべてのことはまだうまくいきませんでした。

4

1 に答える 1

3

'mApplication->window'を'EGLNativeWindowTypewindow'に置き換えると、問題が解決しました。

于 2012-04-08T12:57:46.663 に答える