| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
As shown in mfeatures.h, this allows users of convolve.h to work without
knowing if the feature is available.
|
|
|
|
|
| |
As shown in mfeatures.h, this allows users of colortab.h to work
without knowing if the feature is available.
|
|
|
|
|
| |
As shown in mfeatures.h, this allows users of pixel.h to work without
knowing if the feature is available.
|
|
|
|
| |
The comments document the conventions that a feature may follow.
|
|
|
|
|
| |
Handles GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP.
But GL_TEXTURE_3D and texture borders not supported yet.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| | |
Conflicts:
src/mesa/vbo/vbo_exec_array.c
|
| |\ |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
At the time of the enable there may not be a Z buffer, but one
may be attached to the FBO later.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If the currently bound FBO isn't yet validated it's possible for
rgbMode to be zero so we'll lose the texture enable.
This could fix some FBO rendering glitches, but I don't know of
any specific instances.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is similar to what r300 does inside the driver, but I've added it as
a generic option since it seems most hardware will want it.
Fixes piglit nv-init-zero-reg.vpfp and nv-init-zero-addr.vpfp.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
This helps let drivers treat NV_vp like ARB_vp.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If there happened to be a bound VBO when intel_generate_mipmap() was
called we blew up because of a bad vertex array pointer.
Fixes regnumonline, bug 23859.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Otherwise some apps will emit tons of warnings.
|
|\| | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Radeon generic scissors code had problem that some of code was using exclusive
and some inclusive bottom right corner. Only r600 driver is using exclusive
coordinate so changed generic code to pass inclusive coordinate and r600 driver
changes BR coordinate to be exclusive.
|
|\| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Conflicts:
src/mesa/drivers/dri/r600/r700_assembler.c
src/mesa/drivers/dri/r600/r700_chip.c
src/mesa/drivers/dri/r600/r700_render.c
src/mesa/drivers/dri/r600/r700_vertprog.c
src/mesa/drivers/dri/r600/r700_vertprog.h
src/mesa/drivers/dri/radeon/radeon_span.c
|
| |\| |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Mostly fixes progs/demos/lodbias when MESA_TEX_PROG=1. But the LOD still
seems off by -1 or so.
May be an issue with the params passed to _swrast_compute_lambda()
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In get_array_bounds we were previously defining a user buffer sized as
(nr_vertices * stride). The trouble is that if the vertex data
occupies less than stride bytes, the extra tailing (stride - size)
bytes may extend outside the memory actually allocated by the app and
caused a segfault.
To fix this, define a the buffer bounds to be:
ptr .. ptr + (nr-1)*stride + element_size
|
| | |
| | |
| | |
| | | |
This fixes the glean/glsl1 "texture2D(), with bias" test when using SSE.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
seems to work here ...
|
| | |
| | |
| | |
| | | |
128 gprs, 256 reg-based consts
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- max texture size is 8k, but mesa doesn't support
that at the moment.
- attempt to set shader limits to what the hw actually
supports
- clean up some old r300 cruft
- no need to explicitly disable irqs. This is fixed
in the drm now.
Signed-off-by: Alex Deucher <[email protected]>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- MUL_LIT is ALU.Trans instruction
- some Trans instructions can take 3 arguments
- don't clobber dst.x, use dst.z as temp, it'll get written correct
value in last insn
- respect source swizzles
|
| | |
| | |
| | |
| | | |
registers takes radius
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
1D tile span support for depth/stencil/color/textures
Z and stencil buffers are always tiled, so this fixes
sw access to Z and stencil buffers. color and textures
are currently linear, but this adds span support when we
implement 1D tiling.
This fixes the text in progs/demos/engine and progs/tests/z*
|
| | |
| | |
| | |
| | | |
Noticed by rnoland on IRC.
|
| | |
| | |
| | |
| | | |
with some minor updates from Richard.
|
| | | |
|
| | |
| | |
| | |
| | | |
noticed by taiu on IRC.
|