summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-09-24intel: Flush the batch when we're about to subdata into a VBO.mesa_7_6_rc1Eric Anholt2-2/+5
This fixes the clears in openarena with the new metaops clear code, and the new piglit vbo-subdata-sync test. Bug #23857.
2009-09-24i965: Clean up some mess with the batch cache.Eric Anholt3-18/+5
Its flagging of extra state that's already flagged by the vtbl new_batch when appropriate was confusing my tracking down of the OA clear bug.
2009-09-24Merge branch 'mesa_7_5_branch' into mesa_7_6_branchBrian Paul2-7/+2
2009-09-24softpipe: Increase GL_MAX_3D_TEXTURE_SIZE to 256.Vinson Lee1-1/+1
2009-09-24i965: Emit zero initialization for NV VP temporaries as required.Eric Anholt5-0/+51
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.
2009-09-24i965: Remove assert about NV_vp now that it somewhat works.Eric Anholt1-2/+0
2009-09-24i965: Load NV program matrices when required.Eric Anholt1-0/+3
2009-09-24mesa: Initialize NV_vertex_program fields for the parameter lists and such.Eric Anholt3-0/+55
This helps let drivers treat NV_vp like ARB_vp.
2009-09-24mesa: remove glEnable(GL_DEPTH_BOUNDS_TEST_EXT) check/warningBrian Paul1-5/+0
At the time of the enable there may not be a Z buffer, but one may be attached to the FBO later.
2009-09-24mesa: remove rgbMode check in enable_texture()Brian Paul1-1/+1
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.
2009-09-24intel: use default array/element buffers in intel_generate_mipmap()Brian Paul1-0/+21
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.
2009-09-24mesa: replace assertion with no-op function assignmentBrian Paul1-1/+12
2009-09-24mesa: added commentBrian Paul1-0/+1
2009-09-24vbo: limit number of warnings to 10Brian Paul1-18/+25
Otherwise some apps will emit tons of warnings.
2009-09-24radeon: Fix scissors for r600 KMS.Pauli Nieminen2-6/+7
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.
2009-09-24Merge branch 'mesa_7_5_branch' into mesa_7_6_branchBrian Paul3-12/+18
2009-09-24tgsi/sse: Pass the lodbias, not zero. More comments.Brian Paul1-5/+5
This fixes the glean/glsl1 "texture2D(), with bias" test when using SSE.
2009-09-24mesa: added default case return to silence warningBrian Paul1-0/+1
2009-09-24glsl: init var to silence warningBrian Paul1-1/+1
2009-09-24glsl: fix missing initializers warningBrian Paul1-2/+2
2009-09-24r600: add support for CUBE textures, also TXPAndre Maasikas2-47/+263
seems to work here ...
2009-09-24r600: fix typo in the last commitAlex Deucher1-5/+5
128 gprs, 256 reg-based consts
2009-09-24r600: various cleanupsAlex Deucher3-45/+24
- 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 <alexdeucher@gmail.com>
2009-09-24r600: fix some issues with LIT instructionAndre Maasikas1-33/+36
- 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
2009-09-24r600: fix point sizesAlex Deucher1-4/+4
registers takes radius
2009-09-24r600: fix polygon offsetAlex Deucher1-3/+8
2009-09-24radeon: don't build non-r600 span code on r600Alex Deucher1-1/+5
2009-09-24r600: minor span cleanupsAlex Deucher1-4/+3
2009-09-24r600: support position_invariant programsAndre Maasikas1-12/+18
2009-09-24r600: add span support for 1D tilesAlex Deucher3-1/+223
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*
2009-09-24r600: fix warningAlex Deucher1-0/+1
Noticed by rnoland on IRC.
2009-09-24r600: fix texcoords from constantsAndre Maasikas1-40/+52
with some minor updates from Richard.
2009-09-24r600: enable caching of vertex programsAndre Maasikas6-62/+110
2009-09-24r600: check if textures are actually enabled before submissionAlex Deucher2-56/+64
noticed by taiu on IRC.
2009-09-24r600: fix ftp for dri1Alex Deucher1-3/+4
We use t->bo for dri1 since r600 uses CS for dri1.
2009-09-24r600: don't setup hardware state if TFPDave Airlie1-0/+4
if we have a BO here it means TFP and we should have set it up already. tested by b0le on #radeon
2009-09-24r600: fix dri2 clippingAlex Deucher1-2/+2
2009-09-23r300: fallback to software rendering if we are out of free texcoordsMaciej Cencora1-2/+16
Fixes #22741
2009-09-23swrast: add lod bias when texture samplingBrian Paul1-2/+7
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()
2009-09-23mesa: don't bias LOD in shader interpreter; do it in swrastBrian Paul1-6/+1
2009-09-23swrast: fix typo in partial derivatives parameter passingBrian Paul1-1/+1
2009-09-23st/mesa: trim calculated userbuffer sizeKeith Whitwell1-3/+9
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
2009-09-23softpipe: added max texture/surface size sanity checkBrian Paul1-0/+6
2009-09-23softpipe: increase MAX_WIDTH/HEIGTH 4096 to match max texture sizeBrian Paul1-2/+2
2009-09-22mesa: don't re-use the meta glDrawPixels VBO; create a new one each timeBrian Paul1-30/+22
This should help to work around bugs 24083 and 23670.
2009-09-22mesa: fix more buffer object error messagesBrian Paul1-3/+3
2009-09-22Merge branch 'mesa_7_5_branch' into mesa_7_6_branchBrian Paul2-6/+15
Conflicts: src/mesa/main/bufferobj.c
2009-09-22glx: include string.h to silence missing memset() prototype warningBrian Paul1-0/+1
2009-09-22mesa: fix error message textBrian Paul1-1/+1
2009-09-22r300: Fix crash reported in bug #24066Nicolai Hähnle1-0/+15
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>