mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-02 19:40:26 +01:00
i965: fallback lineloop on sandybridge for now
Until we fixed GS hang issue.
(cherry picked from commit 73dab75b41)
This commit is contained in:
parent
5d43c78d03
commit
1c8795075f
1 changed files with 7 additions and 0 deletions
|
|
@ -204,6 +204,13 @@ static GLboolean check_fallbacks( struct brw_context *brw,
|
|||
GLcontext *ctx = &brw->intel.ctx;
|
||||
GLuint i;
|
||||
|
||||
/* XXX FIXME */
|
||||
if (brw->intel.gen >= 6) {
|
||||
for (i = 0; i < nr_prims; i++)
|
||||
if (prim[i].mode == GL_LINE_LOOP)
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
/* If we don't require strict OpenGL conformance, never
|
||||
* use fallbacks. If we're forcing fallbacks, always
|
||||
* use fallfacks.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue