[RK3128-LINUX] 关于 OpenGL ES2 实现画图相关问题


问题描述

在SDK中并没有找到有关OpenGL ES2 实现画图或者刷图的Demo程序,那么该功能如何实现呢?


解决方案:

标准api说明可以参考khronos定义:https://registry.khronos.org/

相关书籍:《OpenGL超级宝典》、《openGL编程指南》

demo源码可以到github上检索看看。在SDK工程中,下面的路径下有一个简单demo,可供参考。 {SDK_PATH}/buildroot/output/rockchip_{rk3326_64}/build/weston-3.0.0/clients/simple-egl.c
如下为simple-egl.c代码:

/** Copyright © 2011 Benjamin Franzke** Permission is hereby granted, free of charge, to any person obtaining a* copy of this software and associated documentation files (the "Software"),* to deal in the Software without restriction, including without limitation* the rights to use, copy, modify, merge, publish, distribute, sublicense,* and/or sell copies of the Software, and to permit persons to whom the* Software is furnished to do so, subject to the following conditions:** The above copyright notice and this permission notice (including the next* paragraph) shall be included in all copies or substantial portions of the* Software.** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER* DEALINGS IN THE SOFTWARE.*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
#include <assert.h>
#include <signal.h>
#include <linux/input.h>
#include <wayland-client.h>
#include <wayland-egl.h>
#include <wayland-cursor.h>
#include <GLES2/gl2.h>
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include "xdg-shell-unstable-v6-client-protocol.h"
#include <sys/types.h>
#include <unistd.h>
#include "ivi-application-client-protocol.h"
#define IVI_SURFACE_ID 9000
#include "shared/helpers.h"
#include "shared/platform.h"
#include "weston-egl-ext.h"
struct window;
struct seat;
struct display {struct wl_display *display;struct wl_registry *registry;struct wl_compositor *compositor;struct zxdg_shell_v6 *shell;struct wl_seat *seat;struct wl_pointer *pointer;struct wl_touch *touch;struct wl_keyboard *keyboard;struct wl_shm *shm;struct wl_cursor_theme *cursor_theme;struct wl_cursor *default_cursor;struct wl_surface *cursor_surface;struct {EGLDisplay dpy;EGLContext ctx;EGLConfig conf;} egl;struct window *window;struct ivi_application *ivi_application;PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC swap_buffers_with_damage;
};
struct geometry {int width, height;
};
struct window {struct display *display;struct geometry geometry, window_size;struct {GLuint rotation_uniform;GLuint pos;GLuint col;} gl;uint32_t benchmark_time, frames;struct wl_egl_window *native;struct wl_surface *surface;struct zxdg_surface_v6 *xdg_surface;struct zxdg_toplevel_v6 *xdg_toplevel;struct ivi_surface *ivi_surface;EGLSurface egl_surface;struct wl_callback *callback;int fullscreen, opaque, buffer_size, frame_sync, delay;bool wait_for_configure;
};
static const char *vert_shader_text ="uniform mat4 rotation;\n""attribute vec4 pos;\n""attribute vec4 color;\n""varying vec4 v_color;\n""void main() {\n""  gl_Position = rotation * pos;\n""  v_color = color;\n""}\n";
static const char *frag_shader_text ="precision mediump float;\n""varying vec4 v_color;\n""void main() {\n""  gl_FragColor = v_color;\n""}\n";
static int running = 1;
static void
init_egl(struct display *display, struct window *window)
{static const struct {char *extension, *entrypoint;} swap_damage_ext_to_entrypoint[] = {{.extension = "EGL_EXT_swap_buffers_with_damage",.entrypoint = "eglSwapBuffersWithDamageEXT",},{.extension = "EGL_KHR_swap_buffers_with_damage",.entrypoint = "eglSwapBuffersWithDamageKHR",},};static const EGLint context_attribs[] = {EGL_CONTEXT_CLIENT_VERSION, 2,EGL_NONE};const char *extensions;EGLint config_attribs[] = {EGL_SURFACE_TYPE, EGL_WINDOW_BIT,EGL_RED_SIZE, 1,EGL_GREEN_SIZE, 1,EGL_BLUE_SIZE, 1,EGL_ALPHA_SIZE, 1,EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,EGL_NONE};EGLint major, minor, n, count, i, size;EGLConfig *configs;EGLBoolean ret;if (window->opaque || window->buffer_size == 16)config_attribs[9] = 0;display->egl.dpy =weston_platform_get_egl_display(EGL_PLATFORM_WAYLAND_KHR,display->display, NULL);assert(display->egl.dpy);ret = eglInitialize(display->egl.dpy, &major, &minor);assert(ret == EGL_TRUE);ret = eglBindAPI(EGL_OPENGL_ES_API);assert(ret == EGL_TRUE);if (!eglGetConfigs(display->egl.dpy, NULL, 0, &count) || count < 1)assert(0);configs = calloc(count, sizeof *configs);assert(configs);ret = eglChooseConfig(display->egl.dpy, config_attribs,configs, count, &n);assert(ret && n >= 1);for (i = 0; i < n; i++) {eglGetConfigAttrib(display->egl.dpy,configs[i], EGL_BUFFER_SIZE, &size);if (window->buffer_size == size) {display->egl.conf = configs[i];break;}}free(configs);if (display->egl.conf == NULL) {fprintf(stderr, "did not find config with buffer size %d\n",window->buffer_size);exit(EXIT_FAILURE);}display->egl.ctx = eglCreateContext(display->egl.dpy,display->egl.conf,EGL_NO_CONTEXT, context_attribs);assert(display->egl.ctx);display->swap_buffers_with_damage = NULL;extensions = eglQueryString(display->egl.dpy, EGL_EXTENSIONS);if (extensions &&weston_check_egl_extension(extensions, "EGL_EXT_buffer_age")) {for (i = 0; i < (int) ARRAY_LENGTH(swap_damage_ext_to_entrypoint); i++) {if (weston_check_egl_extension(extensions,swap_damage_ext_to_entrypoint[i].extension)) {/* The EXTPROC is identical to the KHR one */display->swap_buffers_with_damage =(PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC)eglGetProcAddress(swap_damage_ext_to_entrypoint[i].entrypoint);break;}}}if (display->swap_buffers_with_damage)printf("has EGL_EXT_buffer_age and %s\n", swap_damage_ext_to_entrypoint[i].extension);
}
static void
fini_egl(struct display *display)
{eglTerminate(display->egl.dpy);eglReleaseThread();
}
static GLuint
create_shader(struct window *window, const char *source, GLenum shader_type)
{GLuint shader;GLint status;shader = glCreateShader(shader_type);assert(shader != 0);glShaderSource(shader, 1, (const char **) &source, NULL);glCompileShader(shader);glGetShaderiv(shader, GL_COMPILE_STATUS, &status);if (!status) {char log[1000];GLsizei len;glGetShaderInfoLog(shader, 1000, &len, log);fprintf(stderr, "Error: compiling %s: %*s\n",shader_type == GL_VERTEX_SHADER ? "vertex" : "fragment",len, log);exit(1);}return shader;
}
static void
init_gl(struct window *window)
{GLuint frag, vert;GLuint program;GLint status;frag = create_shader(window, frag_shader_text, GL_FRAGMENT_SHADER);vert = create_shader(window, vert_shader_text, GL_VERTEX_SHADER);program = glCreateProgram();glAttachShader(program, frag);glAttachShader(program, vert);glLinkProgram(program);glGetProgramiv(program, GL_LINK_STATUS, &status);if (!status) {char log[1000];GLsizei len;glGetProgramInfoLog(program, 1000, &len, log);fprintf(stderr, "Error: linking:\n%*s\n", len, log);exit(1);}glUseProgram(program);window->gl.pos = 0;window->gl.col = 1;glBindAttribLocation(program, window->gl.pos, "pos");glBindAttribLocation(program, window->gl.col, "color");glLinkProgram(program);window->gl.rotation_uniform =glGetUniformLocation(program, "rotation");
}
static void
handle_surface_configure(void *data, struct zxdg_surface_v6 *surface,uint32_t serial)
{struct window *window = data;zxdg_surface_v6_ack_configure(surface, serial);window->wait_for_configure = false;
}
static const struct zxdg_surface_v6_listener xdg_surface_listener = {handle_surface_configure
};
static void
handle_toplevel_configure(void *data, struct zxdg_toplevel_v6 *toplevel,int32_t width, int32_t height,struct wl_array *states)
{struct window *window = data;uint32_t *p;window->fullscreen = 0;wl_array_for_each(p, states) {uint32_t state = *p;switch (state) {case ZXDG_TOPLEVEL_V6_STATE_FULLSCREEN:window->fullscreen = 1;break;}}if (width > 0 && height > 0) {if (!window->fullscreen) {window->window_size.width = width;window->window_size.height = height;}window->geometry.width = width;window->geometry.height = height;} else if (!window->fullscreen) {window->geometry = window->window_size;}if (window->native)wl_egl_window_resize(window->native,window->geometry.width,window->geometry.height, 0, 0);
}
static void
handle_toplevel_close(void *data, struct zxdg_toplevel_v6 *xdg_toplevel)
{running = 0;
}
static const struct zxdg_toplevel_v6_listener xdg_toplevel_listener = {handle_toplevel_configure,handle_toplevel_close,
};
static void
handle_ivi_surface_configure(void *data, struct ivi_surface *ivi_surface,int32_t width, int32_t height)
{struct window *window = data;wl_egl_window_resize(window->native, width, height, 0, 0);window->geometry.width = width;window->geometry.height = height;if (!window->fullscreen)window->window_size = window->geometry;
}
static const struct ivi_surface_listener ivi_surface_listener = {handle_ivi_surface_configure,
};
static void
create_xdg_surface(struct window *window, struct display *display)
{window->xdg_surface = zxdg_shell_v6_get_xdg_surface(display->shell,window->surface);zxdg_surface_v6_add_listener(window->xdg_surface,&xdg_surface_listener, window);window->xdg_toplevel =zxdg_surface_v6_get_toplevel(window->xdg_surface);zxdg_toplevel_v6_add_listener(window->xdg_toplevel,&xdg_toplevel_listener, window);zxdg_toplevel_v6_set_title(window->xdg_toplevel, "simple-egl");window->wait_for_configure = true;wl_surface_commit(window->surface);
}
static void
create_ivi_surface(struct window *window, struct display *display)
{uint32_t id_ivisurf = IVI_SURFACE_ID + (uint32_t)getpid();window->ivi_surface =ivi_application_surface_create(display->ivi_application,id_ivisurf, window->surface);if (window->ivi_surface == NULL) {fprintf(stderr, "Failed to create ivi_client_surface\n");abort();}ivi_surface_add_listener(window->ivi_surface,&ivi_surface_listener, window);
}
static void
create_surface(struct window *window)
{struct display *display = window->display;EGLBoolean ret;window->surface = wl_compositor_create_surface(display->compositor);window->native =wl_egl_window_create(window->surface,window->geometry.width,window->geometry.height);window->egl_surface =weston_platform_create_egl_surface(display->egl.dpy,display->egl.conf,window->native, NULL);if (display->shell) {create_xdg_surface(window, display);} else if (display->ivi_application ) {create_ivi_surface(window, display);} else {assert(0);}ret = eglMakeCurrent(window->display->egl.dpy, window->egl_surface,window->egl_surface, window->display->egl.ctx);assert(ret == EGL_TRUE);if (!window->frame_sync)eglSwapInterval(display->egl.dpy, 0);if (!display->shell)return;if (window->fullscreen)zxdg_toplevel_v6_set_fullscreen(window->xdg_toplevel, NULL);
}
static void
destroy_surface(struct window *window)
{/* Required, otherwise segfault in egl_dri2.c: dri2_make_current()* on eglReleaseThread(). */eglMakeCurrent(window->display->egl.dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,EGL_NO_CONTEXT);weston_platform_destroy_egl_surface(window->display->egl.dpy,window->egl_surface);wl_egl_window_destroy(window->native);if (window->xdg_toplevel)zxdg_toplevel_v6_destroy(window->xdg_toplevel);if (window->xdg_surface)zxdg_surface_v6_destroy(window->xdg_surface);if (window->display->ivi_application)ivi_surface_destroy(window->ivi_surface);wl_surface_destroy(window->surface);if (window->callback)wl_callback_destroy(window->callback);
}
static void
redraw(void *data, struct wl_callback *callback, uint32_t time)
{struct window *window = data;struct display *display = window->display;static const GLfloat verts[3][2] = {{ -0.5, -0.5 },{  0.5, -0.5 },{  0,    0.5 }};static const GLfloat colors[3][3] = {{ 1, 0, 0 },{ 0, 1, 0 },{ 0, 0, 1 }};GLfloat angle;GLfloat rotation[4][4] = {{ 1, 0, 0, 0 },{ 0, 1, 0, 0 },{ 0, 0, 1, 0 },{ 0, 0, 0, 1 }};static const uint32_t speed_div = 5, benchmark_interval = 5;struct wl_region *region;EGLint rect[4];EGLint buffer_age = 0;struct timeval tv;assert(window->callback == callback);window->callback = NULL;if (callback)wl_callback_destroy(callback);gettimeofday(&tv, NULL);time = tv.tv_sec * 1000 + tv.tv_usec / 1000;if (window->frames == 0)window->benchmark_time = time;if (time - window->benchmark_time > (benchmark_interval * 1000)) {printf("%d frames in %d seconds: %f fps\n",window->frames,benchmark_interval,(float) window->frames / benchmark_interval);window->benchmark_time = time;window->frames = 0;}angle = (time / speed_div) % 360 * M_PI / 180.0;rotation[0][0] =  cos(angle);rotation[0][2] =  sin(angle);rotation[2][0] = -sin(angle);rotation[2][2] =  cos(angle);if (display->swap_buffers_with_damage)eglQuerySurface(display->egl.dpy, window->egl_surface,EGL_BUFFER_AGE_EXT, &buffer_age);glViewport(0, 0, window->geometry.width, window->geometry.height);glUniformMatrix4fv(window->gl.rotation_uniform, 1, GL_FALSE,(GLfloat *) rotation);glClearColor(0.0, 0.0, 0.0, 0.5);glClear(GL_COLOR_BUFFER_BIT);glVertexAttribPointer(window->gl.pos, 2, GL_FLOAT, GL_FALSE, 0, verts);glVertexAttribPointer(window->gl.col, 3, GL_FLOAT, GL_FALSE, 0, colors);glEnableVertexAttribArray(window->gl.pos);glEnableVertexAttribArray(window->gl.col);glDrawArrays(GL_TRIANGLES, 0, 3);glDisableVertexAttribArray(window->gl.pos);glDisableVertexAttribArray(window->gl.col);usleep(window->delay);if (window->opaque || window->fullscreen) {region = wl_compositor_create_region(window->display->compositor);wl_region_add(region, 0, 0,window->geometry.width,window->geometry.height);wl_surface_set_opaque_region(window->surface, region);wl_region_destroy(region);} else {wl_surface_set_opaque_region(window->surface, NULL);}if (display->swap_buffers_with_damage && buffer_age > 0) {rect[0] = window->geometry.width / 4 - 1;rect[1] = window->geometry.height / 4 - 1;rect[2] = window->geometry.width / 2 + 2;rect[3] = window->geometry.height / 2 + 2;display->swap_buffers_with_damage(display->egl.dpy,window->egl_surface,rect, 1);} else {eglSwapBuffers(display->egl.dpy, window->egl_surface);}window->frames++;
}
static void
pointer_handle_enter(void *data, struct wl_pointer *pointer,uint32_t serial, struct wl_surface *surface,wl_fixed_t sx, wl_fixed_t sy)
{struct display *display = data;struct wl_buffer *buffer;struct wl_cursor *cursor = display->default_cursor;struct wl_cursor_image *image;if (display->window->fullscreen)wl_pointer_set_cursor(pointer, serial, NULL, 0, 0);else if (cursor) {image = display->default_cursor->images[0];buffer = wl_cursor_image_get_buffer(image);if (!buffer)return;wl_pointer_set_cursor(pointer, serial,display->cursor_surface,image->hotspot_x,image->hotspot_y);wl_surface_attach(display->cursor_surface, buffer, 0, 0);wl_surface_damage(display->cursor_surface, 0, 0,image->width, image->height);wl_surface_commit(display->cursor_surface);}
}
static void
pointer_handle_leave(void *data, struct wl_pointer *pointer,uint32_t serial, struct wl_surface *surface)
{
}
static void
pointer_handle_motion(void *data, struct wl_pointer *pointer,uint32_t time, wl_fixed_t sx, wl_fixed_t sy)
{
}
static void
pointer_handle_button(void *data, struct wl_pointer *wl_pointer,uint32_t serial, uint32_t time, uint32_t button,uint32_t state)
{struct display *display = data;if (!display->window->xdg_toplevel)return;if (button == BTN_LEFT && state == WL_POINTER_BUTTON_STATE_PRESSED)zxdg_toplevel_v6_move(display->window->xdg_toplevel,display->seat, serial);
}
static void
pointer_handle_axis(void *data, struct wl_pointer *wl_pointer,uint32_t time, uint32_t axis, wl_fixed_t value)
{
}
static const struct wl_pointer_listener pointer_listener = {pointer_handle_enter,pointer_handle_leave,pointer_handle_motion,pointer_handle_button,pointer_handle_axis,
};
static void
touch_handle_down(void *data, struct wl_touch *wl_touch,uint32_t serial, uint32_t time, struct wl_surface *surface,int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
{struct display *d = (struct display *)data;if (!d->shell)return;zxdg_toplevel_v6_move(d->window->xdg_toplevel, d->seat, serial);
}
static void
touch_handle_up(void *data, struct wl_touch *wl_touch,uint32_t serial, uint32_t time, int32_t id)
{
}
static void
touch_handle_motion(void *data, struct wl_touch *wl_touch,uint32_t time, int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
{
}
static void
touch_handle_frame(void *data, struct wl_touch *wl_touch)
{
}
static void
touch_handle_cancel(void *data, struct wl_touch *wl_touch)
{
}
static const struct wl_touch_listener touch_listener = {touch_handle_down,touch_handle_up,touch_handle_motion,touch_handle_frame,touch_handle_cancel,
};
static void
keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,uint32_t format, int fd, uint32_t size)
{
}
static void
keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,uint32_t serial, struct wl_surface *surface,struct wl_array *keys)
{
}
static void
keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,uint32_t serial, struct wl_surface *surface)
{
}
static void
keyboard_handle_key(void *data, struct wl_keyboard *keyboard,uint32_t serial, uint32_t time, uint32_t key,uint32_t state)
{struct display *d = data;if (!d->shell)return;if (key == KEY_F11 && state) {if (d->window->fullscreen)zxdg_toplevel_v6_unset_fullscreen(d->window->xdg_toplevel);elsezxdg_toplevel_v6_set_fullscreen(d->window->xdg_toplevel,NULL);} else if (key == KEY_ESC && state)running = 0;
}
static void
keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,uint32_t serial, uint32_t mods_depressed,uint32_t mods_latched, uint32_t mods_locked,uint32_t group)
{
}
static const struct wl_keyboard_listener keyboard_listener = {keyboard_handle_keymap,keyboard_handle_enter,keyboard_handle_leave,keyboard_handle_key,keyboard_handle_modifiers,
};
static void
seat_handle_capabilities(void *data, struct wl_seat *seat,enum wl_seat_capability caps)
{struct display *d = data;if ((caps & WL_SEAT_CAPABILITY_POINTER) && !d->pointer) {d->pointer = wl_seat_get_pointer(seat);wl_pointer_add_listener(d->pointer, &pointer_listener, d);} else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && d->pointer) {wl_pointer_destroy(d->pointer);d->pointer = NULL;}if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !d->keyboard) {d->keyboard = wl_seat_get_keyboard(seat);wl_keyboard_add_listener(d->keyboard, &keyboard_listener, d);} else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && d->keyboard) {wl_keyboard_destroy(d->keyboard);d->keyboard = NULL;}if ((caps & WL_SEAT_CAPABILITY_TOUCH) && !d->touch) {d->touch = wl_seat_get_touch(seat);wl_touch_set_user_data(d->touch, d);wl_touch_add_listener(d->touch, &touch_listener, d);} else if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && d->touch) {wl_touch_destroy(d->touch);d->touch = NULL;}
}
static const struct wl_seat_listener seat_listener = {seat_handle_capabilities,
};
static void
xdg_shell_ping(void *data, struct zxdg_shell_v6 *shell, uint32_t serial)
{zxdg_shell_v6_pong(shell, serial);
}
static const struct zxdg_shell_v6_listener xdg_shell_listener = {xdg_shell_ping,
};
static void
registry_handle_global(void *data, struct wl_registry *registry,uint32_t name, const char *interface, uint32_t version)
{struct display *d = data;if (strcmp(interface, "wl_compositor") == 0) {d->compositor =wl_registry_bind(registry, name,&wl_compositor_interface,MIN(version, 4));} else if (strcmp(interface, "zxdg_shell_v6") == 0) {d->shell = wl_registry_bind(registry, name,&zxdg_shell_v6_interface, 1);zxdg_shell_v6_add_listener(d->shell, &xdg_shell_listener, d);} else if (strcmp(interface, "wl_seat") == 0) {d->seat = wl_registry_bind(registry, name,&wl_seat_interface, 1);wl_seat_add_listener(d->seat, &seat_listener, d);} else if (strcmp(interface, "wl_shm") == 0) {d->shm = wl_registry_bind(registry, name,&wl_shm_interface, 1);d->cursor_theme = wl_cursor_theme_load(NULL, 32, d->shm);if (!d->cursor_theme) {fprintf(stderr, "unable to load default theme\n");return;}d->default_cursor =wl_cursor_theme_get_cursor(d->cursor_theme, "left_ptr");if (!d->default_cursor) {fprintf(stderr, "unable to load default left pointer\n");// TODO: abort ?}} else if (strcmp(interface, "ivi_application") == 0) {d->ivi_application =wl_registry_bind(registry, name,&ivi_application_interface, 1);}
}
static void
registry_handle_global_remove(void *data, struct wl_registry *registry,uint32_t name)
{
}
static const struct wl_registry_listener registry_listener = {registry_handle_global,registry_handle_global_remove
};
static void
signal_int(int signum)
{running = 0;
}
static void
usage(int error_code)
{fprintf(stderr, "Usage: simple-egl [OPTIONS]\n\n""  -d <us>\tBuffer swap delay in microseconds\n""  -f\tRun in fullscreen mode\n""  -o\tCreate an opaque surface\n""  -s\tUse a 16 bpp EGL config\n""  -b\tDon't sync to compositor redraw (eglSwapInterval 0)\n""  -h\tThis help text\n\n");exit(error_code);
}
int
main(int argc, char **argv)
{struct sigaction sigint;struct display display = { 0 };struct window  window  = { 0 };int i, ret = 0;window.display = &display;display.window = &window;window.geometry.width  = 250;window.geometry.height = 250;window.window_size = window.geometry;window.buffer_size = 32;window.frame_sync = 1;window.delay = 0;for (i = 1; i < argc; i++) {if (strcmp("-d", argv[i]) == 0 && i+1 < argc)window.delay = atoi(argv[++i]);else if (strcmp("-f", argv[i]) == 0)window.fullscreen = 1;else if (strcmp("-o", argv[i]) == 0)window.opaque = 1;else if (strcmp("-s", argv[i]) == 0)window.buffer_size = 16;else if (strcmp("-b", argv[i]) == 0)window.frame_sync = 0;else if (strcmp("-h", argv[i]) == 0)usage(EXIT_SUCCESS);elseusage(EXIT_FAILURE);}display.display = wl_display_connect(NULL);assert(display.display);display.registry = wl_display_get_registry(display.display);wl_registry_add_listener(display.registry,&registry_listener, &display);wl_display_roundtrip(display.display);init_egl(&display, &window);create_surface(&window);init_gl(&window);display.cursor_surface =wl_compositor_create_surface(display.compositor);sigint.sa_handler = signal_int;sigemptyset(&sigint.sa_mask);sigint.sa_flags = SA_RESETHAND;sigaction(SIGINT, &sigint, NULL);/* The mainloop here is a little subtle.  Redrawing will cause* EGL to read events so we can just call* wl_display_dispatch_pending() to handle any events that got* queued up as a side effect. */while (running && ret != -1) {if (window.wait_for_configure) {wl_display_dispatch(display.display);} else {wl_display_dispatch_pending(display.display);redraw(&window, NULL, 0);}}fprintf(stderr, "simple-egl exiting\n");destroy_surface(&window);fini_egl(&display);wl_surface_destroy(display.cursor_surface);if (display.cursor_theme)wl_cursor_theme_destroy(display.cursor_theme);if (display.shell)zxdg_shell_v6_destroy(display.shell);if (display.ivi_application)ivi_application_destroy(display.ivi_application);if (display.compositor)wl_compositor_destroy(display.compositor);wl_registry_destroy(display.registry);wl_display_flush(display.display);wl_display_disconnect(display.display);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/791063.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

增强函数(Augmentation Function)

增强函数&#xff08;Augmentation Function&#xff09;通常用于扩充数据集&#xff0c;通过应用一系列的随机变换来生成新的数据样本。这在机器学习和深度学习中特别有用&#xff0c;因为增加数据的多样性可以帮助模型更好地泛化。下面是一个简单的增强函数的例子&#xff0c…

FFmpeg获取视频详情

话不多说&#xff0c;直接上代码&#xff1a; pom依赖&#xff1a; <!--视频多媒体工具包 包含 FFmpeg、OpenCV--><dependency><groupId>org.bytedeco</groupId><artifactId>javacv-platform</artifactId><version>1.5.3</versi…

linux清理缓存垃圾命令和方法介绍

在Linux系统中&#xff0c;清理缓存和垃圾文件可以通过多种方法完成&#xff0c;这些方法旨在释放磁盘空间、提高系统性能。以下是一些常用的方法&#xff0c;结合了搜索结果中的信息&#xff1a; 1. 使用sync和echo命令清除RAM缓存和交换空间1 清除页面缓存&#xff08;Page …

【c++基础】数池塘(四方向)

说明 农夫约翰的农场可以表示成N*M&#xff08;1≤N、M≤100&#xff09;个方格组成的矩形。由于近日的降雨&#xff0c;在约翰农场上的不同地方形成了池塘。每一个方格或者有积水&#xff08;W&#xff09;或者没有积水&#xff08;.&#xff09;。农夫约翰打算数出他的农场上…

深入理解 Linux 内核链表:C 链表的实用性和优势

深入理解 Linux 内核链表&#xff1a;C 链表的实用性和优势 在 Linux 内核的设计和实现中&#xff0c;链表是一种非常关键的数据结构&#xff0c;尤其是因为它在处理动态数据集合时的高效性和灵活性。本文将深入探讨链表在 Linux 内核中的作用以及内核开发者如何利用 C 语言中…

css 属性值initial、unset、revert

1.initial CSS 关键字 initial 将属性的初始&#xff08;或默认&#xff09;值应用于元素。不应将初始值与浏览器样式表指定的值混淆。它可以应用于任何 CSS 属性。这包括 CSS 简写 all&#xff0c;initial 可用于将所有 CSS 属性恢复到其初始状态。 2.unset CSS 关键字 uns…

【css】使用display:inline-block后,元素间存在4px的间隔

问题&#xff1a;在本地项目中使用【display: inline-block】&#xff0c;元素间存在4px间隔。打包后发布到外网又不存在这个问题了。 归根结底这是一个西文排版的问题&#xff0c;英文有空格作为词分界&#xff0c;而中文则没有。 此时的元素具有文本属性&#xff0c;只要标签…

基于深度学习的肿瘤图像检测系统(网页版+YOLOv8/v7/v6/v5代码+训练数据集)

摘要&#xff1a;在本博客中&#xff0c;我们深入探讨了基于YOLOv8/v7/v6/v5的肿瘤图像检测系统。核心上&#xff0c;我们采用了最新的YOLOv8技术&#xff0c;并将其与YOLOv7、YOLOv6、YOLOv5算法进行了综合整合和性能指标对比分析。我们详细阐述了当前国内外在此领域的研究现状…

python实现UDP服务器

import socket # 创建UDP socket udp_server_socket socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # 绑定地址和端口 server_address (localhost, 12000) udp_server_socket.bind(server_address) # 服务器循环 while True: # 接收客户端消息 message, c…

Python机器学习实验 Python 数据分析

1.实验目的 掌握常见数据预处理方法&#xff0c;熟练运用数据分析方法&#xff0c;并掌握 Python 中的 Numpy、 Pandas 模块提供的数据分析方法。 2.实验内容 1. Pandas 基本数据处理 使用 Pandas 模块&#xff0c;完成以下操作。 &#xff08;1&#xff09;创建一个由 0 到 50…

Ai音乐大师演示(支持H5、小程序)独立部署源码

Ai音乐大师演示&#xff08;支持H5、小程序&#xff09;独立部署源码

使用IntelliJ IDEA配置版本管理(SVN和Git)

一&#xff1a;SVN版本管理 步骤一&#xff1a;安装SVN插件 打开IntelliJ IDEA&#xff0c;点击顶部菜单栏的 "File" -> "Settings"。在弹出的窗口中&#xff0c;选择 "Plugins"。在搜索框中输入 "SVN"&#xff0c;找到 "Su…

如何在Python中处理JSON数据?

如何在Python中处理JSON数据&#xff1f; 在Python中处理JSON数据是一个常见的任务&#xff0c;因为JSON&#xff08;JavaScript Object Notation&#xff09;是一种轻量级的数据交换格式&#xff0c;它易于人阅读和编写&#xff0c;同时也易于机器解析和生成。Python的内置库…

政安晨:【Keras机器学习实践要点】(十五)—— KerasTuner 简述

目录 导言 调整模型结构 定义搜索空间 开始搜索 查询结果 重新训练模型 调整模型训练 调整数据预处理 重新训练模型 指定调整目标 以内置指标为目标 以自定义指标为目标 调整端到端工作流程 将 Keras 代码分开 政安晨的个人主页&#xff1a;政安晨 欢迎 &#x1…

Web框架开发-Django-model进阶

一、QuerySet 可切片 使用python的切片语法来限制查询集记录的数目,它等同于SQL的limit和offset子句。 1 2 In [2]: Book.objects.all()[:5] # (LIMIT 5) In [2]: Book.objects.all()[5:10]     # (OFFSET 5 LIMIT 5) 不支持负的索引(例…

漫谈结构体

注意&#xff1a; 1.结构体是自定义数据类型&#xff0c;定义之后使用就跟使用库自带的int这些数据类型一样的。 2.定义结构体类型不会分配内存空间&#xff0c;定义变量才会。 1.匿名结构体&#xff08;声明时创建变量&#xff0c;不然没啥用&#xff09; 匿名结构体是没有定…

React 入门

一、官网地址 英文官网: https://reactjs.org/中文官网: https://react.docschina.org/ 二、React 特点 声明式编码组件化编码React Native 编写原生应用高效&#xff08;优秀的 Diffing 算法&#xff09;高效的原因&#xff1a;1.使用虚拟DOM&#xff0c;不总是直接操作页面…

vultr ubuntu 服务器远程桌面安装及连接

一. 概述 vultr 上开启一个linux服务器&#xff0c;都是以终端形式给出的&#xff0c;默认不带 ui 桌面的&#xff0c;那其实对于想使用服务器上浏览器时的情形不是很好。那有没有方法在远程服务器安装桌面&#xff0c;然后原程使用呢&#xff1f;至少ubuntu的服务器是有的&am…

搜索--找出克隆二叉树中的相同节点

题目描述 给你两棵二叉树&#xff0c;原始树 original 和克隆树 cloned&#xff0c;以及一个位于原始树 original 中的目标节点 target。 其中&#xff0c;克隆树 cloned 是原始树 original 的一个 副本 。 请找出在树 cloned 中&#xff0c;与 target 相同 的节点&#xff…

AGI时代,LLM可以在AutoML哪些环节进行增强?

当下大模型技术发展如火如荼&#xff0c;颇有改变各行业和各领域的架势。那么对于AutoML来讲&#xff0c;LLM对其有哪些助力&#xff1f;对于这个问题&#xff0c;我们来问一问kimi chat&#xff0c;看看它怎么回答&#xff1f; 大型语言模型&#xff08;LLM&#xff09;可以在…