1
0
Fork 0
forked from wry/wry

wl_drm: hide global if invalid modifier is not supported

This commit is contained in:
Julian Orth 2025-04-05 17:55:53 +02:00
parent f2139f0835
commit 8a83d844e9
3 changed files with 16 additions and 0 deletions

View file

@ -347,4 +347,8 @@ impl GfxContext for GlRenderContext {
) -> Result<Rc<dyn GfxBlendBuffer>, GfxError> {
Err(GfxError(Box::new(RenderError::NoBlendBuffer)))
}
fn supports_invalid_modifier(&self) -> bool {
true
}
}