aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/rasterizer.cpp
Commit message (Collapse)AuthorAge
* GPU: Added registers for min and mag texture filters and implemented them in ↵Gravatar Subv2015-07-21
| | | | the hw renderer.
* VideoCore: Implement the DOT3_RGB combinerGravatar Lectem2015-07-14
|
* Pica: Implement stencil testing.Gravatar Tony Wasserka2015-07-13
|
* Added GL_CLAMP_TO_BORDER supportGravatar Lectem2015-07-09
|
* Merge pull request #811 from archshift/commonifyGravatar archshift2015-05-31
|\ | | | | Commonify video_core utility headers
* | Pica: Use zero for the SecondaryFragmentColor source.Gravatar bunnei2015-05-31
| | | | | | | | - This is a workaround until we support fragment lighting.
* | rasterizer: Remove unnecessary 'using' for BlendEquation.Gravatar bunnei2015-05-31
| |
* | Pica: Implement LogicOp function.Gravatar bunnei2015-05-31
| |
* | rasterizer: Implement AddSigned combiner function for alpha channel.Gravatar bunnei2015-05-31
| |
| * Move video_core/color.h to common/color.hGravatar archshift2015-05-30
|/
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* Pica: Create 'State' structure and move state memory there.Gravatar bunnei2015-05-22
|
* OpenGL rendererGravatar tfarley2015-05-22
|
* Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
* GPU: Add more fine grained profiling for vertex shader and rasterizationGravatar Yuri Kunde Schlesner2015-05-12
|
* rasterizer: Implemented combiner output scaling.Gravatar bunnei2015-05-09
|
* rasterizer: Implemented AddSigned combiner op.Gravatar bunnei2015-05-09
|
* rasterizer: Fixed a depth testing bug.Gravatar bunnei2015-05-09
|
* rasterizer: Implement combiner buffer input.Gravatar bunnei2015-05-09
|
* rasterizer: Return zero'd vectors on error conditions.Gravatar bunnei2015-05-09
|
* Memory: Add GetPhysicalPointer helper functionGravatar Yuri Kunde Schlesner2015-05-09
|
* Memory: Support more regions in the VAddr-PAddr translation functionsGravatar Yuri Kunde Schlesner2015-05-09
| | | | | Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
* Silence some -Wsign-compare warnings.Gravatar Rohit Nirmal2015-04-09
|
* GPU: Added the stencil test structure to the Pica Regs struct.Gravatar Subv2015-03-09
|
* GPU: Implemented more depth buffer formats.Gravatar Subv2015-03-09
| | | | This fixes the horizontal lines in Picross E, Cubic Ninja, Cave Story 3D and possibly others
* GPU: Added RGB565/RGB8 framebuffer support and various cleanups.Gravatar bunnei2015-03-03
| | | | | | - Centralizes color format encode/decode functions. - Fixes endianness issues. - Implements remaining framebuffer formats in the debugger.
* Added RGBA5551 compatibility in the rasterizerGravatar archshift2015-02-27
| | | | This allows Virtual Console games to display properly.
* GPU: Implemented bits 3 and 1 from the display transfer flags.Gravatar Subv2015-02-26
| | | | | Bit 3 is used to specify a raw copy, where no processing is done to the data, seems to behave exactly as a DMA. Bit 1 is used to specify whether to convert from a tiled format to a linear format or viceversa.
* Rasterizer: Add support for RGBA4 framebuffer format.Gravatar bunnei2015-02-24
|
* Rasterize with the correct color component order.Gravatar bunnei2015-02-22
| | | | - Fixes a regression with #594.
* Rasterizer: Fixed a warning in GetWrappedTexCoord.Gravatar Subv2015-02-18
| | | | Redeclaring the variable inside the switch was causing weird behavior.
* Pica/Rasterizer: Replace exit() calls with UNIMPLEMENTED().Gravatar Tony Wasserka2015-02-18
|
* Pica/Rasterizer: Make some local lambdas static.Gravatar Tony Wasserka2015-02-18
|
* Pica/BlendUnit: Implement separate color/alpha blend equations.Gravatar Tony Wasserka2015-02-18
|
* Pica/TextureEnvironment: Add a note.Gravatar Tony Wasserka2015-02-18
|
* Pica/TextureEnvironment: Treat texture combiner source 1 as the PrimaryColor.Gravatar Tony Wasserka2015-02-18
| | | | Not really sure where the difference is, but some applications seem to use this 1:1 the same way...
* Pica/TextureEnvironment: Add support for the MAD-like texture combiners and ↵Gravatar Tony Wasserka2015-02-18
| | | | clean up texture environment logic.
* Pica/OutputMerger: Fix flipped framebuffers.Gravatar Tony Wasserka2015-02-18
|
* Pica/TextureUnit: Implement mirrored repeating texture wrapping.Gravatar Tony Wasserka2015-02-18
|
* Pica: Fix a bug in the register definitions, relating to texture wrapping.Gravatar Tony Wasserka2015-02-18
|
* Pica/OutputMerger: Implement color format checking.Gravatar Tony Wasserka2015-02-18
|
* Pica/Rasterizer: Rasterize actual pixel centers instead of pixel corners.Gravatar Tony Wasserka2015-02-18
|
* Pica/Rasterizer: Fix garbage pixels at triangle borders.Gravatar Tony Wasserka2015-02-18
|
* Pica/Rasterizer: Clean up and fix backface culling.Gravatar Tony Wasserka2015-02-18
|
* Pica: Cleanup clipping code and change screenspace z to range from -1..0.Gravatar Tony Wasserka2015-02-18
| | | | The change in depth range seems to reflect better to what applications are expecting, and makes for cleaner code overall (hence is more likely to reflect hardware behavior).
* Fix Min and Max blend equationsGravatar Darius Goad2015-02-11
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Add more blend equations from 3dbrewGravatar Darius Goad2015-02-09
|
* Rasterizer: Implement the other color and alpha modifiers.Gravatar bunnei2015-02-04
|
* Pica: Implement blend factors.Gravatar bunnei2015-01-31
|