summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* gl_rasterizer_cache: Implement texture format G8R8.bunnei2018-07-151-5/+26
|
* Merge pull request #665 from bunnei/fix-z24-s8bunnei2018-07-151-1/+2
|\ | | | | gl_rasterizer_cache: Fix incorrect offset in ConvertS8Z24ToZ24S8.
| * gl_rasterizer_cache: Fix incorrect offset in ConvertS8Z24ToZ24S8.bunnei2018-07-151-1/+2
| |
* | gl_rasterizer_cache: Implement depth format Z16_UNORM.bunnei2018-07-151-1/+4
|/
* GPU: Implemented the BC7U texture format.Subv2018-07-071-3/+7
| | | | Note: Our version of glad exports GL_COMPRESSED_RGBA_BPTC_UNORM as GL_COMPRESSED_RGBA_BPTC_UNORM_ARB, maybe it's time we update it.
* GPU: Implemented the 32 bit float depth buffer format.Subv2018-07-041-2/+4
|
* GPU: Only configure the used framebuffers during clear.Subv2018-07-041-7/+27
| | | | Don't try to configure the color buffer if it is not being cleared, it may not be completely valid at this point.
* gl_rasterizer_cache: Implement PixelFormat S8Z24.bunnei2018-07-031-11/+73
|
* Rename logging macro back to LOG_*James Rowe2018-07-031-3/+3
|
* Merge pull request #608 from Subv/depthbunnei2018-07-031-20/+29
|\ | | | | GPU: Implemented the depth buffer and depth test + culling
| * GPU: Implemented the Z24S8 depth format and load the depth framebuffer.Subv2018-07-021-20/+29
| |
* | Merge pull request #604 from Subv/invalid_texturesbunnei2018-07-021-0/+5
|\ \ | |/ |/| GPU: Ignore invalid and disabled textures when drawing.
| * GPU: Ignore disabled textures and textures with an invalid address.Subv2018-07-021-0/+5
| |
* | GPU: Implemented the RGBA32_UINT rendertarget format.Subv2018-06-301-4/+7
| |
* | GLCache: Specify the component type along the texture type in the format tuple.Subv2018-06-301-17/+21
|/
* gl_rasterizer_cache: Only dereference color_surface/depth_surface if valid.bunnei2018-06-291-2/+6
|
* gl_rasterizer_cache: Implement caching for texture and framebuffer surfaces.bunnei2018-06-271-7/+109
| | | | | | gl_rasterizer_cache: Improved cache management based on Citra's implementation. gl_surface_cache: Add some docstrings.
* gl_rasterizer_cache: Various fixes for ASTC handling.bunnei2018-06-271-29/+34
|
* gl_rasterizer_cache: Use SurfaceParams as a key for surface caching.bunnei2018-06-271-30/+39
|
* gl_rasterizer: Implement AccelerateDisplay to forward textures to framebuffers.bunnei2018-06-271-0/+26
|
* gl_rasterizer_cache: Cache size_in_bytes as a const per surface.bunnei2018-06-271-9/+12
|
* gl_rasterizer_cache: Refactor to make SurfaceParams members const.bunnei2018-06-271-39/+24
|
* gl_rasterizer_cache: Remove Citra's rasterizer cache, always load/flush surfaces.bunnei2018-06-271-1128/+134
|
* Merge pull request #593 from bunnei/fix-swizzlebunnei2018-06-271-1/+1
|\ | | | | gl_state: Fix state management for texture swizzle.
| * gl_state: Fix state management for texture swizzle.bunnei2018-06-261-1/+1
| |
* | gl_rasterizer_cache: Fix inverted B5G6R5 format.bunnei2018-06-261-1/+1
|/
* Build: Fixed some MSVC warnings in various parts of the code.Subv2018-06-201-1/+1
|
* gl_rasterizer: Implement texture format ASTC_2D_4X4.bunnei2018-06-181-1/+27
|
* gl_rasterizer_cache: Loosen things up a bit.bunnei2018-06-181-26/+8
|
* GLCache: Align compressed texture sizes to their compression ratio, and then align that compressed size to the block height for tiled textures.Subv2018-06-081-2/+7
| | | | This fixes issues with retrieving non-block-aligned tiled compressed textures from the cache.
* GLCache: Use the full uncompressed size when blitting from one texture to another.Subv2018-06-071-3/+6
| | | | This avoids the problem of only copying a tiny piece of the textures when they are compressed.
* GLCache: Simplify the logic to copy from one texture to another in BlitTextures.Subv2018-06-071-53/+3
| | | | | | We now use glCopyImageSubData, this should avoid errors with trying to attach a compressed texture as a framebuffer's color attachment and then blitting to it. Maybe in the future we can change this to glCopyTextureSubImage which only requires GL_ARB_direct_state_access.
* GPU: Implemented the R11FG11FB10F texture and rendertarget formats.Subv2018-06-061-7/+12
|
* GLCache: Corrected a mismatch between storing compressed sizes and verifying the uncompressed alignment in GetSurface.Subv2018-06-041-1/+2
|
* GPU: Implemented the DXN1 (BC4) texture format.Subv2018-06-021-2/+4
|
* gl_rasterizer_cache: Assert that component type is UNorm or format is RGBA16F.bunnei2018-05-311-1/+2
|
* gl_rasterizer_cache: Implement PixelFormat RGBA16F.bunnei2018-05-311-3/+5
|
* Merge pull request #483 from bunnei/sonicSebastian Valle2018-05-301-1/+1
|\ | | | | Several GPU fixes to boot Sonic Mania
| * gl_rasterize_cache: Invert order of tex format RGB565.bunnei2018-05-301-1/+1
| |
* | GPU: Implemented the R8 texture format (0x1D)Subv2018-05-301-2/+4
|/
* GPU: Implemented the A1B5G5R5 texture format (0x14)Subv2018-05-271-2/+5
|
* gl_rasterizer_cache: Use CHAR_BIT for bpp conversions instead of 8.bunnei2018-04-251-3/+3
|
* gl_rasterizer_cache: Use GPU PAGE_BITS/SIZE, not CPU.bunnei2018-04-251-5/+5
|
* gl_rasterizer_cache: Use new logger.bunnei2018-04-251-4/+4
|
* gl_rasterizer_cache: Add a function for finding framebuffer GPU address.bunnei2018-04-251-0/+27
|
* gl_rasterizer_cache: Handle compressed texture sizes.bunnei2018-04-251-20/+17
|
* gl_rasterizer_cache: Update to be based on GPU addresses, not CPU addresses.bunnei2018-04-251-24/+39
|
* memory_manager: Make GpuToCpuAddress return an optional.bunnei2018-04-241-2/+2
|
* memory_manager: Use GPUVAdddr, not PAddr, for GPU addresses.bunnei2018-04-241-2/+2
|
* GPU: Implement the A2BGR10 texture format.Subv2018-04-221-3/+5
|
* Merge pull request #375 from lioncash/headerbunnei2018-04-211-2/+0
|\ | | | | opengl: Remove unnecessary header inclusions
| * opengl: Remove unnecessary header inclusionsLioncash2018-04-211-2/+0
| |
* | gl_rasterizer_cache: Make MatchFlags an enum classLioncash2018-04-211-4/+9
|/ | | | Prevents implicit conversions and scope pollution.
* math_util: Remove the Clamp() functionLioncash2018-04-201-4/+4
| | | | | C++17 adds clamp() to the standard library, so we can remove ours in favor of it.
* GPU: Add support for the DXT23 and DXT45 compressed texture formats.Subv2018-04-191-24/+11
|
* GPU: Implemented the B5G6R5 format.Subv2018-04-191-5/+10
|
* GLCache: Added boilerplate code to make supporting configurable texture component types.Subv2018-04-181-9/+23
| | | | For now only the UNORM type is supported.
* GLCache: Unify texture and framebuffer formats when converting to OpenGL.Subv2018-04-181-13/+6
|
* GPU: Texture format 8 and framebuffer format 0xD5 are actually ABGR8.Subv2018-04-181-3/+3
|
* GLCache: Take into account the texture's block height when caching and unswizzling.Subv2018-04-181-42/+40
|
* GPU: Allow using a configurable block height when unswizzling textures.Subv2018-04-181-1/+10
|
* renderer_opengl: Use OGLProgram instead of OGLShader.bunnei2018-04-141-1/+1
|
* Fix clang format issuesJames Rowe2018-04-071-1/+1
|
* GLCache: Specialize the MortonCopy function for the DXT1 texture format.Subv2018-04-071-1/+15
| | | | It will now use the UnswizzleTexture function instead of the MortonCopyPixels128, which doesn't seem to work for textures.
* GLCache: Implemented GetTextureSurface.Subv2018-04-071-3/+28
|
* GLCache: Support uploading compressed textures to the GPU.Subv2018-04-071-5/+17
| | | | Compressed texture formats like DXT1, DXT2, DXT3, etc will use this to ease the load on the CPU.
* GL: Remove remaining references to 3DS-specific pixel formatsSubv2018-04-071-83/+22
|
* RasterizerCache: Remove 3DS-specific pixel formats.Subv2018-04-071-12/+2
| | | | We're only left with RGB8 and DXT1 for now. More will be added as they are needed.
* gl_rasterizer_cache.cpp: Update from citra to yuzuN00byKing2018-04-041-1/+1
|
* gl_rasterizer_cache: Implement UpdatePagesCachedCount.bunnei2018-03-271-7/+36
|
* gl_rasterizer_cache: Fix an ASSERT_MSG.bunnei2018-03-271-1/+1
|
* gl_rasterizer_cache: MortonCopy Switch-style.bunnei2018-03-271-72/+32
|
* gl_rasterizer_cache: Implement GetFramebufferSurfaces.bunnei2018-03-271-3/+94
|
* gl_rasterizer_cache: Add missing include for vm_manager.bunnei2018-03-231-0/+1
|
* RasterizerCacheOpenGL: FlushAll should flush full memory region.bunnei2018-03-231-1/+1
|
* LoadGLBuffer: Use bytes_per_pixel, not bits.bunnei2018-03-231-1/+2
|
* gl_rasterizer_cache: LoadGLBuffer should do a morton copy.bunnei2018-03-231-16/+5
|
* video_core: Remove usage of PAddr and replace with VAddr.bunnei2018-03-231-18/+18
|
* gl_rasterizer: Replace a bunch of UNIMPLEMENTED with ASSERT.bunnei2018-03-231-5/+5
|
* renderer_gl: Port boilerplate rasterizer code over from Citra.bunnei2018-03-201-1/+0
|
* renderer_gl: Port over gl_rasterizer_cache module from Citra.bunnei2018-03-201-0/+1362
|
* Remove references to PICA and rasterizers in video_coreJames Rowe2018-01-131-799/+0
|
* gl_rasterizer_cache: depth write is disabled if allow_depth_stencil_write is falsewwylele2017-06-101-4/+5
|
* Move screen size constants from video_core to coreYuri Kunde Schlesner2017-05-281-12/+8
| | | | | video_core didn't even properly use them, and they were the source of many otherwise-unnecessary dependencies from core to video_core.
* Input: remove unused stuff & clean upwwylele2017-03-011-0/+1
| | | | | | | 1. removed zl, zr and c-stick from HID::PadState. They are handled by IR, not HID 2. removed button handling in EmuWindow 3. removed key_map 4. cleanup #include
* VideoCore: Split framebuffer regs from Regs structYuri Kunde Schlesner2017-02-041-5/+8
|
* VideoCore: Split texturing regs from Regs structYuri Kunde Schlesner2017-02-041-2/+2
|
* Pica/Texture: Simplify/cleanup texture tile addressingYuri Kunde Schlesner2017-02-041-2/+1
|
* VideoCore: Move LookupTexture out of debug_utils.hYuri Kunde Schlesner2017-02-041-5/+6
|
* video_core: gl_rasterizer_cache.cpp removed unused type aliasKloen2017-01-301-1/+0
|
* config: Add option for specifying screen resolution scale factor.bunnei2017-01-071-3/+10
|
* core: Move emu_window and key_map into coreMerryMage2016-12-231-1/+1
| | | | * Removes circular dependences (common should not depend on core)
* OpenGL: Drop framebuffer completeness check.Markus Wick2016-12-071-14/+7
| | | | | | | This OpenGL call synchronize the worker thread of the nvidia blob. It can be verified on linux with the __GL_THREADED_OPTIMIZATIONS=1 environment variable. Those errors should not happen on tested drivers. It was used as a workaround for https://bugs.freedesktop.org/show_bug.cgi?id=94148
* OpenGL: Non-zero stride only makes sense for linear buffersYuri Kunde Schlesner2016-12-041-5/+8
|
* OpenGL: Ensure framebuffer binding is restored if completion check failsYuri Kunde Schlesner2016-12-041-10/+7
|
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-5/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-2/+2
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-98/+187
|
* VideoCore: Run include-what-you-use and fix most includes.Emmanuel Gil Peyrot2016-04-301-2/+11
|
* HWRasterizer: Texture forwardingtfarley2016-04-211-38/+661
|
* Common: Remove Common::make_unique, use std::make_uniqueMerryMage2016-04-051-2/+3
|
* OpenGL: Rename cache functions to better match what they actually doYuri Kunde Schlesner2015-12-071-4/+3
|
* video_core: Reorganize headersLioncash2015-09-111-1/+1
|
* OpenGL: Use Sampler Objects to decouple sampler config from texturesYuri Kunde Schlesner2015-09-031-20/+5
| | | | Fixes #978
* OpenGL: Remove ugly and endian-unsafe color pointer castsYuri Kunde Schlesner2015-09-031-1/+1
|
* gl_rasterizer_cache: Detect and ignore unnecessary texture flushes.bunnei2015-08-281-5/+13
|
* Integrate the MicroProfile profiling libraryYuri Kunde Schlesner2015-08-251-0/+5
| | | | | This brings goodies such as a configurable user interface and multi-threaded timeline view.
* OpenGL: Fix state tracking in situations with reused object handlesYuri Kunde Schlesner2015-08-061-0/+1
| | | | | | | | | | | | If an OpenGL object is created, bound to a binding using the state tracker, and then destroyed, a newly created object can be assigned the same numeric handle by OpenGL. However, even though it is a new object, and thus needs to be bound to the binding again, the state tracker compared the current and previous handles and concluded that no change needed to be made, leading to failure to bind objects in certain cases. This manifested as broken text in VVVVVV, which this commit fixes along with similar texturing problems in other games.
* Rasterizer/GL: Set the border color when binding a texture.Subv2015-07-231-2/+9
|
* GPU: Added registers for min and mag texture filters and implemented them in the hw renderer.Subv2015-07-211-3/+2
|
* Move video_core/math.h to common/vector_math.harchshift2015-05-301-1/+1
| | | | The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
* OpenGL renderertfarley2015-05-231-0/+77