summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
AgeCommit message (Collapse)Author
2009-07-07r6xx/r7xx: add sw blit for tex uploadAlex Deucher
Can be used for buffer swap as well.
2009-07-07tex wipAlex Deucher
2009-07-06R6xx/r7xx: first pass at texture supportAlex Deucher
texture bo setup isn't quite working yet
2009-07-06R6xx/r7xx: DEPTH_CONTROL will be reset by this functionCooper Yuan
2009-07-02r6xx/r7xx: Better fix for fragment tempsRichard Li
This doesn't waste as many in generic cases.
2009-07-02R6xx/r7xx: Fix line width issue, ROUND_MODE and QUANT_MODE aren't bits of ↵Cooper Yuan
LINE_CNTL
2009-07-02R6xx/r7xx: Correct the indeices of DRAW_INDEX_IMMDCooper Yuan
2009-07-01r6xx/r7xx: rework aos setupAlex Deucher
In theory this should fix the stride = 0 case, but I can't seem to reproduce that anymore with mesa master.
2009-07-01R6xx/R7xx: Fix number of temps used in fragment programAlex Deucher
Spotted by Cooper. This gets hello, aargb, smooth, etc. working.
2009-06-30R6xx/r7xx: fix locking for clearAlex Deucher
this allows redbook hello to render correctly mostly.
2009-06-26Fix viewport issueCooper Yuan
2009-06-25Fix color data can't be fetched issueCooper Yuan
2009-06-23correct scissor and cliprect settingCooper Yuan
2009-06-22functions declaration with 'extern'Cooper Yuan
2009-06-22Pass viewport id to r700SendViewportState function, otherwise the radom ↵Cooper Yuan
value may beyond R700_MAX_VIEWPORTS
2009-06-22add LINK_STATES for SPI_PS and SEMANTICCooper Yuan
2009-06-12Merge master and fix conflictsAlex Deucher
2009-06-12Merge branch 'mesa_7_5_branch'Jakob Bornecrantz
2009-06-12radeon: fix size of mipmap texture arrayDave Airlie
2009-06-12radeon/r200/r300: fix max texture levels assertDave Airlie
use the actual value set in the context
2009-06-12Merge remote branch 'main/radeon-rewrite'Dave Airlie
2009-06-11Add RV740 supportAlex Deucher
2009-06-11r300: fix VAP setupMaciej Cencora
If GL context had e.g. tex0, tex2 and fog the VAPOutputCntl1 returned 0x104 instead of 0x124 - that meaned we're sending only 8 texcoords (instead of 12) which ended up in GPU hang.
2009-06-11r300: fix for SW TCL pathMaciej Cencora
We shouldn't use i variable for SWTCL_OVM_TEX because textures doesn't have to be enabled in "packed" order. We could have tex1,tex3 and fog which would receive 7,9,8 OVM locations instead of 6,7,8.
2009-06-11r300: don't send unused attributes for SW TCL pathMaciej Cencora
2009-06-11r300: send only RS_IP_* regs that we are going to useMaciej Cencora
2009-06-11r300: fix RS setup when no colors and textures are sent to FPMaciej Cencora
RS_COL_FMT field is part of RS_IP_* reg not RS_INST_*
2009-06-11r300: r500 fragment program fixesMaciej Cencora
- when rewriting per component negate swizzle, first instruction should get not negated source - KIL instruction ignores swizzles TODO: - tex instructions does not support saturation - tex instructions cannot read from consant memory
2009-06-11radeon: increase max bo countMaciej Cencora
2009-06-11r300: fix a GPU lock upMaciej Cencora
Sending from VAP more texture coordinates than RS expects results in GPU hang. Fixes BumpSelfShadow from DirectX8 SDK.
2009-06-11r300: fix vertex program bugMaciej Cencora
If the vertex program didn't write position attribute, the position invariant function would add necessary instructions, but the vertex position would be overwritten by artificial outputs insts added to satisfy fragment program requirements. Fixes "whole screen is gray" problem for HW TCL path in sauerbraten when shaders are enabled, and whole slew of wine d3d9 tests.
2009-06-11r300: move some code for easier debuggingMaciej Cencora
2009-06-11r300: print vertex program when debugging is enabledMaciej Cencora
2009-06-11r300: fix output register allocation for vertex shadersMaciej Cencora
If the vertex program wrote secondary color without primary color, the secondary color output register index would be 0 which resulted in overwriting vertex position in some cases.
2009-06-11r300: hw doesn't support saturation for tex instructionsMaciej Cencora
2009-06-11mesa: add default function for ctx->Driver.CheckQuery() hookBrian Paul
2009-06-11r300: fix indexed primitive rendering when using memory managerJerome Glisse
2009-06-11Properly set aos_countAlex Deucher
This is used by radeonReleaseArrays to free AOS.
2009-06-11intel: intel_texture_drawpixels() can't handle GL_DEPTH_STENCIL.Michel Dänzer
Fixes glean depthStencil test.
2009-06-10move radeon_set_screen_flags() up so CHIP_FAMILY is set before using itAlex Deucher
fixes last commit.
2009-06-10Use correct scratch reg offset for r6xx/r7xxAlex Deucher
2009-06-10r300: make sure indexed rendering doesn't try to use more than the num of ↵Jerome Glisse
vertices When with memory manager we need to make sure the GPU won't try to access beyond vertex buffer size, do so by enforcing that the maximun index is the last vertex of the buffer.
2009-06-09Pull in additional state setup from the DDXAlex Deucher
2009-06-09i915: Add an option for testing the effect of early Z in classic mode.Eric Anholt
The early Z stuff is supposed to be unsafe without some more work in the enable/disable path (in particular, how do we want to get it disabled on the way out to the X Server?), but at the moment is 6% in OA.
2009-06-09intel: Remove an unneeded hunk that slipped in with texture tiling.Eric Anholt
intel_miptree_pitch_align does this later on.
2009-06-09intel: Base tri clearing depth on Y tiling, not IS_I965().Eric Anholt
Y tiling is why the 965 check was there, but I wanted to experiment with Y on pre-965 as well.
2009-06-09intel: Fix intel_region_unmap to do unmap, not map.Eric Anholt
Thanks to Shuang He for catching this.
2009-06-09i965: added intelFlush() call in intel_get_tex_image()Brian Paul
Fixes the render-to-texture test in progs/tests/getteximage.c
2009-06-09intel: use GLboolean, not int, for compressed parameterBrian Paul
2009-06-09intel: make a bunch of glTexImage-related functions staticBrian Paul