| Age | Commit message (Collapse) | Author |
|
|
|
GPU: Implemented the Z32_S8_X24 depth buffer format.
|
|
GPU: Allow using Z32 as a texture format.
|
|
GPU: Allow the usage of R8 as a render target format.
|
|
gl_rasterizer: Minor cleanup
|
|
|
|
|
|
|
|
|
|
This is just the named constant that OpenGL provides, so we can use that
instead of using a literal -1
|
|
extensions
We can avoid heap allocations here by just using a std::string_view
instead of performing unnecessary copying of the string data.
|
|
We can just assign to the members directly in these cases.
|
|
GPU: Implement texture format R32F.
|
|
maxwell_to_gl: Implement VertexAttribute::Type::UnsignedInt.
|
|
|
|
|
|
|
|
gl_rasterizer_cache: Implement formats BGRA8_UNORM/RGBA32_FLOAT/RG32_FLOAT
|
|
|
|
gl_shader_decompiler: Correct return value of WriteTexsInstruction()
|
|
gl_shader_decompiler: Print instruction value in shader comments.
|
|
gl_shader_decompiler: Check if SetRegister result is ZeroIndex.
|
|
This should be returning void, not a std::string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AddSubroutine()
We don't need to toss away the Subroutine instance after the find() call
and reconstruct another instance with the same data right after it.
Particularly give Subroutine contains a std::set.
|
|
gl_shader_decompiler: Remove unused state tracking and minor cleanup.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
video_core: Use nested namespaces where applicable
|
|
gl_shader_manager: Remove unimplemented function prototype
|
|
This was just a linker error waiting to happen.
|
|
This makes it match its const qualified equivalent.
|
|
Compresses a few namespace specifiers to be more compact.
|
|
gl_state: Get rid of mismatched sign conversions in Apply()
|
|
gl_shader_decompiler: Eliminate variable and declaration shadowing
|
|
|
|
While we're at it, amend the loop variable type to be the same width as
that returned by the .size() call.
|
|
Ensures that no identifiers are being hidden, which also reduces
compiler warnings.
|
|
This adds nothing from a behavioral point of view, and can inhibit the
move constructor/RVO
|