win32

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 5a2d1ea8f827d6d5c086888dfa4c5a1857f5d7ad
parent 7469dd3c1187b7e2ed1bd7c0ca3fdc9adfc78e99
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Sat, 20 Dec 2025 10:05:54 +0900

free resouces

Diffstat:
Mxcb.c | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/xcb.c b/xcb.c @@ -106,6 +106,17 @@ int main(void) { quit = 1; } } + xcb_render_free_picture(conn, picture32_3); + xcb_free_pixmap(conn, pixmap32_3); + xcb_render_free_picture(conn, picture32_2); + xcb_free_pixmap(conn, pixmap32_2); + xcb_render_free_picture(conn, picture32_1); + xcb_free_pixmap(conn, pixmap32_1); + xcb_free_colormap(conn, colormap32); + xcb_destroy_window(conn, window32); + + xcb_render_free_picture(conn, picture); + xcb_destroy_window(conn, window); xcb_disconnect(conn); return 0;