aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/renderer_opengl/gl_shaders.h
AgeCommit message (Collapse)Author
2015-10-21renderer_opengl: Refactor shader generation/caching to be more organized + ↵bunnei
various cleanups.
2015-10-21Initial implementation of fragment shader generation with caching.Subv
2015-05-31Pica: Use zero for the SecondaryFragmentColor source.bunnei
- This is a workaround until we support fragment lighting.
2015-05-22OpenGL renderertfarley
2014-12-20License changepurpasmart96
2014-10-12Rework OpenGL renderer.Yuri Kunde Schlesner
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-08-28Downgrade GLSL version to 1.50 (compatible with GL 3.2)Yuri Kunde Schlesner
2014-08-25Rewrite of OpenGL renderer, including OS X supportKevin Hartman
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.