render: use DRM formats in wlr_texture_from_pixels

This commit is contained in:
Simon Ser 2021-02-16 19:41:40 +01:00
parent b54ef3372d
commit 27fba3df43
6 changed files with 10 additions and 12 deletions

View file

@ -15,7 +15,6 @@
#include <wlr/types/wlr_linux_dmabuf_v1.h>
#include <wlr/util/log.h>
#include "render/gles2.h"
#include "render/shm_format.h"
static const GLfloat verts[] = {
1, 0, // top right

View file

@ -12,7 +12,6 @@
#include <wlr/types/wlr_matrix.h>
#include <wlr/util/log.h>
#include "render/gles2.h"
#include "render/shm_format.h"
#include "util/signal.h"
static const struct wlr_texture_impl texture_impl;
@ -153,14 +152,14 @@ static const struct wlr_texture_impl texture_impl = {
};
struct wlr_texture *gles2_texture_from_pixels(struct wlr_renderer *wlr_renderer,
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width,
uint32_t drm_format, uint32_t stride, uint32_t width,
uint32_t height, const void *data) {
struct wlr_gles2_renderer *renderer = gles2_get_renderer(wlr_renderer);
const struct wlr_gles2_pixel_format *fmt =
get_gles2_format_from_drm(convert_wl_shm_format_to_drm(wl_fmt));
get_gles2_format_from_drm(drm_format);
if (fmt == NULL) {
wlr_log(WLR_ERROR, "Unsupported pixel format %"PRIu32, wl_fmt);
wlr_log(WLR_ERROR, "Unsupported pixel format 0x%"PRIX32, drm_format);
return NULL;
}

View file

@ -20,9 +20,9 @@ void wlr_texture_destroy(struct wlr_texture *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,
uint32_t fmt, uint32_t stride, uint32_t width, uint32_t height,
const void *data) {
return renderer->impl->texture_from_pixels(renderer, fmt, stride, width,
height, data);
}