aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/surface.cpp
AgeCommit message (Collapse)Author
2019-04-09Implement Texture Format ZF32_X24S8.Fernando Sahmkow
2019-03-05video_core/surface: Remove obsolete TODO in PixelFormatFromRenderTargetFormat()Lioncash
This isn't needed anymore, according to Hexagon
2019-02-09Implement BGRA8 framebuffer formatgreggameplayer
2019-01-29gl_shader_cache: Fix texture view for cubemaps as cubemap arraysReinUsesLisp
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.bunnei
- Fixes UI rendering issues in The Legend of Zelda: Breath of the Wild.
2018-12-19Fixed uninitialized memory due to missing returns in canaryDavid Marcec
Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used.
2018-11-12Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB (#1666)greggameplayer
* Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB ( needed by Mario+Rabbids Kingdom Battle ) * Small placement correction
2018-11-05Merge pull request #1616 from FernandoS27/cube-arraybunnei
Implement Cube Arrays
2018-11-01Fix ASTC Decompressor to support depth parameterFernandoS27
2018-11-01Implement Cube ArraysFernandoS27
2018-10-30video_core: Move surface declarations out of gl_rasterizer_cacheReinUsesLisp