summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/maxwell_to_vk.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* maxwell_to_vk: Add uint16 vertex formatsReinUsesLisp2020-04-151-0/+8
|
* maxwell_to_vk: Add missing breaksReinUsesLisp2020-04-151-0/+2
| | | | Avoid invalid fallbacks.
* renderer_vulkan: Drop Vulkan-HppReinUsesLisp2020-04-111-260/+263
|
* maxwell_to_vk: implement signedscaled vertex formatsDan2020-03-271-0/+20
|
* maxwell_to_vk: Sielence -Wswitch warningReinUsesLisp2020-03-191-0/+2
|
* Merge pull request #3519 from ReinUsesLisp/int-formatsMat M2020-03-171-0/+4
|\ | | | | maxwell_to_vk: Implement RG32 and RGB32 integer vertex formats
| * maxwell_to_vk: Implement RG32 and RGB32 integer vertex formatsReinUsesLisp2020-03-151-0/+4
| |
* | Merge pull request #3501 from ReinUsesLisp/rgba16-snormRodrigo Locatti2020-03-161-0/+1
|\ \ | | | | | | video_core: Implement RGBA16_SNORM
| * | video_core: Implement RGBA16_SNORMReinUsesLisp2020-03-131-0/+1
| |/ | | | | | | Implement RGBA16_SNORM with the current API. Nothing special here.
* | fix formattingmakigumo2020-03-131-1/+1
| |
* | maxwell_to_vk: add vertex format eA2B10G10R10UnormPack32makigumo2020-03-131-1/+3
|/
* Merge pull request #3301 from ReinUsesLisp/state-trackerRodrigo Locatti2020-03-091-7/+7
|\ | | | | video_core: Remove gl_state and use a state tracker based on dirty flags
| * maxwell_3d: Flatten cull and front face registersReinUsesLisp2020-02-281-7/+7
| |
* | maxwell_to_vk: Remove Storage capability for A1B5G5R5UReinUsesLisp2020-03-061-1/+1
| |
* | Merge pull request #3455 from ReinUsesLisp/attr-scaledbunnei2020-03-041-0/+14
|\ \ | |/ |/| video_core: Implement more scaled attribute formats
| * video_core: Implement more scaler attribute formatsReinUsesLisp2020-02-241-0/+14
| | | | | | | | | | While changing this, fix assert in vk_shader_decompiler. We now know scaled formats are expected to be float in shaders attributes.
* | Merge pull request #3417 from ReinUsesLisp/r32ibunnei2020-02-251-0/+1
|\ \ | |/ |/| texture: Implement R32I
| * texture: Implement R32IReinUsesLisp2020-02-151-0/+1
| |
* | add vertex UnsignedInt size RGBANguyen Dac Nam2020-02-181-0/+2
| |
* | vulkan: add DXT23_SRGBNguyen Dac Nam2020-02-181-1/+1
|/
* maxwell_to_vk: Implement GL_CLAMP hacking Nvidia's driverReinUsesLisp2020-01-101-2/+7
| | | | | | Nvidia's driver defaults invalid enumerations to GL_CLAMP. Vulkan doesn't expose GL_CLAMP through its API, but we can hack it on Nvidia's driver using the internal driver defaults.
* maxwell_to_vk: Improve image format table and add more formatsReinUsesLisp2019-12-131-86/+120
| | | | | | A1B5G5R5 uses A1R5G5B5. This is flipped with image view swizzles; flushing is still not properly implemented on Vulkan for this particular format.
* maxwell_to_vk: Implement more vertex formatsReinUsesLisp2019-12-131-7/+81
|
* maxwell_to_vk: Implement more primitive topologiesReinUsesLisp2019-12-131-1/+9
| | | | | | Add an extra argument to query device capabilities in the future. The intention behind this is to use native quads, quad strips, line loops and polygons if these are released for Vulkan.
* maxwell_to_vk: Approach GL_CLAMP closer to the GL specReinUsesLisp2019-12-131-5/+11
| | | | | | | The OpenGL spec defines GL_CLAMP's formula similarly to CLAMP_TO_EDGE and CLAMP_TO_BORDER depending on the filter mode used. It doesn't exactly behave like this, but it's the closest we can get with what Vulkan offers without emulating it by injecting shader code.
* maxwell_to_vk: Use VK_EXT_index_type_uint8 when availableReinUsesLisp2019-12-131-3/+6
|
* video_core: Unify ProgramType and ShaderStage into ShaderTypeReinUsesLisp2019-11-231-6/+8
|
* texture_cache: Drop abstracted ComponentTypeReinUsesLisp2019-11-141-72/+70
| | | | | | | | | Abstracted ComponentType was not being used in a meaningful way. This commit drops its usage. There is one place where it was being used to test compatibility between two cached surfaces, but this one is implied in the pixel format. Removing the component type test doesn't change the behaviour.
* video_core: Implement RGBX16F PixelFormatFearlessTobi2019-09-221-0/+1
|
* maxwell_to_gl: Use GL_CLAMP to emulate Clamp wrap modeReinUsesLisp2019-05-301-1/+1
|
* video_core: Silent -Wswitch warningsReinUsesLisp2019-04-181-4/+6
|
* maxwell_to_vk: Initial implementationReinUsesLisp2019-03-041-0/+483