mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
gallium/i915: Use hardware rendering, unless INTEL_SP env var is set
This commit is contained in:
parent
20839b37ed
commit
ea02342c11
1 changed files with 2 additions and 1 deletions
|
|
@ -188,7 +188,8 @@ intelCreateContext(const __GLcontextModes * visual,
|
|||
/*
|
||||
* Pipe-related setup
|
||||
*/
|
||||
if (!getenv("INTEL_HW")) {
|
||||
if (getenv("INTEL_SP")) {
|
||||
/* use softpipe driver instead of hw */
|
||||
pipe = intel_create_softpipe( intel, intelScreen->winsys );
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue