| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
cause a fallback, and simplify the tmu handling a little.
|
|
|
|
|
| |
so that we can use the env var to get output. Add a no_rast driconf option to
force software fallbacks.
|
|
|
|
|
| |
be used in that case, and it wanting WRITE_DEPTH was making r128 die on
the undefined symbol.
|
|
|
|
| |
function is used.
|
|
|
|
|
|
| |
pitch and size. Cut out a bunch of dead code.
This fixes bugzilla #1555.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(patented) S3TC/DXTC algorithms, but adds an option to dlopen a library module
providing functions to do so. Because it uses dlopen, it is only enabled if
USE_EXTERNAL_DXTN_LIB=1 is defined (which is only in linux-dri config, so far).
It adds support for S3TC to several DRI drivers, and adds a DRI config option to
force enabling S3TC even if the software compression/decompression is
unavailable. This may allow people to use apps that require S3TC even though
they don't have a license to implement the patented material themselves, if
those apps use precompressed textures.
Ideally we would get permission from the current holder of the patents to
implement the algorithm in Mesa, at which point the dlopen mess could go away.
Until then, this allows some to run applications they couldn't otherwise, and
hopefully will provide us with more push to get the final step of getting that
permission done.
|
|
|
|
| |
fixes bugzilla #960.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
claims not to support visual 0xXX" warnings in X.org 6.8.1.
|
|
|
|
| |
20-Sep-2004 #dri-devel meeting.
|
| |
|
|
|
|
| |
This fixes bugzilla #1511.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
happen before any state had been set, causing a hang later on. Fix this by
calling r200Flush instead of FIREVERTICES (which checks if any state has been
emitted but not flushed, before calling Flush) in r200Clear. While here, add
some more debugging info which was useful, and remove an unnecessary
save/restore in BackUpAndEmit.
|
|
|
|
|
|
|
|
| |
it's not that big of a deal in more normal apps, and axes a good bit of code.
And I assume that t_vertex will only get faster. Removes ~43k from compiled
binary.
Tested with: quake3, ut, ipers, texcyl, chromium, tuxracer, neverball (kinda)
|
|
|
|
|
|
|
|
|
| |
scratch. There were just too many cut-and-paste errors in the code,
and it was too hard to follow.
This fixes Mesa bugzilla #1508. #1509 is probably also fixed, but
I'd like to do some more testing before I close that particular bug.
Additionally, this cuts almost 4,600 lines of code from the driver.
|
|
|
|
|
|
|
|
| |
state with a function. This function sets the bits correctly. Did some
trivial refactoring on some of the GL_COMBINE code.
First pass at replacing classic texture environments with GL_COMBINE.
This is controlled by the EXPERIMENTAL_COMBINE_MODE define.
|
|
|
|
|
|
| |
for GL_ARB_texture_mirrored_repeat. Enabled GL_NV_blend_square. It has
always actually been supported. Removed redundant EXT versions of ARB
extension strings.
|
|
|
|
|
|
| |
between pointers in appropriate types.
Submitted by: Ronny V. Vindenes <[email protected]>
|
|
|
|
|
|
|
|
|
| |
state in a ready-to-emit cmdbuf, which avoids the issue Nicolai Haehnle reported
where the check() could return differently during backup-and-emit than it should
have if it were called at the right time. Move the lit emission before most of
the TCL state emission on r200, which fixes neverball issues.
Tested with: r100/r200 with neverball, tuxracer, chromium, quake3, ipers
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
GL_COPY to turn off logicop. Fixes glean's logicop test.
|
|
|
|
| |
Doesn't seem to help with glean's paths test, but I'm pretty sure it's correct.
|
| |
|
|
|
|
| |
the hardware. Re-enable AGP by default.
|
|
|
|
|
|
|
|
|
|
|
|
| |
a new cmdbuf, to ensure that state wasn't lost across UNLOCK/LOCK pairs (in the
case of context switching). This was rather inefficient. Instead, after
flushing a cmdbuf, mark the state as needing to be saved on unlock. Then, at
the beginning of flushing a cmdbuf, if we actually have lost the context, go
back and emit a new cmdbuf with the full set of state, before continuing with
the cmdbuf flush. Provides a 10-15% improvement in ipers performance in my
tests, along with other apps.
Tested with: ipers, glxgears, quake3
|
|
|
|
| |
setup that now removed atoms from the atomlist on texture deletion.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
after we check the buffer
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
a new cmdbuf, to ensure that state wasn't lost across UNLOCK/LOCK pairs (in the
case of context switching). This was rather inefficient. Instead, after
flushing a cmdbuf, mark the state as needing to be saved on UNLOCK. Then, at
the beginning of flushing a cmdbuf, if we actually have lost the context, go
back and emit a new cmdbuf with the full set of state, before continuing with
the cmdbuf flush. Also, remove the dirty/clean atom lists, since atoms are
emitted in a fixed order these days, and go with a simpler single list.
Provides a 14% improvement in ipers performance in my tests, along with other
apps.
|
| |
|