| 
									
										
										
										
											2018-03-24 18:30:28 -04:00
										 |  |  | #include <assert.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | #include <stdbool.h>
 | 
					
						
							| 
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | #include <wlr/render/interface.h>
 | 
					
						
							| 
									
										
										
										
											2021-04-09 10:48:01 +08:00
										 |  |  | #include <wlr/render/pixman.h>
 | 
					
						
							| 
									
										
										
										
											2018-03-19 23:16:29 +01:00
										 |  |  | #include <wlr/render/wlr_renderer.h>
 | 
					
						
							| 
									
										
										
										
											2018-03-15 19:31:02 +01:00
										 |  |  | #include <wlr/types/wlr_matrix.h>
 | 
					
						
							| 
									
										
										
										
											2018-04-20 23:58:30 +01:00
										 |  |  | #include <wlr/util/log.h>
 | 
					
						
							| 
									
										
										
										
											2021-04-09 10:48:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <wlr/config.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if WLR_HAS_GLES2_RENDERER
 | 
					
						
							|  |  |  | #include <wlr/render/egl.h>
 | 
					
						
							|  |  |  | #include <wlr/render/gles2.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-26 00:11:36 +01:00
										 |  |  | #include "util/signal.h"
 | 
					
						
							| 
									
										
										
										
											2021-03-15 12:35:47 -04:00
										 |  |  | #include "render/pixel_format.h"
 | 
					
						
							| 
									
										
										
										
											2020-07-28 16:56:18 +02:00
										 |  |  | #include "render/wlr_renderer.h"
 | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 08:37:50 -04:00
										 |  |  | void wlr_renderer_init(struct wlr_renderer *renderer, | 
					
						
							| 
									
										
										
										
											2018-03-20 19:14:33 +01:00
										 |  |  | 		const struct wlr_renderer_impl *impl) { | 
					
						
							| 
									
										
										
										
											2018-03-24 18:30:28 -04:00
										 |  |  | 	assert(impl->begin); | 
					
						
							|  |  |  | 	assert(impl->clear); | 
					
						
							|  |  |  | 	assert(impl->scissor); | 
					
						
							| 
									
										
										
										
											2020-04-27 12:27:01 +02:00
										 |  |  | 	assert(impl->render_subtexture_with_matrix); | 
					
						
							| 
									
										
										
										
											2018-03-26 19:13:13 -04:00
										 |  |  | 	assert(impl->render_quad_with_matrix); | 
					
						
							| 
									
										
										
										
											2020-11-18 14:57:53 +01:00
										 |  |  | 	assert(impl->get_shm_texture_formats); | 
					
						
							| 
									
										
										
										
											2018-03-24 18:30:28 -04:00
										 |  |  | 	assert(impl->texture_from_pixels); | 
					
						
							| 
									
										
										
										
											2021-04-23 13:51:05 -04:00
										 |  |  | 	assert(impl->get_render_buffer_caps); | 
					
						
							| 
									
										
										
										
											2017-08-14 08:37:50 -04:00
										 |  |  | 	renderer->impl = impl; | 
					
						
							| 
									
										
										
										
											2018-04-26 00:11:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wl_signal_init(&renderer->events.destroy); | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void wlr_renderer_destroy(struct wlr_renderer *r) { | 
					
						
							| 
									
										
										
										
											2018-06-30 11:04:17 +09:00
										 |  |  | 	if (!r) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-26 00:11:36 +01:00
										 |  |  | 	wlr_signal_emit_safe(&r->events.destroy, r); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-30 11:04:17 +09:00
										 |  |  | 	if (r->impl && r->impl->destroy) { | 
					
						
							| 
									
										
										
										
											2017-08-14 08:37:50 -04:00
										 |  |  | 		r->impl->destroy(r); | 
					
						
							| 
									
										
										
										
											2017-08-14 16:16:20 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		free(r); | 
					
						
							| 
									
										
										
										
											2017-08-14 08:37:50 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-28 16:56:18 +02:00
										 |  |  | bool wlr_renderer_bind_buffer(struct wlr_renderer *r, | 
					
						
							|  |  |  | 		struct wlr_buffer *buffer) { | 
					
						
							|  |  |  | 	assert(!r->rendering); | 
					
						
							|  |  |  | 	if (!r->impl->bind_buffer) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return r->impl->bind_buffer(r, buffer); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-11 16:06:26 +02:00
										 |  |  | void wlr_renderer_begin(struct wlr_renderer *r, uint32_t width, uint32_t height) { | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 	assert(!r->rendering); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-20 23:10:42 +01:00
										 |  |  | 	r->impl->begin(r, width, height); | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	r->rendering = true; | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void wlr_renderer_end(struct wlr_renderer *r) { | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 	assert(r->rendering); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-24 18:30:28 -04:00
										 |  |  | 	if (r->impl->end) { | 
					
						
							|  |  |  | 		r->impl->end(r); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	r->rendering = false; | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-15 11:10:56 +01:00
										 |  |  | void wlr_renderer_clear(struct wlr_renderer *r, const float color[static 4]) { | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 	assert(r->rendering); | 
					
						
							| 
									
										
										
										
											2018-02-03 09:32:02 +01:00
										 |  |  | 	r->impl->clear(r, color); | 
					
						
							| 
									
										
										
										
											2018-01-22 16:42:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void wlr_renderer_scissor(struct wlr_renderer *r, struct wlr_box *box) { | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 	assert(r->rendering); | 
					
						
							| 
									
										
										
										
											2018-01-22 16:42:22 +01:00
										 |  |  | 	r->impl->scissor(r, box); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-15 19:31:02 +01:00
										 |  |  | bool wlr_render_texture(struct wlr_renderer *r, struct wlr_texture *texture, | 
					
						
							|  |  |  | 		const float projection[static 9], int x, int y, float alpha) { | 
					
						
							| 
									
										
										
										
											2020-12-25 12:21:29 +01:00
										 |  |  | 	struct wlr_box box = { | 
					
						
							|  |  |  | 		.x = x, | 
					
						
							|  |  |  | 		.y = y, | 
					
						
							|  |  |  | 		.width = texture->width, | 
					
						
							|  |  |  | 		.height = texture->height, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2018-03-24 18:30:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-26 12:41:51 -04:00
										 |  |  | 	float matrix[9]; | 
					
						
							|  |  |  | 	wlr_matrix_project_box(matrix, &box, WL_OUTPUT_TRANSFORM_NORMAL, 0, | 
					
						
							|  |  |  | 		projection); | 
					
						
							| 
									
										
										
										
											2018-03-15 19:31:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-26 12:41:51 -04:00
										 |  |  | 	return wlr_render_texture_with_matrix(r, texture, matrix, alpha); | 
					
						
							| 
									
										
										
										
											2018-03-15 19:31:02 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-15 15:33:58 +01:00
										 |  |  | bool wlr_render_texture_with_matrix(struct wlr_renderer *r, | 
					
						
							|  |  |  | 		struct wlr_texture *texture, const float matrix[static 9], | 
					
						
							| 
									
										
										
										
											2018-03-15 11:10:56 +01:00
										 |  |  | 		float alpha) { | 
					
						
							| 
									
										
										
										
											2020-04-27 12:27:01 +02:00
										 |  |  | 	struct wlr_fbox box = { | 
					
						
							|  |  |  | 		.x = 0, | 
					
						
							|  |  |  | 		.y = 0, | 
					
						
							|  |  |  | 		.width = texture->width, | 
					
						
							|  |  |  | 		.height = texture->height, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	return wlr_render_subtexture_with_matrix(r, texture, &box, matrix, alpha); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool wlr_render_subtexture_with_matrix(struct wlr_renderer *r, | 
					
						
							|  |  |  | 		struct wlr_texture *texture, const struct wlr_fbox *box, | 
					
						
							|  |  |  | 		const float matrix[static 9], float alpha) { | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 	assert(r->rendering); | 
					
						
							| 
									
										
										
										
											2020-04-27 12:27:01 +02:00
										 |  |  | 	return r->impl->render_subtexture_with_matrix(r, texture, | 
					
						
							|  |  |  | 		box, matrix, alpha); | 
					
						
							| 
									
										
										
										
											2017-06-08 15:52:42 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-06-15 15:31:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-26 12:41:51 -04:00
										 |  |  | void wlr_render_rect(struct wlr_renderer *r, const struct wlr_box *box, | 
					
						
							|  |  |  | 		const float color[static 4], const float projection[static 9]) { | 
					
						
							| 
									
										
										
										
											2020-08-27 15:40:15 +02:00
										 |  |  | 	if (box->width == 0 || box->height == 0) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-16 07:21:36 +02:00
										 |  |  | 	assert(box->width > 0 && box->height > 0); | 
					
						
							| 
									
										
										
										
											2018-03-26 12:41:51 -04:00
										 |  |  | 	float matrix[9]; | 
					
						
							|  |  |  | 	wlr_matrix_project_box(matrix, box, WL_OUTPUT_TRANSFORM_NORMAL, 0, | 
					
						
							|  |  |  | 		projection); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_render_quad_with_matrix(r, color, matrix); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void wlr_render_quad_with_matrix(struct wlr_renderer *r, | 
					
						
							| 
									
										
										
										
											2018-03-15 15:33:58 +01:00
										 |  |  | 		const float color[static 4], const float matrix[static 9]) { | 
					
						
							| 
									
										
										
										
											2019-12-28 11:53:11 +01:00
										 |  |  | 	assert(r->rendering); | 
					
						
							| 
									
										
										
										
											2018-03-26 12:41:51 -04:00
										 |  |  | 	r->impl->render_quad_with_matrix(r, color, matrix); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-16 19:20:00 +01:00
										 |  |  | const uint32_t *wlr_renderer_get_shm_texture_formats(struct wlr_renderer *r, | 
					
						
							|  |  |  | 		size_t *len) { | 
					
						
							| 
									
										
										
										
											2020-11-18 14:57:53 +01:00
										 |  |  | 	return r->impl->get_shm_texture_formats(r, len); | 
					
						
							| 
									
										
										
										
											2017-06-22 16:32:47 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-08-10 22:15:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-24 18:30:28 -04:00
										 |  |  | bool wlr_renderer_resource_is_wl_drm_buffer(struct wlr_renderer *r, | 
					
						
							|  |  |  | 		struct wl_resource *resource) { | 
					
						
							|  |  |  | 	if (!r->impl->resource_is_wl_drm_buffer) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return r->impl->resource_is_wl_drm_buffer(r, resource); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void wlr_renderer_wl_drm_buffer_get_size(struct wlr_renderer *r, | 
					
						
							|  |  |  | 		struct wl_resource *buffer, int *width, int *height) { | 
					
						
							|  |  |  | 	if (!r->impl->wl_drm_buffer_get_size) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return r->impl->wl_drm_buffer_get_size(r, buffer, width, height); | 
					
						
							| 
									
										
										
										
											2017-08-10 22:15:37 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-08 02:11:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 14:53:13 +01:00
										 |  |  | const struct wlr_drm_format_set *wlr_renderer_get_dmabuf_texture_formats( | 
					
						
							| 
									
										
										
										
											2019-04-01 19:17:23 +03:00
										 |  |  | 		struct wlr_renderer *r) { | 
					
						
							| 
									
										
										
										
											2020-11-18 14:53:13 +01:00
										 |  |  | 	if (!r->impl->get_dmabuf_texture_formats) { | 
					
						
							| 
									
										
										
										
											2019-04-01 19:17:23 +03:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2018-04-08 11:00:56 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-11-18 14:53:13 +01:00
										 |  |  | 	return r->impl->get_dmabuf_texture_formats(r); | 
					
						
							| 
									
										
										
										
											2018-04-08 11:00:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-15 10:22:06 -04:00
										 |  |  | const struct wlr_drm_format_set *wlr_renderer_get_render_formats( | 
					
						
							| 
									
										
										
										
											2020-11-18 14:16:22 +01:00
										 |  |  | 		struct wlr_renderer *r) { | 
					
						
							| 
									
										
										
										
											2021-04-15 10:22:06 -04:00
										 |  |  | 	if (!r->impl->get_render_formats) { | 
					
						
							| 
									
										
										
										
											2020-11-18 14:16:22 +01:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-04-15 10:22:06 -04:00
										 |  |  | 	return r->impl->get_render_formats(r); | 
					
						
							| 
									
										
										
										
											2020-11-18 14:16:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-23 13:51:05 -04:00
										 |  |  | uint32_t renderer_get_render_buffer_caps(struct wlr_renderer *r) { | 
					
						
							|  |  |  | 	return r->impl->get_render_buffer_caps(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-16 19:34:02 +01:00
										 |  |  | bool wlr_renderer_read_pixels(struct wlr_renderer *r, uint32_t fmt, | 
					
						
							| 
									
										
										
										
											2018-06-23 14:02:43 +01:00
										 |  |  | 		uint32_t *flags, uint32_t stride, uint32_t width, uint32_t height, | 
					
						
							| 
									
										
										
										
											2018-01-23 22:06:54 +01:00
										 |  |  | 		uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y, | 
					
						
							|  |  |  | 		void *data) { | 
					
						
							| 
									
										
										
										
											2018-03-24 18:30:28 -04:00
										 |  |  | 	if (!r->impl->read_pixels) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-23 14:02:43 +01:00
										 |  |  | 	return r->impl->read_pixels(r, fmt, flags, stride, width, height, | 
					
						
							|  |  |  | 		src_x, src_y, dst_x, dst_y, data); | 
					
						
							| 
									
										
										
										
											2018-01-23 22:06:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 14:32:27 +01:00
										 |  |  | bool wlr_renderer_init_wl_display(struct wlr_renderer *r, | 
					
						
							| 
									
										
										
										
											2018-05-21 19:07:08 +01:00
										 |  |  | 		struct wl_display *wl_display) { | 
					
						
							|  |  |  | 	if (wl_display_init_shm(wl_display)) { | 
					
						
							| 
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 |  |  | 		wlr_log(WLR_ERROR, "Failed to initialize shm"); | 
					
						
							| 
									
										
										
										
											2020-03-23 14:32:27 +01:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2018-04-20 23:58:30 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	size_t len; | 
					
						
							| 
									
										
										
										
											2021-02-16 19:20:00 +01:00
										 |  |  | 	const uint32_t *formats = wlr_renderer_get_shm_texture_formats(r, &len); | 
					
						
							| 
									
										
										
										
											2018-04-20 23:58:30 +01:00
										 |  |  | 	if (formats == NULL) { | 
					
						
							| 
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 |  |  | 		wlr_log(WLR_ERROR, "Failed to initialize shm: cannot get formats"); | 
					
						
							| 
									
										
										
										
											2020-03-23 14:32:27 +01:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2018-04-20 23:58:30 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 15:01:13 +01:00
										 |  |  | 	bool argb8888 = false, xrgb8888 = false; | 
					
						
							| 
									
										
										
										
											2018-04-20 23:58:30 +01:00
										 |  |  | 	for (size_t i = 0; i < len; ++i) { | 
					
						
							| 
									
										
										
										
											2020-11-18 15:01:13 +01:00
										 |  |  | 		// ARGB8888 and XRGB8888 must be supported and are implicitly
 | 
					
						
							|  |  |  | 		// advertised by wl_display_init_shm
 | 
					
						
							| 
									
										
										
										
											2021-02-16 19:20:00 +01:00
										 |  |  | 		enum wl_shm_format fmt = convert_drm_format_to_wl_shm(formats[i]); | 
					
						
							|  |  |  | 		switch (fmt) { | 
					
						
							| 
									
										
										
										
											2020-11-18 15:01:13 +01:00
										 |  |  | 		case WL_SHM_FORMAT_ARGB8888: | 
					
						
							|  |  |  | 			argb8888 = true; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case WL_SHM_FORMAT_XRGB8888: | 
					
						
							|  |  |  | 			xrgb8888 = true; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2021-02-16 19:20:00 +01:00
										 |  |  | 			wl_display_add_shm_format(wl_display, fmt); | 
					
						
							| 
									
										
										
										
											2018-04-21 14:31:52 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-20 23:58:30 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-11-18 15:01:13 +01:00
										 |  |  | 	assert(argb8888 && xrgb8888); | 
					
						
							| 
									
										
										
										
											2018-05-21 19:07:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (r->impl->init_wl_display) { | 
					
						
							| 
									
										
										
										
											2020-03-23 14:32:27 +01:00
										 |  |  | 		if (!r->impl->init_wl_display(r, wl_display)) { | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-21 19:07:08 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-23 14:32:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2018-04-20 23:58:30 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-05-25 13:14:35 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-29 09:46:34 +02:00
										 |  |  | struct wlr_renderer *renderer_autocreate_with_drm_fd(int drm_fd) { | 
					
						
							| 
									
										
										
										
											2021-04-20 14:48:52 -04:00
										 |  |  | 	const char *name = getenv("WLR_RENDERER"); | 
					
						
							|  |  |  | 	if (name) { | 
					
						
							| 
									
										
										
										
											2021-04-28 21:06:41 +02:00
										 |  |  | 		wlr_log(WLR_INFO, "Loading user-specified renderer due to WLR_RENDERER: %s", | 
					
						
							|  |  |  | 			name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-09 10:48:01 +08:00
										 |  |  | #if WLR_HAS_GLES2_RENDERER
 | 
					
						
							| 
									
										
										
										
											2021-04-20 14:48:52 -04:00
										 |  |  | 		if (strcmp(name, "gles2") == 0) { | 
					
						
							| 
									
										
										
										
											2021-04-21 08:23:06 +02:00
										 |  |  | 			if (drm_fd < 0) { | 
					
						
							|  |  |  | 				wlr_log(WLR_ERROR, "Cannot create GLES2 renderer: " | 
					
						
							|  |  |  | 					"no DRM FD available"); | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-04-20 14:48:52 -04:00
										 |  |  | 			return wlr_gles2_renderer_create_with_drm_fd(drm_fd); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 		if (strcmp(name, "pixman") == 0) { | 
					
						
							|  |  |  | 			return wlr_pixman_renderer_create(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-01-20 21:20:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 14:48:52 -04:00
										 |  |  | 		wlr_log(WLR_ERROR, "Invalid WLR_RENDERER value: '%s'", name); | 
					
						
							| 
									
										
										
										
											2018-05-25 13:14:35 +03:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 14:48:52 -04:00
										 |  |  | 	struct wlr_renderer *renderer = NULL; | 
					
						
							|  |  |  | #if WLR_HAS_GLES2_RENDERER
 | 
					
						
							| 
									
										
										
										
											2021-04-21 08:23:06 +02:00
										 |  |  | 	if (drm_fd >= 0) { | 
					
						
							|  |  |  | 		if ((renderer = wlr_gles2_renderer_create_with_drm_fd(drm_fd)) != NULL) { | 
					
						
							|  |  |  | 			return renderer; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "Failed to create GLES2 renderer"); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "Skipping GLES2 renderer: no DRM FD available"); | 
					
						
							| 
									
										
										
										
											2018-05-25 13:14:35 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-04-09 10:48:01 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 14:48:52 -04:00
										 |  |  | 	if ((renderer = wlr_pixman_renderer_create()) != NULL) { | 
					
						
							|  |  |  | 		return renderer; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	wlr_log(WLR_DEBUG, "Failed to create pixman renderer"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_log(WLR_ERROR, "Could not initialize renderer"); | 
					
						
							| 
									
										
										
										
											2021-04-09 10:48:01 +08:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2018-05-25 13:14:35 +03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-06-10 14:47:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-16 22:26:44 +01:00
										 |  |  | struct wlr_renderer *wlr_renderer_autocreate(struct wlr_backend *backend) { | 
					
						
							| 
									
										
										
										
											2021-04-21 08:23:06 +02:00
										 |  |  | 	// Note, drm_fd may be negative if unavailable
 | 
					
						
							| 
									
										
										
										
											2021-04-12 10:39:51 +02:00
										 |  |  | 	int drm_fd = wlr_backend_get_drm_fd(backend); | 
					
						
							| 
									
										
										
										
											2021-04-29 09:46:34 +02:00
										 |  |  | 	return renderer_autocreate_with_drm_fd(drm_fd); | 
					
						
							| 
									
										
										
										
											2021-01-16 22:26:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-10 14:47:12 +02:00
										 |  |  | int wlr_renderer_get_drm_fd(struct wlr_renderer *r) { | 
					
						
							|  |  |  | 	if (!r->impl->get_drm_fd) { | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return r->impl->get_drm_fd(r); | 
					
						
							|  |  |  | } |