mesa: Don't optimize out glClear if drawbuffer size is 0x0 (fdo #75797)
This commit is contained in:
parent
f35b486601
commit
0411aeba5e
@ -0,0 +1,34 @@
|
|||||||
|
From 1fb986f3a722e8476af90b5ab512e495f0caf10f Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Kristian=20H=C3=B8gsberg?= <krh@bitplanet.net>
|
||||||
|
Date: Thu, 6 Mar 2014 16:58:32 -0800
|
||||||
|
Subject: [PATCH] mesa: Don't optimize out glClear() if drawbuffer size is 0x0
|
||||||
|
|
||||||
|
The driver acquires buffer lazily and may not yet have buffers for
|
||||||
|
a newly current drawable. In that case the drawable size is 0x0 but
|
||||||
|
we still need to call into the driver and make it fetch buffers and get
|
||||||
|
the drawable size.
|
||||||
|
|
||||||
|
https://bugs.freedesktop.org/show_bug.cgi?id=75797
|
||||||
|
---
|
||||||
|
src/mesa/main/clear.c | 5 -----
|
||||||
|
1 file changed, 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/mesa/main/clear.c b/src/mesa/main/clear.c
|
||||||
|
index 077c5fc..c3f7474 100644
|
||||||
|
--- a/src/mesa/main/clear.c
|
||||||
|
+++ b/src/mesa/main/clear.c
|
||||||
|
@@ -155,11 +155,6 @@ _mesa_Clear( GLbitfield mask )
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (ctx->DrawBuffer->Width == 0 || ctx->DrawBuffer->Height == 0 ||
|
||||||
|
- ctx->DrawBuffer->_Xmin >= ctx->DrawBuffer->_Xmax ||
|
||||||
|
- ctx->DrawBuffer->_Ymin >= ctx->DrawBuffer->_Ymax)
|
||||||
|
- return;
|
||||||
|
-
|
||||||
|
if (ctx->RasterDiscard)
|
||||||
|
return;
|
||||||
|
|
||||||
|
--
|
||||||
|
1.8.5.3
|
||||||
|
|
@ -51,7 +51,7 @@
|
|||||||
Summary: Mesa graphics libraries
|
Summary: Mesa graphics libraries
|
||||||
Name: mesa
|
Name: mesa
|
||||||
Version: 10.1
|
Version: 10.1
|
||||||
Release: 3.%{gitdate}%{?dist}
|
Release: 4.%{gitdate}%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
URL: http://www.mesa3d.org
|
URL: http://www.mesa3d.org
|
||||||
@ -73,6 +73,8 @@ Patch12: mesa-8.0.1-fix-16bpp.patch
|
|||||||
Patch15: mesa-9.2-hardware-float.patch
|
Patch15: mesa-9.2-hardware-float.patch
|
||||||
Patch20: mesa-9.2-evergreen-big-endian.patch
|
Patch20: mesa-9.2-evergreen-big-endian.patch
|
||||||
|
|
||||||
|
# https://bugs.freedesktop.org/show_bug.cgi?id=75797#c1
|
||||||
|
Patch21: 0001-mesa-Don-t-optimize-out-glClear-if-drawbuffer-size-i.patch
|
||||||
|
|
||||||
# https://bugs.freedesktop.org/show_bug.cgi?id=73512
|
# https://bugs.freedesktop.org/show_bug.cgi?id=73512
|
||||||
Patch99: 0001-opencl-use-versioned-.so-in-mesa.icd.patch
|
Patch99: 0001-opencl-use-versioned-.so-in-mesa.icd.patch
|
||||||
@ -328,6 +330,7 @@ grep -q ^/ src/gallium/auxiliary/vl/vl_decoder.c && exit 1
|
|||||||
|
|
||||||
%patch15 -p1 -b .hwfloat
|
%patch15 -p1 -b .hwfloat
|
||||||
%patch20 -p1 -b .egbe
|
%patch20 -p1 -b .egbe
|
||||||
|
%patch21 -p1 -b .clear
|
||||||
|
|
||||||
%if 0%{?with_opencl}
|
%if 0%{?with_opencl}
|
||||||
%patch99 -p1 -b .icd
|
%patch99 -p1 -b .icd
|
||||||
@ -635,6 +638,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Mar 21 2014 Adam Jackson <ajax@redhat.com> 10.1-4.20140305
|
||||||
|
- mesa: Don't optimize out glClear if drawbuffer size is 0x0 (fdo #75797)
|
||||||
|
|
||||||
* Wed Mar 19 2014 Dave Airlie <airlied@redhat.com> 10.1-3.20140305
|
* Wed Mar 19 2014 Dave Airlie <airlied@redhat.com> 10.1-3.20140305
|
||||||
- rebuild against backported llvm 3.4-5 for radeonsi GL 3.3 support.
|
- rebuild against backported llvm 3.4-5 for radeonsi GL 3.3 support.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user