gpt4 book ai didi

android - 如何将 EGL(不是 EGAL)与 iOS(C 和 Obj-C)集成

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:29:38 25 4
gpt4 key购买 nike

我目前正在开发基于自定义标准 C 库构建的 Android 应用程序的 iOS 端口,该库使用的似乎是 EGL、GLES、GLES2、OpenGL、OpenGL ES、OpenGL ES2。不幸的是,我没有使用上述技术的经验,尤其是与 EGL 和 OpenGL 有关的技术。我了解到EGL是OpenGL ES和底层原生平台窗口系统之间的接口(interface),并且iOS已经将EGL适配到EAGL以支持Cocoa的规则。

我找到的资源主要讨论 EGL 和 android,但并没有特别提到 EGL 与 C 和 iOS 的集成,但其中很多都回到了 obj-C 和 EAGL。

  1. 如何在 iOS (obj-C) 平台上支持 C 中的 EGL? OpenGL 甚至需要 EGL 吗?
  2. 我可以从哪里/哪个来源检索 EGL 库?我读到不同的供应商提供不同的版本(不幸的是,由于未知原因,android版本有#include,但在项目文件中找不到实际的源文件)
  3. 如果 iOS 平台不支持 EGL 作为 C 级集成,我该如何调整 EAGL 以适应我的用例?

下面是我正在处理的一些示例代码,不幸的是很多 EGL 引用是未定义的,我试图在这里使用这个库(https://github.com/davidandreoletti/libegl)来填补空白,但显然有许多引用仍然未定义,例如 eglChooseConfig、eglGetDisplay、eglinitialize。

//GraphicsDisplay.h
#include <EGL/egl.h>
#include <GLES/gl.h>
#include <GLES2/gl2.h>
#include <OpenGLES/ES2/gl.h>
#include <GLES2/gl2ext.h>

...

static EGLDisplay eglDisplay
static EGLSurface eglSurface
static EGLContext eglContext
//GraphicsDisplay.c
#include "GraphicsDisplay.h"

STATUS_CODE getScreenSize(UNIT16 *width, UNIT16 *height) {
EGLint displayWidth;
EGLint displayHeight;

//check if there's a screen
if(eglDisplay == EGL_NO_DISPLAY && eglSurface == EGL_NO_SURFACE) {
return OK;
}

if(eglQuerySurface(eglDisplay, eglSurface, EGL_WIDTH, displayWidth) == EGL_FALSE) {
return FAIL;
}

*width = (UNIT16)displayWidth;

if(eglQuerySurface(eglDisplay, eglSurface, EGL_HEIGHT, displayHeight) == EGL_FALSE) {
return FAIL;
}

*height = (UNIT16)displayHeight;

return OK;
}

STATUS_CODE EGLInitialize() {
EGLint format;
EGLint numconfigs;
EGLConfig config;

EGLint attribs[] = { EGL_BLUE_SIZE, 4, EGL_GREEN_SIZE, 4, EGL_RED_SIZE, 4, EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL_NONE };
EGLint attribList[] = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE };

eglDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
eglInitialize(eglDisplay, 0, 0);

eglChooseConfig(eglDisplay, attribs, &config, 1 &numConfigs);
eglGetConfigAttrib(eglDisplay, config, EGL_NATIVE_VISUAL_ID, &format);

... etc...
}

对此的任何见解都会有所帮助。
代码示例将是最全面和最受赞赏的。

谢谢

最佳答案

我认为简短的回答是“你不能”——EAGL 是类似 EGL 功能的 iOS 版本,所以你必须移植到 iOS 上使用 EAGL。

网上有很多 iOS EAGL + OpenGL ES 教程,可以教你如何开始使用 EAGL API;它不够简单,不足以保证在这里尝试回答。

关于android - 如何将 EGL(不是 EGAL)与 iOS(C 和 Obj-C)集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38621546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com