mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Otherwise this error happens:
    ../subprojects/wlroots/render/wlr_texture.c: In function ‘wlr_texture_get_size’:
    ../subprojects/wlroots/render/wlr_texture.c:47:9: error: ISO C forbids ‘return’ with expression, in function returning void [-Werror=pedantic]
       47 |  return texture->impl->get_size(texture, width, height);
          |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../subprojects/wlroots/render/wlr_texture.c:45:6: note: declared here
       45 | void wlr_texture_get_size(struct wlr_texture *texture, int *width,
          |      ^~~~~~~~~~~~~~~~~~~~
		
	
			
		
			
				
	
	
		
			71 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include <assert.h>
 | 
						|
#include <stdbool.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <wlr/render/interface.h>
 | 
						|
#include <wlr/render/wlr_texture.h>
 | 
						|
 | 
						|
void wlr_texture_init(struct wlr_texture *texture,
 | 
						|
		const struct wlr_texture_impl *impl) {
 | 
						|
	assert(impl->get_size);
 | 
						|
	assert(impl->write_pixels);
 | 
						|
	texture->impl = impl;
 | 
						|
}
 | 
						|
 | 
						|
void wlr_texture_destroy(struct wlr_texture *texture) {
 | 
						|
	if (texture && texture->impl && texture->impl->destroy) {
 | 
						|
		texture->impl->destroy(texture);
 | 
						|
	} else {
 | 
						|
		free(texture);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
struct wlr_texture *wlr_texture_from_pixels(struct wlr_renderer *renderer,
 | 
						|
		enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width,
 | 
						|
		uint32_t height, const void *data) {
 | 
						|
	return renderer->impl->texture_from_pixels(renderer, wl_fmt, stride, width,
 | 
						|
		height, data);
 | 
						|
}
 | 
						|
 | 
						|
struct wlr_texture *wlr_texture_from_wl_drm(struct wlr_renderer *renderer,
 | 
						|
		struct wl_resource *data) {
 | 
						|
	if (!renderer->impl->texture_from_wl_drm) {
 | 
						|
		return NULL;
 | 
						|
	}
 | 
						|
	return renderer->impl->texture_from_wl_drm(renderer, data);
 | 
						|
}
 | 
						|
 | 
						|
struct wlr_texture *wlr_texture_from_dmabuf(struct wlr_renderer *renderer,
 | 
						|
		struct wlr_dmabuf_attributes *attribs) {
 | 
						|
	if (!renderer->impl->texture_from_dmabuf) {
 | 
						|
		return NULL;
 | 
						|
	}
 | 
						|
	return renderer->impl->texture_from_dmabuf(renderer, attribs);
 | 
						|
}
 | 
						|
 | 
						|
void wlr_texture_get_size(struct wlr_texture *texture, int *width,
 | 
						|
		int *height) {
 | 
						|
	texture->impl->get_size(texture, width, height);
 | 
						|
}
 | 
						|
 | 
						|
bool wlr_texture_is_opaque(struct wlr_texture *texture) {
 | 
						|
	if (!texture->impl->is_opaque) {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
	return texture->impl->is_opaque(texture);
 | 
						|
}
 | 
						|
 | 
						|
bool wlr_texture_write_pixels(struct wlr_texture *texture,
 | 
						|
		uint32_t stride, uint32_t width, uint32_t height,
 | 
						|
		uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y,
 | 
						|
		const void *data) {
 | 
						|
	return texture->impl->write_pixels(texture, stride, width, height,
 | 
						|
		src_x, src_y, dst_x, dst_y, data);
 | 
						|
}
 | 
						|
 | 
						|
bool wlr_texture_to_dmabuf(struct wlr_texture *texture,
 | 
						|
		struct wlr_dmabuf_attributes *attribs) {
 | 
						|
	if (!texture->impl->to_dmabuf) {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
	return texture->impl->to_dmabuf(texture, attribs);
 | 
						|
}
 |