summaryrefslogtreecommitdiffstats
path: root/src/video_core/clipper.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rasterizer: Pre-divide vertex attributes by WYuri Kunde Schlesner2014-12-291-3/+10
| | | | | Execute the division-by-W for perspective-correct interpolation of values in the clipper, moving them out of the rasterization inner loop.
* Clipper: Compact buffers on each clipping passYuri Kunde Schlesner2014-12-291-28/+27
| | | | | | Use a new buffer management scheme in the clipper that allows using a bounded minimal amount of buffer space. Even though it copies more data it is still slightly faster likely due to using less cache.
* Clipper: Avoid dynamic allocationsYuri Kunde Schlesner2014-12-291-10/+7
| | | | | | The triangle clipper was allocating its temporary input, output and work buffers using a std::vector. Since this is a hot path, it's desirable to use stack allocation instead.
* License changepurpasmart962014-12-211-1/+1
|
* Convert old logging calls to new logging macrosYuri Kunde Schlesner2014-12-131-1/+1
|
* Fix two format strings.Lioncash2014-11-141-2/+2
|
* Fix some warningsSean2014-10-301-2/+2
|
* Fix warnings in video_coreLioncash2014-10-081-4/+4
|
* VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size.bunnei2014-08-261-1/+1
|
* Pica: Add basic rasterizer.Tony Wasserka2014-08-121-1/+2
|
* Pica: Add triangle clipper.Tony Wasserka2014-08-121-0/+178