mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 04:26:00 +01:00
28 lines
802 B
Diff
28 lines
802 B
Diff
diff --git a/types/output/render.c b/types/output/render.c
|
|
index 2e38919a..97f78608 100644
|
|
--- a/types/output/render.c
|
|
+++ b/types/output/render.c
|
|
@@ -240,22 +240,7 @@ bool output_pick_format(struct wlr_output *output,
|
|
}
|
|
|
|
uint32_t wlr_output_preferred_read_format(struct wlr_output *output) {
|
|
- struct wlr_renderer *renderer = output->renderer;
|
|
- assert(renderer != NULL);
|
|
-
|
|
- if (!renderer->impl->preferred_read_format || !renderer->impl->read_pixels) {
|
|
- return DRM_FORMAT_INVALID;
|
|
- }
|
|
-
|
|
- if (!wlr_output_attach_render(output, NULL)) {
|
|
- return false;
|
|
- }
|
|
-
|
|
- uint32_t fmt = renderer->impl->preferred_read_format(renderer);
|
|
-
|
|
- output_clear_back_buffer(output);
|
|
-
|
|
- return fmt;
|
|
+ return DRM_FORMAT_XRGB8888;
|
|
}
|
|
|
|
struct wlr_render_pass *wlr_output_begin_render_pass(struct wlr_output *output,
|