summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/renderer_opengl.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-05-23OpenGL renderertfarley1-6/+10
2015-03-09Added LCD registers, and implementation for color filling in OGL code.archshift1-1/+4
2015-02-15video_core: Implement the remaining framebuffer formats in the OpenGL renderer.Emmanuel Gil Peyrot1-0/+5
2014-12-21License changepurpasmart961-1/+1
2014-11-18OpenGL Renderer: Cleanup viewport extent calculation.Tony Wasserka1-17/+7
2014-11-18Viewport scaling and display density independenceKevin Hartman1-0/+15
The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly.
2014-10-26Add `override` keyword through the code.Yuri Kunde Schlesner1-4/+4
This was automated using `clang-modernize`.
2014-10-12Rework OpenGL renderer.Yuri Kunde Schlesner1-46/+22
The OpenGL renderer has been revised, with the following changes: - Initialization and rendering have been refactored to reduce the number of redundant objects used. - Framebuffer rotation is now done directly, using texture mapping. - Vertex coordinates are now given in pixels, and the projection matrix isn't hardcoded anymore.
2014-10-12OpenGL renderer: Shuffle initialization code around and rename functions.Yuri Kunde Schlesner1-8/+2
2014-10-12Remove virtual inheritance from RendererOpenGLYuri Kunde Schlesner1-2/+2
Also make destructor virtual so that instances are properly destructed.
2014-09-09Moved common_types::Rect from common to Common namespacearchshift1-1/+1
2014-09-01Replace GLEW with a glLoadGen loader.Yuri Kunde Schlesner1-1/+1
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.
2014-08-28Downgrade GLSL version to 1.50 (compatible with GL 3.2)Yuri Kunde Schlesner1-0/+3
2014-08-26VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size.bunnei1-0/+1
2014-08-26Rewrite of OpenGL renderer, including OS X supportKevin Hartman1-27/+36
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.
2014-07-23Renderer: Fix component order in bottom framebuffer.Tony Wasserka1-4/+3
2014-05-20common_types: Changed BasicRect back to Rect, in the common namespacearchshift1-1/+1
Only Rect is in the namespace for now; the rest of common should be added in the future
2014-04-28Xcode complains that the class name is redundant.archshift1-1/+1
2014-04-28Rect to BasicRectarchshift1-1/+1
Somewhere along the line an OSX header had already taken the name Rect.
2014-04-28removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classbunnei1-1/+0
2014-04-27fixed renderer to use correct framebuffer locationbunnei1-2/+2
2014-04-09fixed project includes to use new directory structurebunnei1-3/+3
2014-04-09got rid of 'src' folders in each sub-projectbunnei1-0/+0
2014-04-09fixed license header in video_corebunnei1-24/+3
2014-04-09- removed lots of unused code from gekkobunnei1-68/+27
- updated code style/naming conventions
2014-04-07added support for renderering the external framebuffersbunnei1-1/+7
2014-04-07added external framebuffer GL handlesbunnei1-2/+11
2014-04-06added initial renderer codebunnei1-0/+138