aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/CMakeLists.txt
Commit message (Collapse)AuthorAge
* OpenGL: Make OpenGL object resource wrappers fully inlineGravatar Yuri Kunde Schlesner2015-07-26
| | | | | The functions are so simple that having them separate only bloats the code and hinders optimization.
* Move video_core/color.h to common/color.hGravatar archshift2015-05-30
|
* Move video_core/math.h to common/vector_math.hGravatar archshift2015-05-30
| | | | The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
* Pica: Create 'State' structure and move state memory there.Gravatar bunnei2015-05-22
|
* OpenGL rendererGravatar tfarley2015-05-22
|
* 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.
* CMake cleanupGravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
* Replace GLEW with a glLoadGen loader.Gravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | | This should fix the GL loading errors that occur in some drivers due to the use of deprecated functions by GLEW. Side benefits are more accurate auto-completion (deprecated function and symbols don't exist) and faster pointer loading (less entrypoints to load). In addition it removes an external library depency, simplifying the build system a bit and eliminating one set of binary libraries for Windows.
* Rewrite of OpenGL renderer, including OS X supportGravatar Kevin Hartman2014-08-25
| | | | | | Screen contents are now displayed using textured quads. This can be updated to expose an FBO once an OpenGL backend for when Pica rendering is being worked on. That FBO's texture can then be applied to the quads. Previously, FBO blitting was used in order to display screen contents, which did not work on OS X. The new textured quad approach is less of a compatibility risk.
* Pica: Add debug utility functions for dumping geometry data.Gravatar Tony Wasserka2014-08-25
|
* Pica: Add basic rasterizer.Gravatar Tony Wasserka2014-08-12
|
* Pica: Add triangle clipper.Gravatar Tony Wasserka2014-08-12
|
* Pica: Add primitive assembly stage.Gravatar Tony Wasserka2014-08-12
|
* Pica: Add vertex shader implementation.Gravatar Tony Wasserka2014-08-12
|
* Pica: Add command processor.Gravatar Tony Wasserka2014-08-12
|
* Video core: Add utility class for vector operations.Gravatar Tony Wasserka2014-08-12
| | | | | 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.
* CMakeLists: rename HEADS, improved commentsGravatar archshift2014-05-19
| | | | Changes for clarity of comments, removed redundant compiler flags.
* IT'S ALIVE!Gravatar archshift2014-04-28
|
* fixed a bunch of errors in CMakeListsGravatar bunnei2014-04-09
|
* updated CMakeListsGravatar bunnei2014-04-09
|
* added video_core project to solutionGravatar bunnei2014-04-05