| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Let the hw decide (early vs late Z)
fixes fdo bug 25092
Signed-off-by: Alex Deucher <[email protected]>
|
| |
|
|
|
|
| |
This should fix TXB on G45 and older in the GLSL case.
|
|
|
|
|
| |
New comments should explain some of the confusion about how this message
works.
|
| |
|
|\ |
|
| |
| |
| |
| | |
The cube map array index arg is always present.
|
| |
| |
| |
| |
| | |
Instead of doing math based on the (broken for VBO && offset != 0)
input->count number, just use the BO size. Fixes assertion failure in ETQW.
|
| |
| |
| |
| |
| |
| |
| |
| | |
This didn't work for quad/quadstrips at all, and for all other primitive types
it only worked when they were unclipped.
Fix up the former in gs stage (could probably do without these changes and
instead set QuadsFollowProvokingVertexConvention to false), and the rest in
clip stage.
|
| |
| |
| |
| |
| |
| | |
Fixing this is a prereq for avoiding flagging all state at new
batch time. Eliminating that still causes problems, though (notably
glean logicOp fails on my GM965).
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Saves CPU time, resulting in a 2.5% FPS win on ETQW.
|
| | |
|
| |
| |
| |
| |
| |
| | |
This cuts a massive number of waits in ET:QW, which uses a VBO ringbuffer.
Unfortunately it doesn't BufferData when wrapping back to 0, so we can't
be clever with tracking what's been initialized.
|
| |
| |
| |
| | |
They're the same regardless of execution width for 8, 4x2, and 16.
|
| |
| |
| |
| |
| | |
This is a 2.9% (+/-.3%) performance win for my GL demo, which hits MAD
sequences for matrix transforms.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Thanks to Chia-I Wu's changes to the extension function
infrastructure, we no longer have to tell the loader which extensions
the driver might enable. This means that intelInitExtensions will
never be called with a NULL context pointer. Remove all the NULL checks.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
|
| | |
|
| | |
|
|\| |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Previously, we'd load linearly from ParameterValues[0] for the constants,
though ParameterValues[1] may not equal ParameterValues[0] + 4. Additionally,
the STATE_VAL type paramters didn't get updated.
Fixes piglit vp-constant-array-huge.vpfp and ET:QW object locations.
Bug #23226.
|
| |
| |
| |
| |
| |
| |
| | |
Fixes piglit vp-sge-alias test, and the googleearth ground shader. \o/
Bug #22228
(cherry picked from commit 56ab92bad8f1d05bc22b8a8471d5aeb663f220de)
|
| |
| |
| |
| |
| | |
Fixes piglit arl.vp.
(cherry picked from commit d52d78b4bcd6d4c0578f972c0b8ebac09e632196)
|
| |
| |
| |
| |
| |
| | |
These are needed for HiZ which is not currently used and
the _BASE reg requires a reloc which is not currently supported
in the drm.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
For an app that's blowing out the state cache, like sauerbraten, the
memset of the giant arrays ended up taking 11% of the CPU even when only a
"few" of the entries got used. With this, the WM program compile drops back
down to 1% of CPU time.
Bug #24981 (bisected to BRW_WM_MAX_INSN increase).
|
| | |
|
| |
| |
| |
| |
| |
| | |
Fixes piglit vp-sge-alias test, and the googleearth ground shader. \o/
Bug #22228
|
| |
| |
| |
| | |
Fixes piglit arl.vp.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
- consolidate DB render setup
- only enable perfect ZPASS counts and cull disable
when OQ is active
- enable early Z
|
| |
| |
| |
| |
| |
| | |
These are needed for HiZ which is not currently used and
the _BASE reg requires a reloc which is not currently supported
in the drm.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
No statistically significant performance difference at n=3 with either
openarena or my GL demo, but cutting program size seems like a good
thing to be doing for the hypothetical app that has a working set near
icache size.
|
| | |
|
| |
| |
| |
| | |
This should fix issues with antialiased lines in GLSL.
|
| |
| |
| |
| |
| | |
The PINTERP code should be faster for brw_wm_glsl.c now since brw_wm_emit.c's
had been improved, and pixel_w should no longer stomp on a neighbor to dst.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
This drops support for get_src_reg_imm in these, but the prospect of getting
brw_wm_pass*.c onto our GLSL path is well worth some temporary pain.
|
| |
| |
| |
| |
| |
| |
| |
| | |
This matches brw_wm_emit.c, which we'll be using shortly. There's a
possible penalty here in that we'll allocate registers for unused channels,
since we aren't doing ref tracking like brw_wm_pass*.c does. However, my
measurements on GM965 don't show any for either OA or UT2004 with the GLSL
path forced.
|
| | |
|
| |
| |
| |
| |
| | |
This keeps the individual state files from having to export their
structures for brw_state_cache initialization.
|
| |
| |
| |
| | |
I fixed it properly as of 7216679c1998b49ff5b08e6b43f8d5779415bf54.
|
| |
| |
| |
| |
| | |
Otherwise, we could lose track of rendering to that image, which could
easily happen during mipmap generation.
|