GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_xcb.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2009-2019 Cyril Hrubis <metan@ucw.cz>
4 */
5
11#ifndef BACKENDS_GP_XCB_H
12#define BACKENDS_GP_XCB_H
13
14#include <backends/gp_backend.h>
15
30gp_backend *gp_xcb_init(const char *display, int x, int y,
31 unsigned int w, unsigned int h,
32 const char *caption);
33
34#endif /* BACKENDS_GP_XCB_H */
An abstraction for display, keyboard and mouse.
gp_backend * gp_xcb_init(const char *display, int x, int y, unsigned int w, unsigned int h, const char *caption)
Initalize XCB backend.
A backend.
Definition gp_backend.h:175