aboutsummaryrefslogtreecommitdiff
path: root/render/wlr_texture.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-02-19 18:10:24 -0500
committerGitHub <noreply@github.com>2018-02-19 18:10:24 -0500
commitc4fb9651445bb7302a904b05583c064ff09cb48e (patch)
tree266f8d4438350bbaa56567f5553ca441e5d4f1be /render/wlr_texture.c
parent09cfa39392bd049225b1be7590cd099131472bf2 (diff)
parent1d9be89e2d62316690ed211e50b79f2bec38e00f (diff)
Merge pull request #651 from swaywm/revert-647-elf_visibility
Revert "ELF Visibility"
Diffstat (limited to 'render/wlr_texture.c')
-rw-r--r--render/wlr_texture.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/render/wlr_texture.c b/render/wlr_texture.c
index f74ebc66..a82a16b2 100644
--- a/render/wlr_texture.c
+++ b/render/wlr_texture.c
@@ -1,16 +1,13 @@
#include <stdbool.h>
#include <stdlib.h>
#include <wlr/render/interface.h>
-#include "util/defs.h"
-WLR_API
void wlr_texture_init(struct wlr_texture *texture,
struct wlr_texture_impl *impl) {
texture->impl = impl;
wl_signal_init(&texture->destroy_signal);
}
-WLR_API
void wlr_texture_destroy(struct wlr_texture *texture) {
if (texture && texture->impl && texture->impl->destroy) {
texture->impl->destroy(texture);
@@ -19,19 +16,16 @@ void wlr_texture_destroy(struct wlr_texture *texture) {
}
}
-WLR_API
void wlr_texture_bind(struct wlr_texture *texture) {
texture->impl->bind(texture);
}
-WLR_API
bool wlr_texture_upload_pixels(struct wlr_texture *texture, uint32_t format,
int stride, int width, int height, const unsigned char *pixels) {
return texture->impl->upload_pixels(texture, format, stride,
width, height, pixels);
}
-WLR_API
bool wlr_texture_update_pixels(struct wlr_texture *texture,
enum wl_shm_format format, int stride, int x, int y,
int width, int height, const unsigned char *pixels) {
@@ -39,37 +33,31 @@ bool wlr_texture_update_pixels(struct wlr_texture *texture,
width, height, pixels);
}
-WLR_API
bool wlr_texture_upload_shm(struct wlr_texture *texture, uint32_t format,
struct wl_shm_buffer *shm) {
return texture->impl->upload_shm(texture, format, shm);
}
-WLR_API
bool wlr_texture_update_shm(struct wlr_texture *texture, uint32_t format,
int x, int y, int width, int height, struct wl_shm_buffer *shm) {
return texture->impl->update_shm(texture, format, x, y, width, height, shm);
}
-WLR_API
bool wlr_texture_upload_drm(struct wlr_texture *texture,
struct wl_resource *drm_buffer) {
return texture->impl->upload_drm(texture, drm_buffer);
}
-WLR_API
bool wlr_texture_upload_eglimage(struct wlr_texture *texture,
EGLImageKHR image, uint32_t width, uint32_t height) {
return texture->impl->upload_eglimage(texture, image, width, height);
}
-WLR_API
void wlr_texture_get_matrix(struct wlr_texture *texture,
float (*matrix)[16], const float (*projection)[16], int x, int y) {
texture->impl->get_matrix(texture, matrix, projection, x, y);
}
-WLR_API
void wlr_texture_get_buffer_size(struct wlr_texture *texture, struct wl_resource
*resource, int *width, int *height) {
texture->impl->get_buffer_size(texture, resource, width, height);