Comparer les révisions

...

4 Révisions

Auteur SHA1 Message Date
Samuliak 8ff1ce68c3
metal: flip y texture coordinate 2024-04-10 19:55:56 +02:00
Samuliak e3ab4c6349
metal: minimalize texture hardcoding 2024-04-10 17:41:45 +02:00
Samuliak 98c4ff461f
metal: don't bind resources that are already bound 2024-04-10 17:20:24 +02:00
Samuliak 4771cd1602
fix(metal): fix incorrect size in buffer to image copy 2024-04-10 17:03:55 +02:00
8 fichiers modifiés avec 249 ajouts et 139 suppressions

Voir le fichier

@ -7,122 +7,142 @@
#include "video_core/engines/maxwell_3d.h"
#include "video_core/surface.h"
#include "video_core/texture_cache/types.h"
namespace Metal::MaxwellToMTL {
using Maxwell = Tegra::Engines::Maxwell3D::Regs;
// TODO: replace some of the invalid formats with the correct ones and emulate those which don't map
// directly
constexpr std::array<MTL::PixelFormat, VideoCore::Surface::MaxPixelFormat> FORMAT_TABLE = {
MTL::PixelFormatInvalid, // A8B8G8R8_UNORM
MTL::PixelFormatInvalid, // A8B8G8R8_SNORM
MTL::PixelFormatInvalid, // A8B8G8R8_SINT
MTL::PixelFormatInvalid, // A8B8G8R8_UINT
MTL::PixelFormatInvalid, // R5G6B5_UNORM
MTL::PixelFormatB5G6R5Unorm, // B5G6R5_UNORM
MTL::PixelFormatInvalid, // A1R5G5B5_UNORM
MTL::PixelFormatRGBA8Unorm, // A2B10G10R10_UNORM (hack)
MTL::PixelFormatInvalid, // A2B10G10R10_UINT
MTL::PixelFormatInvalid, // A2R10G10B10_UNORM
MTL::PixelFormatInvalid, // A1B5G5R5_UNORM
MTL::PixelFormatInvalid, // A5B5G5R1_UNORM
MTL::PixelFormatR8Unorm, // R8_UNORM
MTL::PixelFormatR8Snorm, // R8_SNORM
MTL::PixelFormatR8Sint, // R8_SINT
MTL::PixelFormatR8Uint, // R8_UINT
MTL::PixelFormatRGBA16Float, // R16G16B16A16_FLOAT
MTL::PixelFormatRGBA16Unorm, // R16G16B16A16_UNORM
MTL::PixelFormatRGBA16Snorm, // R16G16B16A16_SNORM
MTL::PixelFormatRGBA16Sint, // R16G16B16A16_SINT
MTL::PixelFormatRGBA16Uint, // R16G16B16A16_UINT
MTL::PixelFormatInvalid, // B10G11R11_FLOAT
MTL::PixelFormatRGBA32Uint, // R32G32B32A32_UINT
MTL::PixelFormatBC1_RGBA, // BC1_RGBA_UNORM
MTL::PixelFormatInvalid, // BC2_UNORM
MTL::PixelFormatInvalid, // BC3_UNORM
MTL::PixelFormatBC4_RUnorm, // BC4_UNORM
MTL::PixelFormatBC4_RSnorm, // BC4_SNORM
MTL::PixelFormatInvalid, // BC5_UNORM
MTL::PixelFormatInvalid, // BC5_SNORM
MTL::PixelFormatInvalid, // BC7_UNORM
MTL::PixelFormatInvalid, // BC6H_UFLOAT
MTL::PixelFormatInvalid, // BC6H_SFLOAT
MTL::PixelFormatASTC_4x4_LDR, // ASTC_2D_4X4_UNORM
MTL::PixelFormatBGRA8Unorm, // B8G8R8A8_UNORM
MTL::PixelFormatRGBA32Float, // R32G32B32A32_FLOAT
MTL::PixelFormatRGBA32Sint, // R32G32B32A32_SINT
MTL::PixelFormatRG32Float, // R32G32_FLOAT
MTL::PixelFormatRG32Sint, // R32G32_SINT
MTL::PixelFormatR32Float, // R32_FLOAT
MTL::PixelFormatR16Float, // R16_FLOAT
MTL::PixelFormatR16Unorm, // R16_UNORM
MTL::PixelFormatR16Snorm, // R16_SNORM
MTL::PixelFormatR16Uint, // R16_UINT
MTL::PixelFormatR16Sint, // R16_SINT
MTL::PixelFormatRG16Unorm, // R16G16_UNORM
MTL::PixelFormatRG16Float, // R16G16_FLOAT
MTL::PixelFormatRG16Uint, // R16G16_UINT
MTL::PixelFormatRG16Sint, // R16G16_SINT
MTL::PixelFormatRG16Snorm, // R16G16_SNORM
MTL::PixelFormatInvalid, // R32G32B32_FLOAT
MTL::PixelFormatRGBA8Unorm, // A8B8G8R8_SRGB (hack)
MTL::PixelFormatRG8Unorm, // R8G8_UNORM
MTL::PixelFormatRG8Snorm, // R8G8_SNORM
MTL::PixelFormatRG8Sint, // R8G8_SINT
MTL::PixelFormatRG8Uint, // R8G8_UINT
MTL::PixelFormatRG32Uint, // R32G32_UINT
MTL::PixelFormatInvalid, // R16G16B16X16_FLOAT
MTL::PixelFormatR32Uint, // R32_UINT
MTL::PixelFormatR32Sint, // R32_SINT
MTL::PixelFormatASTC_8x8_LDR, // ASTC_2D_8X8_UNORM
MTL::PixelFormatASTC_8x5_LDR, // ASTC_2D_8X5_UNORM
MTL::PixelFormatASTC_5x4_LDR, // ASTC_2D_5X4_UNORM
MTL::PixelFormatBGRA8Unorm_sRGB, // B8G8R8A8_SRGB
MTL::PixelFormatBC1_RGBA_sRGB, // BC1_RGBA_SRGB
MTL::PixelFormatInvalid, // BC2_SRGB
MTL::PixelFormatInvalid, // BC3_SRGB
MTL::PixelFormatBC7_RGBAUnorm_sRGB, // BC7_SRGB
MTL::PixelFormatABGR4Unorm, // A4B4G4R4_UNORM
MTL::PixelFormatInvalid, // G4R4_UNORM
MTL::PixelFormatASTC_4x4_sRGB, // ASTC_2D_4X4_SRGB
MTL::PixelFormatASTC_8x8_sRGB, // ASTC_2D_8X8_SRGB
MTL::PixelFormatASTC_8x5_sRGB, // ASTC_2D_8X5_SRGB
MTL::PixelFormatASTC_5x4_sRGB, // ASTC_2D_5X4_SRGB
MTL::PixelFormatASTC_5x5_LDR, // ASTC_2D_5X5_UNORM
MTL::PixelFormatASTC_5x5_sRGB, // ASTC_2D_5X5_SRGB
MTL::PixelFormatASTC_10x8_LDR, // ASTC_2D_10X8_UNORM
MTL::PixelFormatASTC_10x8_sRGB, // ASTC_2D_10X8_SRGB
MTL::PixelFormatASTC_6x6_LDR, // ASTC_2D_6X6_UNORM
MTL::PixelFormatASTC_6x6_sRGB, // ASTC_2D_6X6_SRGB
MTL::PixelFormatASTC_10x6_LDR, // ASTC_2D_10X6_UNORM
MTL::PixelFormatASTC_10x6_sRGB, // ASTC_2D_10X6_SRGB
MTL::PixelFormatASTC_10x5_LDR, // ASTC_2D_10X5_UNORM
MTL::PixelFormatASTC_10x5_sRGB, // ASTC_2D_10X5_SRGB
MTL::PixelFormatASTC_10x10_LDR, // ASTC_2D_10X10_UNORM
MTL::PixelFormatASTC_10x10_sRGB, // ASTC_2D_10X10_SRGB
MTL::PixelFormatASTC_12x10_LDR, // ASTC_2D_12X10_UNORM
MTL::PixelFormatASTC_12x10_sRGB, // ASTC_2D_12X10_SRGB
MTL::PixelFormatASTC_12x12_LDR, // ASTC_2D_12X12_UNORM
MTL::PixelFormatASTC_12x12_sRGB, // ASTC_2D_12X12_SRGB
MTL::PixelFormatASTC_8x6_LDR, // ASTC_2D_8X6_UNORM
MTL::PixelFormatASTC_8x6_sRGB, // ASTC_2D_8X6_SRGB
MTL::PixelFormatASTC_6x5_LDR, // ASTC_2D_6X5_UNORM
MTL::PixelFormatASTC_6x5_sRGB, // ASTC_2D_6X5_SRGB
MTL::PixelFormatInvalid, // E5B9G9R9_FLOAT
MTL::PixelFormatDepth32Float, // D32_FLOAT
MTL::PixelFormatDepth16Unorm, // D16_UNORM
MTL::PixelFormatInvalid, // X8_D24_UNORM
MTL::PixelFormatStencil8, // S8_UINT
MTL::PixelFormatDepth24Unorm_Stencil8, // D24_UNORM_S8_UINT
MTL::PixelFormatInvalid, // S8_UINT_D24_UNORM
MTL::PixelFormatDepth32Float_Stencil8, // D32_FLOAT_S8_UINT
struct PixelFormatInfo {
MTL::PixelFormat pixel_format;
size_t bytes_per_block;
VideoCommon::Extent2D block_texel_size{1, 1};
};
inline MTL::PixelFormat GetPixelFormat(VideoCore::Surface::PixelFormat pixel_format) {
// TODO: replace some of the invalid formats with the correct ones and emulate those which don't map
// directly
// TODO: set the sizes of other formats as well
constexpr std::array<PixelFormatInfo, VideoCore::Surface::MaxPixelFormat> FORMAT_TABLE = {{
{MTL::PixelFormatInvalid, 0}, // A8B8G8R8_UNORM
{MTL::PixelFormatInvalid, 0}, // A8B8G8R8_SNORM
{MTL::PixelFormatInvalid, 0}, // A8B8G8R8_SINT
{MTL::PixelFormatInvalid, 0}, // A8B8G8R8_UINT
{MTL::PixelFormatInvalid, 0}, // R5G6B5_UNORM
{MTL::PixelFormatB5G6R5Unorm, 2}, // B5G6R5_UNORM
{MTL::PixelFormatInvalid, 0}, // A1R5G5B5_UNORM
{MTL::PixelFormatRGBA8Unorm, 4}, // A2B10G10R10_UNORM (hack)
{MTL::PixelFormatInvalid, 0}, // A2B10G10R10_UINT
{MTL::PixelFormatInvalid, 0}, // A2R10G10B10_UNORM
{MTL::PixelFormatInvalid, 0}, // A1B5G5R5_UNORM
{MTL::PixelFormatInvalid, 0}, // A5B5G5R1_UNORM
{MTL::PixelFormatR8Unorm, 1}, // R8_UNORM
{MTL::PixelFormatR8Snorm, 1}, // R8_SNORM
{MTL::PixelFormatR8Sint, 1}, // R8_SINT
{MTL::PixelFormatR8Uint, 1}, // R8_UINT
{MTL::PixelFormatRGBA16Float, 8}, // R16G16B16A16_FLOAT
{MTL::PixelFormatRGBA16Unorm, 8}, // R16G16B16A16_UNORM
{MTL::PixelFormatRGBA16Snorm, 8}, // R16G16B16A16_SNORM
{MTL::PixelFormatRGBA16Sint, 8}, // R16G16B16A16_SINT
{MTL::PixelFormatRGBA16Uint, 8}, // R16G16B16A16_UINT
{MTL::PixelFormatInvalid, 0}, // B10G11R11_FLOAT
{MTL::PixelFormatRGBA32Uint, 16}, // R32G32B32A32_UINT
{MTL::PixelFormatBC1_RGBA, 8, {4, 4}}, // BC1_RGBA_UNORM
{MTL::PixelFormatInvalid, 0}, // BC2_UNORM
{MTL::PixelFormatInvalid, 0}, // BC3_UNORM
{MTL::PixelFormatBC4_RUnorm, 8, {4, 4}}, // BC4_UNORM
{MTL::PixelFormatBC4_RSnorm, 0}, // BC4_SNORM
{MTL::PixelFormatInvalid, 0}, // BC5_UNORM
{MTL::PixelFormatInvalid, 0}, // BC5_SNORM
{MTL::PixelFormatInvalid, 0}, // BC7_UNORM
{MTL::PixelFormatInvalid, 0}, // BC6H_UFLOAT
{MTL::PixelFormatInvalid, 0}, // BC6H_SFLOAT
{MTL::PixelFormatASTC_4x4_LDR, 0}, // ASTC_2D_4X4_UNORM
{MTL::PixelFormatBGRA8Unorm, 4}, // B8G8R8A8_UNORM
{MTL::PixelFormatRGBA32Float, 16}, // R32G32B32A32_FLOAT
{MTL::PixelFormatRGBA32Sint, 16}, // R32G32B32A32_SINT
{MTL::PixelFormatRG32Float, 8}, // R32G32_FLOAT
{MTL::PixelFormatRG32Sint, 8}, // R32G32_SINT
{MTL::PixelFormatR32Float, 4}, // R32_FLOAT
{MTL::PixelFormatR16Float, 2}, // R16_FLOAT
{MTL::PixelFormatR16Unorm, 2}, // R16_UNORM
{MTL::PixelFormatR16Snorm, 2}, // R16_SNORM
{MTL::PixelFormatR16Uint, 2}, // R16_UINT
{MTL::PixelFormatR16Sint, 2}, // R16_SINT
{MTL::PixelFormatRG16Unorm, 4}, // R16G16_UNORM
{MTL::PixelFormatRG16Float, 4}, // R16G16_FLOAT
{MTL::PixelFormatRG16Uint, 4}, // R16G16_UINT
{MTL::PixelFormatRG16Sint, 4}, // R16G16_SINT
{MTL::PixelFormatRG16Snorm, 4}, // R16G16_SNORM
{MTL::PixelFormatInvalid, 0}, // R32G32B32_FLOAT
{MTL::PixelFormatRGBA8Unorm, 4}, // A8B8G8R8_SRGB
{MTL::PixelFormatRG8Unorm, 2}, // R8G8_UNORM
{MTL::PixelFormatRG8Snorm, 2}, // R8G8_SNORM
{MTL::PixelFormatRG8Sint, 2}, // R8G8_SINT
{MTL::PixelFormatRG8Uint, 2}, // R8G8_UINT
{MTL::PixelFormatRG32Uint, 8}, // R32G32_UINT
{MTL::PixelFormatInvalid, 0}, // R16G16B16X16_FLOAT
{MTL::PixelFormatR32Uint, 4}, // R32_UINT
{MTL::PixelFormatR32Sint, 4}, // R32_SINT
{MTL::PixelFormatASTC_8x8_LDR, 16, {8, 8}}, // ASTC_2D_8X8_UNORM
{MTL::PixelFormatASTC_8x5_LDR, 0}, // ASTC_2D_8X5_UNORM
{MTL::PixelFormatASTC_5x4_LDR, 0}, // ASTC_2D_5X4_UNORM
{MTL::PixelFormatBGRA8Unorm_sRGB, 0}, // B8G8R8A8_SRGB
{MTL::PixelFormatBC1_RGBA_sRGB, 0}, // BC1_RGBA_SRGB
{MTL::PixelFormatInvalid, 0}, // BC2_SRGB
{MTL::PixelFormatInvalid, 0}, // BC3_SRGB
{MTL::PixelFormatBC7_RGBAUnorm_sRGB, 0}, // BC7_SRGB
{MTL::PixelFormatABGR4Unorm, 0}, // A4B4G4R4_UNORM
{MTL::PixelFormatInvalid, 0}, // G4R4_UNORM
{MTL::PixelFormatASTC_4x4_sRGB, 16, {4, 4}}, // ASTC_2D_4X4_SRGB
{MTL::PixelFormatASTC_8x8_sRGB, 0}, // ASTC_2D_8X8_SRGB
{MTL::PixelFormatASTC_8x5_sRGB, 0}, // ASTC_2D_8X5_SRGB
{MTL::PixelFormatASTC_5x4_sRGB, 0}, // ASTC_2D_5X4_SRGB
{MTL::PixelFormatASTC_5x5_LDR, 0}, // ASTC_2D_5X5_UNORM
{MTL::PixelFormatASTC_5x5_sRGB, 0}, // ASTC_2D_5X5_SRGB
{MTL::PixelFormatASTC_10x8_LDR, 0}, // ASTC_2D_10X8_UNORM
{MTL::PixelFormatASTC_10x8_sRGB, 0}, // ASTC_2D_10X8_SRGB
{MTL::PixelFormatASTC_6x6_LDR, 0}, // ASTC_2D_6X6_UNORM
{MTL::PixelFormatASTC_6x6_sRGB, 0}, // ASTC_2D_6X6_SRGB
{MTL::PixelFormatASTC_10x6_LDR, 0}, // ASTC_2D_10X6_UNORM
{MTL::PixelFormatASTC_10x6_sRGB, 0}, // ASTC_2D_10X6_SRGB
{MTL::PixelFormatASTC_10x5_LDR, 0}, // ASTC_2D_10X5_UNORM
{MTL::PixelFormatASTC_10x5_sRGB, 0}, // ASTC_2D_10X5_SRGB
{MTL::PixelFormatASTC_10x10_LDR, 0}, // ASTC_2D_10X10_UNORM
{MTL::PixelFormatASTC_10x10_sRGB, 0}, // ASTC_2D_10X10_SRGB
{MTL::PixelFormatASTC_12x10_LDR, 0}, // ASTC_2D_12X10_UNORM
{MTL::PixelFormatASTC_12x10_sRGB, 0}, // ASTC_2D_12X10_SRGB
{MTL::PixelFormatASTC_12x12_LDR, 0}, // ASTC_2D_12X12_UNORM
{MTL::PixelFormatASTC_12x12_sRGB, 0}, // ASTC_2D_12X12_SRGB
{MTL::PixelFormatASTC_8x6_LDR, 0}, // ASTC_2D_8X6_UNORM
{MTL::PixelFormatASTC_8x6_sRGB, 0}, // ASTC_2D_8X6_SRGB
{MTL::PixelFormatASTC_6x5_LDR, 0}, // ASTC_2D_6X5_UNORM
{MTL::PixelFormatASTC_6x5_sRGB, 0}, // ASTC_2D_6X5_SRGB
{MTL::PixelFormatInvalid, 0}, // E5B9G9R9_FLOAT
{MTL::PixelFormatDepth32Float, 0}, // D32_FLOAT
{MTL::PixelFormatDepth16Unorm, 0}, // D16_UNORM
{MTL::PixelFormatInvalid, 0}, // X8_D24_UNORM
{MTL::PixelFormatStencil8, 0}, // S8_UINT
{MTL::PixelFormatDepth24Unorm_Stencil8, 0}, // D24_UNORM_S8_UINT
{MTL::PixelFormatInvalid, 0}, // S8_UINT_D24_UNORM
{MTL::PixelFormatDepth32Float_Stencil8, 0}, // D32_FLOAT_S8_UINT
}};
inline const PixelFormatInfo GetPixelFormatInfo(VideoCore::Surface::PixelFormat pixel_format) {
ASSERT(static_cast<size_t>(pixel_format) < FORMAT_TABLE.size());
return FORMAT_TABLE[static_cast<size_t>(pixel_format)];
}
inline u32 CeilDivide(u32 a, u32 b) {
return (a + b - 1) / b;
}
inline size_t GetTextureBytesPerRow(VideoCore::Surface::PixelFormat pixel_format,
u32 texels_per_row) {
const auto& format_info = GetPixelFormatInfo(pixel_format);
return CeilDivide(texels_per_row, format_info.block_texel_size.width) *
format_info.bytes_per_block;
}
} // namespace Metal::MaxwellToMTL

Voir le fichier

@ -11,12 +11,12 @@ CommandRecorder::CommandRecorder(const Device& device_) : device(device_) {}
CommandRecorder::~CommandRecorder() = default;
void CommandRecorder::BeginOrContinueRenderPass(MTL::RenderPassDescriptor* render_pass) {
if (render_pass != bound_render_pass) {
if (render_pass != render_state.render_pass) {
RequireCommandBuffer();
EndEncoding();
encoder = command_buffer->renderCommandEncoder(render_pass);
encoder_type = EncoderType::Render;
bound_render_pass = render_pass;
render_state.render_pass = render_pass;
}
}
@ -43,7 +43,9 @@ void CommandRecorder::EndEncoding() {
encoder->endEncoding();
//[encoder release];
encoder = nullptr;
bound_render_pass = nullptr;
if (encoder_type == EncoderType::Render) {
render_state = {};
}
}
}

Voir le fichier

@ -12,6 +12,27 @@ class Device;
enum class EncoderType { Render, Compute, Blit };
constexpr size_t MAX_BUFFERS = 31;
constexpr size_t MAX_TEXTURES = 31;
constexpr size_t MAX_SAMPLERS = 31;
struct RenderState {
MTL::RenderPassDescriptor* render_pass{nullptr};
MTL::RenderPipelineState* pipeline_state{nullptr};
MTL::Buffer* vertex_buffers[MAX_BUFFERS] = {nullptr};
MTL::Buffer* fragment_buffers[MAX_BUFFERS] = {nullptr};
MTL::Buffer* compute_buffers[MAX_BUFFERS] = {nullptr};
MTL::Texture* vertex_textures[MAX_TEXTURES] = {nullptr};
MTL::Texture* fragment_textures[MAX_TEXTURES] = {nullptr};
MTL::Texture* compute_textures[MAX_TEXTURES] = {nullptr};
MTL::SamplerState* vertex_sampler_states[MAX_SAMPLERS] = {nullptr};
MTL::SamplerState* fragment_sampler_states[MAX_SAMPLERS] = {nullptr};
MTL::SamplerState* compute_sampler_states[MAX_SAMPLERS] = {nullptr};
};
// TODO: whenever a render pass gets interrupted by either a compute or blit command and application
// then tries to perform a render command, begin the same render pass, but with all load actions set
// to "load"
@ -61,6 +82,77 @@ public:
return static_cast<MTL::BlitCommandEncoder*>(encoder);
}
// Render commands
inline void SetRenderPipelineState(MTL::RenderPipelineState* pipeline_state) {
if (pipeline_state != render_state.pipeline_state) {
GetRenderCommandEncoder()->setRenderPipelineState(pipeline_state);
render_state.pipeline_state = pipeline_state;
}
}
inline void SetVertexBuffer(MTL::Buffer* buffer, size_t index) {
if (buffer != render_state.vertex_buffers[index]) {
GetRenderCommandEncoder()->setVertexBuffer(buffer, index, 0);
render_state.vertex_buffers[index] = buffer;
}
}
inline void SetFragmentBuffer(MTL::Buffer* buffer, size_t index) {
if (buffer != render_state.fragment_buffers[index]) {
GetRenderCommandEncoder()->setFragmentBuffer(buffer, index, 0);
render_state.fragment_buffers[index] = buffer;
}
}
inline void SetComputeBuffer(MTL::Buffer* buffer, size_t index) {
if (buffer != render_state.compute_buffers[index]) {
GetComputeCommandEncoder()->setBuffer(buffer, index, 0);
render_state.compute_buffers[index] = buffer;
}
}
inline void SetVertexTexture(MTL::Texture* texture, size_t index) {
if (texture != render_state.vertex_textures[index]) {
GetRenderCommandEncoder()->setVertexTexture(texture, index);
render_state.vertex_textures[index] = texture;
}
}
inline void SetFragmentTexture(MTL::Texture* texture, size_t index) {
if (texture != render_state.fragment_textures[index]) {
GetRenderCommandEncoder()->setFragmentTexture(texture, index);
render_state.fragment_textures[index] = texture;
}
}
inline void SetComputeTexture(MTL::Texture* texture, size_t index) {
if (texture != render_state.compute_textures[index]) {
GetComputeCommandEncoder()->setTexture(texture, index);
render_state.compute_textures[index] = texture;
}
}
inline void SetVertexSamplerState(MTL::SamplerState* sampler_state, size_t index) {
if (sampler_state != render_state.vertex_sampler_states[index]) {
GetRenderCommandEncoder()->setVertexSamplerState(sampler_state, index);
render_state.vertex_sampler_states[index] = sampler_state;
}
}
inline void SetFragmentSamplerState(MTL::SamplerState* sampler_state, size_t index) {
if (sampler_state != render_state.fragment_sampler_states[index]) {
GetRenderCommandEncoder()->setFragmentSamplerState(sampler_state, index);
render_state.fragment_sampler_states[index] = sampler_state;
}
}
inline void SetComputeSamplerState(MTL::SamplerState* sampler_state, size_t index) {
if (sampler_state != render_state.compute_sampler_states[index]) {
GetComputeCommandEncoder()->setSamplerState(sampler_state, index);
render_state.compute_sampler_states[index] = sampler_state;
}
}
private:
const Device& device;
@ -71,8 +163,8 @@ private:
EncoderType encoder_type;
// Keep track of last bound render pass
MTL::RenderPassDescriptor* bound_render_pass{nullptr};
// Keep track of bound resources
RenderState render_state{};
void RequireCommandBuffer();
};

