mirror of
https://github.com/hyprwm/aquamarine.git
synced 2024-11-17 04:56:00 +01:00
drm/renderer: log modifier in createEGLImage
This commit is contained in:
parent
13cf43497e
commit
47d95b8a73
1 changed files with 1 additions and 1 deletions
|
@ -406,7 +406,7 @@ EGLImageKHR CDRMRenderer::createEGLImage(const SDMABUFAttrs& attrs) {
|
||||||
attribs.push_back(EGL_LINUX_DRM_FOURCC_EXT);
|
attribs.push_back(EGL_LINUX_DRM_FOURCC_EXT);
|
||||||
attribs.push_back(attrs.format);
|
attribs.push_back(attrs.format);
|
||||||
|
|
||||||
TRACE(backend->log(AQ_LOG_TRACE, std::format("EGL: createEGLImage: size {} with format {}", attrs.size, fourccToName(attrs.format))));
|
TRACE(backend->log(AQ_LOG_TRACE, std::format("EGL: createEGLImage: size {} with format {} and modifier 0x{:x}", attrs.size, fourccToName(attrs.format), attrs.modifier)));
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
EGLint fd;
|
EGLint fd;
|
||||||
|
|
Loading…
Reference in a new issue