aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/renderer_opengl/gl_shaders.h
Commit message (Collapse)AuthorAge
* Pica: Use zero for the SecondaryFragmentColor source.Gravatar bunnei2015-05-31
| | | | - This is a workaround until we support fragment lighting.
* OpenGL rendererGravatar tfarley2015-05-22
|
* License changeGravatar purpasmart962014-12-20
|
* Rework OpenGL renderer.Gravatar Yuri Kunde Schlesner2014-10-12
| | | | | | | | | 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.
* Downgrade GLSL version to 1.50 (compatible with GL 3.2)Gravatar Yuri Kunde Schlesner2014-08-28
|
* 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.