<html>
<head>
<base href="https://bugs.freedesktop.org/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - EGL_KHR_gl_colorspace (v2) causes problem with Android-x86 GUI"
href="https://bugs.freedesktop.org/show_bug.cgi?id=91596#c12">Comment # 12</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - EGL_KHR_gl_colorspace (v2) causes problem with Android-x86 GUI"
href="https://bugs.freedesktop.org/show_bug.cgi?id=91596">bug 91596</a>
from <span class="vcard"><a class="email" href="mailto:imirkin@alum.mit.edu" title="Ilia Mirkin <imirkin@alum.mit.edu>"> <span class="fn">Ilia Mirkin</span></a>
</span></b>
<pre>Looking over that patch, I noticed this hunk:
memcpy(&conf->base, &base, sizeof base);
if (double_buffer) {
- conf->dri_double_config = dri_config;
- conf->dri_single_config = NULL;
+ if (srgb)
+ conf->dri_srgb_double_config = dri_config;
+ else
+ conf->dri_double_config = dri_config;
} else {
- conf->dri_single_config = dri_config;
- conf->dri_double_config = NULL;
+ if (srgb)
+ conf->dri_srgb_single_config = dri_config;
+ else
+ conf->dri_single_config = dri_config;
}
Previously the "other" configs would get cleared out whereas they aren't
anymore.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the QA Contact for the bug.</li>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>