ppsspp/GPU/Software
Tony Wasserka 88348a3d73 softgpu: Fix rgba texture function.
softgpu: Reorder pixel pipeline steps to match hardware order (without caring about performance loss, should be optimized later!).
softgpu: Implement alpha and color testing.
softgpu: Change CLUT lookup code a bit, still need to make some sense out of this.
2013-08-16 23:49:07 +02:00
..
Clipper.cpp softgpu: Fix vertex order when drawing rectangles. 2013-08-16 23:49:05 +02:00
Clipper.h softgpu: Add something like rectangle support. Doesn't seem to work :/ 2013-08-16 23:48:56 +02:00
Lighting.cpp softgpu: Fix specular lighting (or rather, the dumb code that always threw away the result). 2013-08-16 23:49:00 +02:00
Lighting.h softgpu: Add support for ambient lighting. 2013-08-16 23:48:58 +02:00
Rasterizer.cpp softgpu: Fix rgba texture function. 2013-08-16 23:49:07 +02:00
Rasterizer.h softgpu: Simplify Rasterizer::DrawTriangle by passing individual vertices instead of a vertex array. 2013-08-16 23:49:03 +02:00
README.txt Add snapshot of the whole source code. 2012-11-01 16:19:01 +01:00
SoftGpu.cpp softgpu: Add working CLUT support. 2013-08-16 23:49:04 +02:00
SoftGpu.h softgpu: Dummy implementation for CopyDisplayToOutput. 2013-08-16 23:48:52 +02:00
TransformUnit.cpp softgpu: Add working CLUT support. 2013-08-16 23:49:04 +02:00
TransformUnit.h softgpu/TransformPipeline: Clean up VertexData::Lerp by using Math3D effectively. 2013-08-16 23:49:04 +02:00
trirast.txt Add snapshot of the whole source code. 2012-11-01 16:19:01 +01:00

To get to 100% compatibility, we will need a software renderer as there are games out there that do tricks
that can't really be faked in a sensible way. Useful for homebrew too that mix sw and accel rendering.