mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Explicitly export EFL symbols
This commit is contained in:
parent
f27c0b44b8
commit
86269052eb
54 changed files with 397 additions and 2 deletions
|
|
@ -7,6 +7,7 @@
|
|||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include "util/defs.h"
|
||||
|
||||
static bool colored = true;
|
||||
static log_importance_t log_importance = L_ERROR;
|
||||
|
|
@ -48,6 +49,7 @@ void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args) {
|
|||
|
||||
static log_callback_t log_callback = wlr_log_stderr;
|
||||
|
||||
WLR_API
|
||||
void wlr_log_init(log_importance_t verbosity, log_callback_t callback) {
|
||||
if (verbosity < L_LAST) {
|
||||
log_importance = verbosity;
|
||||
|
|
@ -57,10 +59,12 @@ void wlr_log_init(log_importance_t verbosity, log_callback_t callback) {
|
|||
}
|
||||
}
|
||||
|
||||
WLR_API
|
||||
void _wlr_vlog(log_importance_t verbosity, const char *fmt, va_list args) {
|
||||
log_callback(verbosity, fmt, args);
|
||||
}
|
||||
|
||||
WLR_API
|
||||
void _wlr_log(log_importance_t verbosity, const char *fmt, ...) {
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
|
|
@ -73,6 +77,7 @@ void _wlr_log(log_importance_t verbosity, const char *fmt, ...) {
|
|||
// e.g. '/src/build/wlroots/backend/wayland/backend.c' and
|
||||
// '../backend/wayland/backend.c' will both be stripped to
|
||||
// 'backend/wayland/backend.c'
|
||||
WLR_API
|
||||
const char *_strip_path(const char *filepath) {
|
||||
static int srclen = sizeof(WLR_SRC_DIR);
|
||||
if (strstr(filepath, WLR_SRC_DIR) == filepath) {
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include "util/defs.h"
|
||||
#include "util/os-compatibility.h"
|
||||
|
||||
int os_fd_set_cloexec(int fd) {
|
||||
|
|
@ -97,6 +98,11 @@ int create_tmpfile_cloexec(char *tmpname)
|
|||
* If posix_fallocate() is not supported, program may receive
|
||||
* SIGBUS on accessing mmap()'ed file contents instead.
|
||||
*/
|
||||
/*
|
||||
* XXX: This is not part of our public headers, but one of the examples uses it.
|
||||
* We really should not export this.
|
||||
*/
|
||||
WLR_API
|
||||
int os_create_anonymous_file(off_t size) {
|
||||
static const char template[] = "/wlroots-shared-XXXXXX";
|
||||
const char *path;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
#include <wlr/util/region.h>
|
||||
#include "util/defs.h"
|
||||
|
||||
WLR_API
|
||||
void wlr_region_scale(pixman_region32_t *dst, pixman_region32_t *src,
|
||||
float scale) {
|
||||
if (scale == 1) {
|
||||
|
|
@ -29,6 +31,7 @@ void wlr_region_scale(pixman_region32_t *dst, pixman_region32_t *src,
|
|||
free(dst_rects);
|
||||
}
|
||||
|
||||
WLR_API
|
||||
void wlr_region_transform(pixman_region32_t *dst, pixman_region32_t *src,
|
||||
enum wl_output_transform transform, int width, int height) {
|
||||
if (transform == WL_OUTPUT_TRANSFORM_NORMAL) {
|
||||
|
|
@ -102,6 +105,7 @@ void wlr_region_transform(pixman_region32_t *dst, pixman_region32_t *src,
|
|||
free(dst_rects);
|
||||
}
|
||||
|
||||
WLR_API
|
||||
void wlr_region_expand(pixman_region32_t *dst, pixman_region32_t *src,
|
||||
int distance) {
|
||||
if (distance == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue