mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	gbm_bo_create_with_modifiers doesn't take GBM flags, so our wlr_gbm_allocator interface doesn't either. We were still internally using GBM flags in the DRM backend, leading to awkward back-and-forth conversions. The only flag passed to drm_plane_init_surface was GBM_BO_USE_LINEAR, so turn that into a bool to make sure other flags can't be passed in. Move the "force linear" logic out of init_drm_surface, because the supplied wlr_drm_format should already contain that information.
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef BACKEND_DRM_RENDERER_H
 | 
						|
#define BACKEND_DRM_RENDERER_H
 | 
						|
 | 
						|
#include <EGL/egl.h>
 | 
						|
#include <gbm.h>
 | 
						|
#include <stdbool.h>
 | 
						|
#include <stdint.h>
 | 
						|
#include <wlr/backend.h>
 | 
						|
#include <wlr/render/wlr_renderer.h>
 | 
						|
 | 
						|
struct wlr_drm_backend;
 | 
						|
struct wlr_drm_plane;
 | 
						|
struct wlr_buffer;
 | 
						|
 | 
						|
struct wlr_drm_renderer {
 | 
						|
	int fd;
 | 
						|
	struct gbm_device *gbm;
 | 
						|
	struct wlr_egl egl;
 | 
						|
 | 
						|
	struct wlr_renderer *wlr_rend;
 | 
						|
	struct wlr_gbm_allocator *allocator;
 | 
						|
};
 | 
						|
 | 
						|
struct wlr_drm_surface {
 | 
						|
	struct wlr_drm_renderer *renderer;
 | 
						|
 | 
						|
	uint32_t width;
 | 
						|
	uint32_t height;
 | 
						|
 | 
						|
	struct wlr_swapchain *swapchain;
 | 
						|
	struct wlr_buffer *back_buffer;
 | 
						|
};
 | 
						|
 | 
						|
struct wlr_drm_fb {
 | 
						|
	struct gbm_bo *bo;
 | 
						|
	struct wlr_buffer *wlr_buf;
 | 
						|
 | 
						|
	struct wlr_drm_surface *mgpu_surf;
 | 
						|
	struct gbm_bo *mgpu_bo;
 | 
						|
	struct wlr_buffer *mgpu_wlr_buf;
 | 
						|
};
 | 
						|
 | 
						|
bool init_drm_renderer(struct wlr_drm_backend *drm,
 | 
						|
	struct wlr_drm_renderer *renderer, wlr_renderer_create_func_t create_render);
 | 
						|
void finish_drm_renderer(struct wlr_drm_renderer *renderer);
 | 
						|
 | 
						|
bool drm_surface_make_current(struct wlr_drm_surface *surf, int *buffer_age);
 | 
						|
void drm_surface_unset_current(struct wlr_drm_surface *surf);
 | 
						|
bool export_drm_bo(struct gbm_bo *bo, struct wlr_dmabuf_attributes *attribs);
 | 
						|
 | 
						|
void drm_fb_clear(struct wlr_drm_fb *fb);
 | 
						|
bool drm_fb_lock_surface(struct wlr_drm_fb *fb, struct wlr_drm_surface *surf);
 | 
						|
bool drm_fb_import_wlr(struct wlr_drm_fb *fb, struct wlr_drm_renderer *renderer,
 | 
						|
		struct wlr_buffer *buf, struct wlr_drm_format_set *set);
 | 
						|
 | 
						|
void drm_fb_move(struct wlr_drm_fb *new, struct wlr_drm_fb *old);
 | 
						|
 | 
						|
bool drm_surface_render_black_frame(struct wlr_drm_surface *surf);
 | 
						|
struct gbm_bo *drm_fb_acquire(struct wlr_drm_fb *fb, struct wlr_drm_backend *drm,
 | 
						|
		struct wlr_drm_surface *mgpu);
 | 
						|
 | 
						|
bool drm_plane_init_surface(struct wlr_drm_plane *plane,
 | 
						|
		struct wlr_drm_backend *drm, int32_t width, uint32_t height,
 | 
						|
		uint32_t format, bool force_linear, bool with_modifiers);
 | 
						|
void drm_plane_finish_surface(struct wlr_drm_plane *plane);
 | 
						|
 | 
						|
#endif
 |