aboutsummaryrefslogtreecommitdiff
path: root/src/video_core
AgeCommit message (Collapse)Author
2014-08-12Pica: Add float24 structure.Tony Wasserka
24-bit floating points are used internally for calculations on the GPU, however the current code will still emulate that with 32-bit floating points. In the future we might want to accurately perform the calculations with correct bitness in the future, but for now we just wrap the calculations around this class.
2014-08-12Video core: Add utility class for vector operations.Tony Wasserka
I wrote most of this for ppsspp, so I hold full copyright over it. In addition to the original release in ppsspp, this provides functionality to easily extend e.g. two-dimensional vectors to three-dimensional vectors.
2014-08-12Pica/GPU: Change hardware registers to use physical addresses rather than ↵Tony Wasserka
virtual ones. This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible. This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though.
2014-08-12Remove the fancy RegisterSet class introduced in 4c2bff61e.Tony Wasserka
While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use.
2014-08-05GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.bunnei
- Various other cleanups.
2014-07-23Use uniform formatting when printing hexadecimal numbers.Tony Wasserka
2014-07-23GSP: Clean up GX command processing a lot and treat command id as a u8 ↵Tony Wasserka
rather than a u32. Anonymous structs are not standard C++, hence don't use them.
2014-07-23RegisterSet: Simplify code by using structs for register definition instead ↵Tony Wasserka
of unions.
2014-07-23GPU: Make use of RegisterSet.Tony Wasserka
2014-07-23Renderer: Fix component order in bottom framebuffer.Tony Wasserka
2014-07-23Renderer: Respect the active_fb GPU register.Tony Wasserka
2014-07-23Renderer: Add a few TODOs.Tony Wasserka
2014-07-22GPU debugger: Don't keep track of debugging data if no debugger views are ↵Tony Wasserka
active.
2014-06-12GPU debugger: Const correctness and build fix.Tony Wasserka
2014-06-12Preprocessor: #if's out OSX-specific GL changes on other platformsarchshift
2014-06-12Pica: Use some template magic to define register structures efficiently.Tony Wasserka
2014-06-12Further refine GPU command list debugging.Tony Wasserka
2014-06-12Refine command list debugging functionality and its qt interface.Tony Wasserka
2014-06-12citra-qt: Add command list view.Tony Wasserka
2014-06-12GPU debugger: Add functionality to inspect command lists.Tony Wasserka
2014-06-12video core: added PICA definitions file.Tony Wasserka
2014-06-12Rename LCD to GPU.Tony Wasserka
2014-06-12Add initial graphics debugger interface.Tony Wasserka
2014-05-19common_types: Changed BasicRect back to Rect, in the common namespacearchshift
Only Rect is in the namespace for now; the rest of common should be added in the future
2014-05-19Improved clarity and whitespacearchshift
Changed QGL version to 3,2 in order to be less restrictive, yet it should still change up to 4,1 on OSX on Qt5.
2014-05-19CMakeLists: rename HEADS, improved commentsarchshift
Changes for clarity of comments, removed redundant compiler flags.
2014-05-19Indent fixesarchshift
2014-05-16Merge remote-tracking branch 'upstream/master' into issue-7-fixarchshift
2014-05-08Update FlipFramebufferSethpaien
Less calculations + fix
2014-04-30Fixed indentsarchshift
2014-04-30Reverse debugging changesarchshift
2014-04-30TGA dumps work, courtesy of @bunneiarchshift
2014-04-30OpenGL 3+ on OSX with GLFWarchshift
2014-04-28IT'S ALIVE!archshift
2014-04-27Xcode complains that the class name is redundant.archshift
2014-04-27Rect to BasicRectarchshift
Somewhere along the line an OSX header had already taken the name Rect.
2014-04-27removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classbunnei
2014-04-27fixed renderer to use correct framebuffer locationbunnei
2014-04-21fixed GL context acquire (applies to Qt GUI only)bunnei
2014-04-17renamed hw_lcd module to just lcdbunnei
2014-04-17fixed framebuffer color orderbunnei
2014-04-16removed hard-coded framebuffer addresses from renderer_opengl.cppbunnei
2014-04-10cleaned up some logging messagesbunnei
2014-04-09fixed a bunch of errors in CMakeListsbunnei
2014-04-09updated CMakeListsbunnei
2014-04-08fixed project includes to use new directory structurebunnei
2014-04-08got rid of 'src' folders in each sub-projectbunnei
2014-04-08fixed license header in video_corebunnei
2014-04-08- removed lots of unused code from gekkobunnei
- updated code style/naming conventions
2014-04-07added support for renderering the external framebuffersbunnei