summaryrefslogtreecommitdiffstats
path: root/src/video_core/surface.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-04-18video_core: Silent -Wswitch warningsReinUsesLisp1-35/+51
2019-04-09Implement Texture Format ZF32_X24S8.Fernando Sahmkow1-0/+2
2019-03-05video_core/surface: Remove obsolete TODO in PixelFormatFromRenderTargetFormat()Lioncash1-2/+0
This isn't needed anymore, according to Hexagon
2019-02-09Implement BGRA8 framebuffer formatgreggameplayer1-0/+2
2019-01-30gl_shader_cache: Fix texture view for cubemaps as cubemap arraysReinUsesLisp1-0/+18
Cubemaps are considered layered and to create a texture view the texture mustn't be a layered texture, resulting in cubemaps being bound as cubemap arrays. To fix this issue this commit introduces an extra surface parameter called "is_array" and uses this to query for texture view creation. Now that texture views for cubemaps are actually being created, this also fixes the number of layers created for the texture view (since they have to be 6 to create a texture view of cubemaps).
2018-12-28gpu: Remove PixelFormat G8R8U and G8R8S, as they do not seem to exist.bunnei1-2/+5
- Fixes UI rendering issues in The Legend of Zelda: Breath of the Wild.
2018-12-19Fixed uninitialized memory due to missing returns in canaryDavid Marcec1-0/+7
Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used.
2018-11-13Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB (#1666)greggameplayer1-0/+4
* Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB ( needed by Mario+Rabbids Kingdom Battle ) * Small placement correction
2018-11-02Fix ASTC Decompressor to support depth parameterFernandoS271-21/+5
2018-11-01Implement Cube ArraysFernandoS271-0/+3
2018-10-30video_core: Move surface declarations out of gl_rasterizer_cacheReinUsesLisp1-0/+499