是否可以在 Raspberry Pi 上使用顶点数组对象?

Is it possible to use Vertex Array Objects on Raspberry Pi?

是否可以在 Raspberry Pi 上使用 Vertex Array Objects? 我可以加载它作为扩展吗?

根据 eginfo here:

The Raspberry Pi supports OpenGL ES 2.0 with the following extensions:

GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_texture_npot GL_OES_depth24 GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_EGL_image_external GL_EXT_discard_framebuffer GL_OES_rgb8_rgba8 GL_OES_depth32 GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_APPLE_rgb_422 GL_EXT_debug_marker

"Nominal" OpenGL ES 2.0 不支持顶点数组对象。为其提供支持的扩展是 OES_vertex_array_object,它不在此列表中。所以,不,你不能在 Raspberry Pi.

上使用它们