| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Plus, clearer shuffle masks in other funcs.
|
|
|
|
| |
indexed elements ensure we write to a single register.
|
|
|
|
| |
Also, optimize register->memory stores.
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
If we shift bytes into the texel word (or use the PACK_COLOR_8888 macro),
we don't have to worry about big vs. little endian. See comments about
texel formats in texformat.h.
Remove an unneeded/incorrect else-if clause that produced wrong results
on big-endian systems.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
The glsl/multitex demo runs now.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
immediate field
This type of checking should be expanded to cover more instructions...
|
| | |
|
| | |
|
| |
| |
| |
| | |
The ai instruction is limited to a 10-bit signed immediate value.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
These are the defects found and fixed so far. Several more have
been observed; I'm working on them.
- Fixed an error in spe_load_uint() that caused incorrect values to be
loaded if the given unsigned value had the low 18 bits as 0,
and that caused inefficient code to be emitted if the given value
had the high 14 bits as 0.
- Fixed a problem in stencil code generation where optional registers
weren't tracked correctly.
- Fixed a problem that the stencil function NEVER was acting as ALWAYS.
- Fixed several problems that could occur if stenciling were enabled but
depth was disabled.
- Fixed a problem with two-sided stencil writemask handling that could
cause a stencil writemask to not be applied.
- Fixed several state permutations that were incorrectly flagged as
not requiring stencil values to be calculated.
|
| |
| |
| |
| |
| |
| | |
Ensures that SPUs are initialized/ready before proceeding.
This fixes a spurious assertion failure when the SPU-side shader function info
hasn't been returned to the PPU before shader codegen.
|
| |
| |
| |
| | |
Also, bump up frame size and fix some assertions.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
With this fix, the glsl/brick demo runs.
|
| | |
|
|\|
| |
| |
| |
| |
| |
| | |
Conflicts:
src/mesa/glapi/descrip.mms
src/mesa/shader/grammar/descrip.mms
|
| |
| |
| |
| |
| | |
The fallback was introduced to fix bug #16697, but made the test it was
fixing run excessively long.
|
| | |
|
| |
| |
| |
| |
| | |
The fallback was introduced to fix bug #16697, but made the test it was
fixing run excessively long.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
If the tnl output attributes matches the swsetup input attributes we still
need to check if the desired vertex color type (float vs. chan) has changed
so that we use the right emit functions.
Fixes a conformance failure found with logicop test at pathlevel 3.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
This lets us short-circuit when we're leaving the same cliprects in place,
which becomes quite common with metaops clears, and may be useful for some of
our FBO paths.
|
| | |
|
| |
| |
| |
| | |
Fixes bug 17800.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Fixes glean pointSprite test w/ software rendering
|
| |
| |
| |
| | |
If the .a is made of other .a files, extract the objects from the later.
|
| | |
|
| |
| |
| |
| | |
Fixes vtk crash and others.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Without this, we would reject programs which sampled multiple times from
registers defined in the same phase (block of instructions with the same
texture indirection count), as each sample would count as a new phase
beginning. Instead, keep track of which phases registers were written in,
and only bump phase when we're reading from one generated in this phase.
On the other hand, we failed to count oC or oD texture samples as being new
phases.
Bug #17865.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Move GL_ARB_texture_non_power_of_two and GL_ATI_separate_stencil
from the generic extension list to the 965-specific list. Neither
extension is supported on i830-class hardware, and
GL_ATI_separate_stencil is not supported on i915-class hardare.
GL_ARB_texture_non_power_of_two is supported on i915-class hardare and
is already in the i915-specific list.
|
| |
| |
| |
| |
| |
| |
| | |
The ARB extension is a superset of the older SGIX extension. Any
hardware that can support the SGIX version can also support the ARB
version. In Mesa, any driver that supports one also supports the
other. This unification just simplifies some bits of code.
|
| |
| |
| |
| | |
See volume 4, SAMPLER_BORDER_COLOR_STATE programming notes.
|
| |
| |
| |
| | |
Fixes black borders around windows in compiz. Bug #17233.
|
| |
| |
| |
| |
| |
| | |
- Sort extensions by ARB, then EXT, then vendor by name
- Remove redundant (only one of GL_{ARB,EXT,NV}_texture_rectangle) or
duplicate extension strings
|