| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-11 | video_core: Reorganize headers | Lioncash | |
| 2015-09-03 | OpenGL: Remove ugly and endian-unsafe color pointer casts | Yuri Kunde Schlesner | |
| 2015-08-31 | Pica: Added the primitive_restart register (0x25f) to the registers map. | Subv | |
| 2015-08-31 | Pica: Add the vertex_offset register to the Pica registers map. | Subv | |
| 2015-08-30 | Merge pull request #1059 from Subv/vertex_offset | bunnei | |
| GPU: Implemented register 0x22A PICA_REG_DRAW_VERTEX_OFFSET | |||
| 2015-08-30 | GPU: Implemented register 0x22A. | Subv | |
| This is the equivalent of the "first" parameter in glDrawArrays, it tells the GPU the vertex index at which to start rendering. Register 0x22A doesn't affect indexed rendering. | |||
| 2015-08-29 | Merge pull request #1049 from Subv/stencil | bunnei | |
| Rasterizer: Corrected the stencil implementation. | |||
| 2015-08-24 | fixup! Shaders: Fix multiplications between 0.0 and inf | Yuri Kunde Schlesner | |
| 2015-08-24 | Shaders: Fix multiplications between 0.0 and inf | Yuri Kunde Schlesner | |
| The PICA200 semantics for multiplication are so that when multiplying inf by exactly 0.0, the result is 0.0, instead of NaN, as defined by IEEE. This is relied upon by games. Fixes #1024 (missing OoT interface items) | |||
| 2015-08-21 | SWRasterizer: Implemented stencil ops 6 and 7. | Subv | |
| IncrementWrap and DecrementWrap, verified with hwtests. | |||
| 2015-08-21 | SWRasterizer: Implemented stencil action 1 (GL_ZERO). | Subv | |
| Verified with hwtests. | |||
| 2015-08-20 | GPU/Rasterizer: Corrected the stencil implementation. | Subv | |
| Verified the behavior with hardware tests. | |||
| 2015-08-16 | Merge pull request #1034 from yuriks/rg8-textures | bunnei | |
| videocore: Added RG8 texture support | |||
| 2015-08-16 | citra-qt: Improve shader debugger. | Tony Wasserka | |
| Now supports dumping the current shader and recognizes a larger number of output semantics. | |||
| 2015-08-16 | videocore: Added RG8 texture support | Patrick Martin | |
| 2015-08-15 | Shader: Define a common interface for running vertex shader programs. | bunnei | |
| 2015-07-26 | Videocore: Don't reinitialize register name map on every query | Yuri Kunde Schlesner | |
| This greatly speeds up the command list debug widget. | |||
| 2015-07-25 | Merge pull request #892 from zawata/another-warning-fixes | Yuri Kunde Schlesner | |
| Yet More Warning Fixes | |||
| 2015-07-21 | Merge pull request #968 from Subv/texture_filtering | bunnei | |
| GPU: Added registers for min and mag texture filters | |||
| 2015-07-21 | GPU: Added registers for min and mag texture filters and implemented them in ↵ | Subv | |
| the hw renderer. | |||
| 2015-07-21 | Merge pull request #929 from neobrain/geoshader_definitions | Tony Wasserka | |
| Pica/Shader: Add geometry shader definitions. | |||
| 2015-07-19 | Pica: Correct switched S/T texture wrapping registers | Yuri Kunde Schlesner | |
| This was found and hwtested by Lectem | |||
| 2015-07-19 | Rasterizer/Textures: Fixed a bug where the I4 format would get twice the ↵ | Subv | |
| real stride. Also added its name to the texture viewer widget | |||
| 2015-07-19 | Video_Core: Finally fix pesky warning | zawata | |
| 2015-07-15 | Pica/Shader: Add geometry shader definitions. | Tony Wasserka | |
| 2015-07-14 | VideoCore: Implement the DOT3_RGB combiner | Lectem | |
| 2015-07-13 | Pica: Implement stencil testing. | Tony Wasserka | |
| 2015-07-12 | Merge pull request #907 from Lectem/clamp_to_border | Tony Wasserka | |
| Add GL_CLAMP_TO_BORDER support. | |||
| 2015-07-09 | Added GL_CLAMP_TO_BORDER support | Lectem | |
| 2015-06-28 | Common: Cleanup emu_window includes. | Emmanuel Gil Peyrot | |
| 2015-06-14 | video_core: add extra braces around initializer | Yuri Kunde Schlesner | |
| Trivial change and fixes several warnings in the clang build. | |||
| 2015-05-31 | Merge pull request #811 from archshift/commonify | archshift | |
| Commonify video_core utility headers | |||
| 2015-05-31 | Pica: Use zero for the SecondaryFragmentColor source. | bunnei | |
| - This is a workaround until we support fragment lighting. | |||
| 2015-05-31 | Pica: Implement LogicOp function. | bunnei | |
| 2015-05-31 | Pica: Implement command buffer execution registers. | bunnei | |
| 2015-05-30 | Move video_core/math.h to common/vector_math.h | archshift | |
| The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core. | |||
| 2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | |
| 2015-05-22 | Pica: Create 'State' structure and move state memory there. | bunnei | |
| 2015-05-22 | OpenGL renderer | tfarley | |
| 2015-05-18 | Merge pull request #772 from lioncash/warn | bunnei | |
| core/video_core: Fix a few warnings when compiling on MSVC. | |||
| 2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | |
| 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. | |||
| 2015-05-14 | pica: Add the ULL specifier in IsDefaultAttribute | Lioncash | |
| This is necessary otherwise there are warnings about a 32-bit result being casted to a 64-bit value. | |||
| 2015-05-10 | Implement I4 texture format | archshift | |
| @neobrain, could you confirm that this is correct? It's been tested with various different games and fixes different textures, including in Animal Crossing, Kirby Triple Deluxe, and SMB3D. | |||
| 2015-05-09 | rasterizer: Implemented combiner output scaling. | bunnei | |
| 2015-05-09 | rasterizer: Fixed a depth testing bug. | bunnei | |
| 2015-05-09 | rasterizer: Implement combiner buffer input. | bunnei | |
| 2015-05-09 | Memory: Support more regions in the VAddr-PAddr translation functions | Yuri Kunde Schlesner | |
| Also adds better documentation and removes the one-off reimplementation of the function in pica.h. | |||
| 2015-05-09 | Memory: Re-organize and rename memory area address constants | Yuri Kunde Schlesner | |
| 2015-05-07 | Merge pull request #721 from yuriks/more-cleanups | Yuri Kunde Schlesner | |
| More cleanups | |||
| 2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | |
