aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* R300: cleanup FS code and fill in missing detailsAlex Deucher2008-05-136-375/+409
|
* R3xx: more PVS cleanupAlex Deucher2008-05-134-34/+32
|
* Merge branch 'r500-support' of ↵Alex Deucher2008-05-126-201/+270
|\ | | | | | | git+ssh://[email protected]/git/mesa/mesa into r500-support
| * r500: cleanup r500 RS setupDave Airlie2008-05-072-49/+67
| |
| * r500: for rectangular textures set to unscaled coordinates.Dave Airlie2008-05-071-0/+4
| |
| * r5xx: Fix FP inputs. (For good?)Corbin Simpson2008-05-071-8/+59
| | | | | | | | | | FP inputs are now counted and mapped correctly, and temps are allocated tightly and correctly.
| * r5xx: Fix false error with DP3/DP4.Corbin Simpson2008-05-061-18/+8
| | | | | | | | | | DP3/DP4 only takes two arguments, but tried to load three, causing a false fallback to the dumb shader.
| * r5xx: Index inputs and temps.Corbin Simpson2008-05-062-95/+41
| | | | | | | | | | | | | | | | This is not the same as r3xx indexing. It only tries to protect inputs on the pixel stack from getting clobbered by temps or texs. Texs don't need special treatment since they read from special input regs and write to the same temp regs as ALU/FC instructions.
| * r5xx: FP: Add OPCODE_TXB.Corbin Simpson2008-05-061-0/+9
| | | | | | | | Tex lookup with biased LOD. Should magically work.
| * r5xx: FP: Make MOV/ABS look pretty.Corbin Simpson2008-05-061-39/+32
| | | | | | | | We can't really do anything like emit_alu, so we're doing emit_mov instead.
| * r5xx: Emit an OUT instruction at the end of execution.Corbin Simpson2008-05-061-5/+23
| | | | | | | | This should make TEX/TXP work right. (Note: "Should" is not "does.")
| * r5xx: We update max_temp_idx now, so no need to hard-code it.Corbin Simpson2008-05-061-1/+1
| | | | | | | | | | This roughly doubles the speed of glxgears (GINAB) by allowing more pixels to run concurrently.
| * r5xx: Fix typo.Corbin Simpson2008-05-061-1/+1
| | | | | | | | Gotta be more careful with my cut'n'paste, lawl.
| * r5xx: Use max_temp_idx.Corbin Simpson2008-05-061-4/+14
| |
| * r500: consolidate tex instructionsDave Airlie2008-05-051-29/+39
| | | | | | | | | | you cannot change a tex into an output so this means we have to actually do another instruction after this one to mov if its an output
| * r500: mov cleanup macrosDave Airlie2008-05-051-6/+6
| |
| * r500: make tri-param workDave Airlie2008-05-053-15/+21
| | | | | | | | | | | | | | This makes constant work which are 32-bit on r500 unlike r300. Switch MOV to using MAD no idea if we might have negative things MAX 0,-5 is likely to do the wrong thing..
| * r500: make sure we emit max temp atom.Dave Airlie2008-05-053-0/+12
| | | | | | | | We don't appear to update max_temp_idx yet anywhere though
| * r300: fix swtcl texrect path properly.Dave Airlie2008-05-052-1/+3
| | | | | | | | | | | | We really need to update the shader state so the texrect parameters work. This should fix compiz looking crappy on rs480 and rs690
* | R500: add support for 4k texturesAlex Deucher2008-05-124-5/+18
|/
* r300: Set correct VAP_CNTL per vertex program.Markus Amsler2008-05-032-38/+105
| | | | | adapted from Markus' patch on bug 15386 with updates for non-TCL and R500.
* r5xx: Fix for loops.Corbin Simpson2008-05-031-2/+4
| | | | Thanks to dli in IRC for pointing this out.
* r5xx: Fix dumb shader.Corbin Simpson2008-05-031-20/+32
| | | | | For some reason, FGLRX doesn't actually set R500_US_INST_TEX. Let us not make that same mistake.
* Merge branch 'r500test' of git://people.freedesktop.org/~csimpson/mesa into ↵Corbin Simpson2008-05-036-2233/+536
|\ | | | | | | r500-support
| * Merge branch 'r500-support' into r500testCorbin Simpson2008-05-0212-117/+83
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bringing the FPS code up-to-date. Conflicts: src/mesa/drivers/dri/r300/r300_emit.c src/mesa/drivers/dri/r300/r300_ioctl.c src/mesa/drivers/dri/r300/r300_state.c src/mesa/drivers/dri/r300/r300_swtcl.c src/mesa/drivers/dri/r300/r500_fragprog.c src/mesa/drivers/dri/r300/r500_fragprog.h
| * \ Merge branch 'r345-cleanup' of git://people.freedesktop.org/~agd5f/mesa into ↵Corbin Simpson2008-05-028-134/+477
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r500test Adding Alex's cleanup patches. This adds r5xx TCL! Whoo-hoo! Conflicts: src/mesa/drivers/dri/r300/r300_state.c src/mesa/drivers/dri/radeon/radeon_chipset.h src/mesa/drivers/dri/radeon/radeon_screen.c
| | * | R3/4/5: fix TCL on r5xx, cleanup PVS codeAlex Deucher2008-05-025-53/+72
| | | |
| | * | R300: fix VAP_OUTPUT_VTX_FMT_1 definesAlex Deucher2008-05-021-5/+5
| | | |
| | * | R300: cleanup VAP_CLIP_CNTLAlex Deucher2008-05-023-5/+17
| | | |
| | * | R300: clean up VAP_PROG_STREAM_CNTL* register usageAlex Deucher2008-05-025-63/+109
| | | |
| | * | Update commentAlex Deucher2008-05-021-1/+1
| | | |
| | * | R5xx: various updatesAlex Deucher2008-05-023-33/+56
| | | | | | | | | | | | | | | | | | | | | | | | - fixup VAP_CNTL setup - remove extra instruction in r5xx passthrough shader - add notes about pipe config
| | * | R5xx: Add R5xx pci idsAlex Deucher2008-05-013-1/+227
| | | |
| | * | Merge branch 'r500test' of git://people.freedesktop.org/~airlied/mesa into ↵Alex Deucher2008-05-0111-99/+3573
| | |\ \ | | | | | | | | | | | | | | | r345-cleanup
| * | | | Make radeon stuff build again.Corbin Simpson2008-05-022-7/+0
| | | | | | | | | | | | | | | | | | | | Yet more evidence that I am incompetent with git.
| * | | | Merge branch 'r500test' of git://people.freedesktop.org/~airlied/mesa into ↵Corbin Simpson2008-05-025-3/+15
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r500test Conflicts: src/mesa/drivers/dri/r300/r300_cmdbuf.c src/mesa/drivers/dri/r300/r300_ioctl.c src/mesa/drivers/dri/r300/r300_state.c src/mesa/drivers/dri/r300/r500_fragprog.c src/mesa/drivers/dri/r300/r500_fragprog.h src/mesa/drivers/dri/radeon/radeon_chipset.h src/mesa/drivers/dri/radeon/radeon_screen.c
| | * | | fixup r500 bits for renamingDave Airlie2008-04-161-7/+7
| | | | |
| | * | | Merge branch 'master' into r500testDave Airlie2008-04-16102-3587/+3768
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/mesa/drivers/dri/r300/r300_cmdbuf.c src/mesa/drivers/dri/r300/r300_ioctl.c
| | * | | | r500: fixup fake shader to keep gears goingDave Airlie2008-03-221-1/+1
| | | | | |
| | * | | | r500: enable gb tiling for r5xxDave Airlie2008-03-221-0/+2
| | | | | |
| | * | | | r500: fixup support for emitting fragment program to hardware.Dave Airlie2008-03-222-4/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also fixup the constant emission this breaks glxgears from what I can see but its another step to correctness
| | * | | | r500: setup fragment program constant emission atomDave Airlie2008-03-213-7/+12
| | | | | |
| | * | | | r300: add rv530 pci id for the t60p laptopDave Airlie2008-03-202-0/+8
| | | | | |
| | * | | | r300: this code really shouldn't be here.Dave Airlie2008-03-201-26/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For R500 just ignore it for now while I do something interesting like run glxgears.
| | * | | | mesa: cleanup state emission and rs for r500Dave Airlie2008-03-203-5/+104
| | | | | | | | | | | | | | | | | | | | | | | | trivial clear app now renders
| | * | | | r500 RS unit setupDave Airlie2008-03-203-25/+29
| | | | | |
| | * | | | more r500 vs r300 kickinDave Airlie2008-03-193-45/+56
| | | | | |
| | * | | | some basic r500 portageDave Airlie2008-03-176-20/+742
| | | | | |
| | * | | | r500: fragprogDave Airlie2008-03-173-0/+2581
| | | | | |
| * | | | | r5xx: Fragprog shader now handles TEX/TXP correctly.Corbin Simpson2008-05-021-5/+24
| | | | | |