Voir le fichier

@ -87,8 +87,8 @@ void GraphicsPipeline::Configure(bool is_indexed) {
}
}
auto a = gpu_memory->Read<u32>(addr);
// HACK: hardcode the image
if (a != 310378932)
// HACK: this particular texture breaks SMO
if (a == 310378931)
a = 310378932;
return TexturePair(a, false);
@ -120,7 +120,7 @@ void GraphicsPipeline::Configure(bool is_indexed) {
}
command_recorder.BeginOrContinueRenderPass(framebuffer->GetHandle());
command_recorder.GetRenderCommandEncoder()->setRenderPipelineState(pipeline_state);
command_recorder.SetRenderPipelineState(pipeline_state);
// Bind resources
@ -131,8 +131,8 @@ void GraphicsPipeline::Configure(bool is_indexed) {
ImageView& image_view{texture_cache.GetImageView(views_it->id)};
Sampler& sampler{texture_cache.GetSampler(*samplers_it)};
command_recorder.GetRenderCommandEncoder()->setFragmentTexture(image_view.GetHandle(), 0);
command_recorder.GetRenderCommandEncoder()->setFragmentSamplerState(sampler.GetHandle(), 0);
command_recorder.SetFragmentTexture(image_view.GetHandle(), 0);
command_recorder.SetFragmentSamplerState(sampler.GetHandle(), 0);
}
void GraphicsPipeline::MakePipeline(MTL::RenderPassDescriptor* render_pass) {

Voir le fichier

@ -279,10 +279,10 @@ std::unique_ptr<GraphicsPipeline> PipelineCache::CreateGraphicsPipeline(
#include <metal_stdlib>
using namespace metal;
constant float2 texCoords[] = {
float2(0.0, -1.0),
float2(0.0, 1.0),
float2(2.0, 1.0),
constant float2 positions[] = {
float2(-1.0, -3.0),
float2(-1.0, 1.0),
float2( 3.0, 1.0),
};
struct VertexOut {
@ -292,8 +292,9 @@ std::unique_ptr<GraphicsPipeline> PipelineCache::CreateGraphicsPipeline(
vertex VertexOut vertexMain(uint vid [[vertex_id]]) {
VertexOut out;
out.position = float4(texCoords[vid] * 2.0 - 1.0, 0.0, 1.0);
out.texCoord = texCoords[vid];
out.position = float4(positions[vid], 0.0, 1.0);
out.texCoord = positions[vid] * 0.5 + 0.5;
out.texCoord.y = 1.0 - out.texCoord.y;
return out;
}

Voir le fichier

@ -78,10 +78,6 @@ StagingBufferRef StagingBufferPool::GetStreamBuffer(size_t size) {
StagingBufferRef StagingBufferPool::GetStagingBuffer(size_t size, MemoryUsage usage,
bool deferred) {
if (const std::optional<StagingBufferRef> ref = TryGetReservedBuffer(size, usage, deferred)) {
return *ref;
}
return CreateStagingBuffer(size, usage, deferred);
}

Voir le fichier

@ -60,7 +60,7 @@ Image::Image(TextureCacheRuntime& runtime_, const ImageInfo& info, GPUVAddr gpu_
VAddr cpu_addr_)
: VideoCommon::ImageBase(info, gpu_addr_, cpu_addr_), runtime{&runtime_} {
MTL::TextureDescriptor* texture_descriptor = MTL::TextureDescriptor::alloc()->init();
texture_descriptor->setPixelFormat(MaxwellToMTL::GetPixelFormat(info.format));
texture_descriptor->setPixelFormat(MaxwellToMTL::GetPixelFormatInfo(info.format).pixel_format);
texture_descriptor->setWidth(info.size.width);
texture_descriptor->setHeight(info.size.height);
texture_descriptor->setDepth(info.size.depth);
@ -82,9 +82,7 @@ Image::~Image() {
void Image::UploadMemory(MTL::Buffer* buffer, size_t offset,
std::span<const VideoCommon::BufferImageCopy> copies) {
for (const VideoCommon::BufferImageCopy& copy : copies) {
// TODO: query this from texture format
size_t bytes_per_pixel = 4;
size_t bytes_per_row = info.size.width * bytes_per_pixel;
size_t bytes_per_row = MaxwellToMTL::GetTextureBytesPerRow(info.format, info.size.width);
size_t bytes_per_image = info.size.height * bytes_per_row;
MTL::Size size = MTL::Size::Make(info.size.width, info.size.height, 1);
MTL::Origin origin = MTL::Origin::Make(copy.image_offset.x, copy.image_offset.y,

Voir le fichier

@ -51,9 +51,9 @@ void RendererMetal::Composite(std::span<const Tegra::FramebufferConfig> framebuf
return;
}
MTL::Texture* src_texture = framebuffer->GetHandle()->colorAttachments()->object(0)->texture();
command_recorder.GetRenderCommandEncoder()->setRenderPipelineState(blit_pipeline_state);
command_recorder.GetRenderCommandEncoder()->setFragmentTexture(src_texture, 0);
command_recorder.GetRenderCommandEncoder()->setFragmentSamplerState(blit_sampler_state, 0);
command_recorder.SetRenderPipelineState(blit_pipeline_state);
command_recorder.SetFragmentTexture(src_texture, 0);
command_recorder.SetFragmentSamplerState(blit_sampler_state, 0);
// Draw a full screen triangle which will get clipped to a rectangle
command_recorder.GetRenderCommandEncoder()->drawPrimitives(MTL::PrimitiveTypeTriangle,
@ -80,10 +80,10 @@ void RendererMetal::CreateBlitPipelineState() {
#include <metal_stdlib>
using namespace metal;
constant float2 texCoords[] = {
float2(0.0, -1.0),
float2(0.0, 1.0),
float2(2.0, 1.0),
constant float2 positions[] = {
float2(-1.0, -3.0),
float2(-1.0, 1.0),
float2( 3.0, 1.0),
};
struct VertexOut {
@ -93,8 +93,9 @@ void RendererMetal::CreateBlitPipelineState() {
vertex VertexOut vertexMain(uint vid [[vertex_id]]) {
VertexOut out;
out.position = float4(texCoords[vid] * 2.0 - 1.0, 0.0, 1.0);
out.texCoord = texCoords[vid];
out.position = float4(positions[vid], 0.0, 1.0);
out.texCoord = positions[vid] * 0.5 + 0.5;
out.texCoord.y = 1.0 - out.texCoord.y;
return out;
}