drm: use IMPORT_FD for INVALID modifier
GBM_BO_IMPORT_FD_MODIFIER doesn't accept the INVALID modifier.
This commit is contained in:
parent
ebeef0fbe8
commit
5f78ea20fa
|
@ -1,4 +1,5 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <drm_fourcc.h>
|
||||||
#include <gbm.h>
|
#include <gbm.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -165,6 +166,19 @@ void post_drm_surface(struct wlr_drm_surface *surf) {
|
||||||
|
|
||||||
struct gbm_bo *import_gbm_bo(struct wlr_drm_renderer *renderer,
|
struct gbm_bo *import_gbm_bo(struct wlr_drm_renderer *renderer,
|
||||||
struct wlr_dmabuf_attributes *attribs) {
|
struct wlr_dmabuf_attributes *attribs) {
|
||||||
|
if (attribs->modifier == DRM_FORMAT_MOD_INVALID && attribs->n_planes == 1
|
||||||
|
&& attribs->offset[0] == 0) {
|
||||||
|
struct gbm_import_fd_data data = {
|
||||||
|
.fd = attribs->fd[0],
|
||||||
|
.width = attribs->width,
|
||||||
|
.height = attribs->height,
|
||||||
|
.stride = attribs->stride[0],
|
||||||
|
.format = attribs->format,
|
||||||
|
};
|
||||||
|
|
||||||
|
return gbm_bo_import(renderer->gbm, GBM_BO_IMPORT_FD,
|
||||||
|
&data, GBM_BO_USE_SCANOUT);
|
||||||
|
} else {
|
||||||
struct gbm_import_fd_modifier_data data = {
|
struct gbm_import_fd_modifier_data data = {
|
||||||
.width = attribs->width,
|
.width = attribs->width,
|
||||||
.height = attribs->height,
|
.height = attribs->height,
|
||||||
|
@ -186,6 +200,7 @@ struct gbm_bo *import_gbm_bo(struct wlr_drm_renderer *renderer,
|
||||||
return gbm_bo_import(renderer->gbm, GBM_BO_IMPORT_FD_MODIFIER,
|
return gbm_bo_import(renderer->gbm, GBM_BO_IMPORT_FD_MODIFIER,
|
||||||
&data, GBM_BO_USE_SCANOUT);
|
&data, GBM_BO_USE_SCANOUT);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool export_drm_bo(struct gbm_bo *bo, struct wlr_dmabuf_attributes *attribs) {
|
bool export_drm_bo(struct gbm_bo *bo, struct wlr_dmabuf_attributes *attribs) {
|
||||||
memset(attribs, 0, sizeof(struct wlr_dmabuf_attributes));
|
memset(attribs, 0, sizeof(struct wlr_dmabuf_attributes));
|
||||||
|
|
Loading…
Reference in New Issue