forked from ShuriZma/suyu
1
0
Fork 0

metal: bind sampler to shader

This commit is contained in:
Samuliak 2024-04-09 18:52:25 +02:00
parent 1a284e4bb7
commit f5830983be
No known key found for this signature in database
3 changed files with 24 additions and 15 deletions

View File

@ -65,9 +65,8 @@ void GraphicsPipeline::Configure(bool is_indexed) {
// Find resources // Find resources
size_t stage = 4; size_t stage = 4;
// const auto& cbufs{maxwell3d->state.shader_stages[stage].const_buffers}; const auto& cbufs{maxwell3d->state.shader_stages[stage].const_buffers};
const auto read_handle{[&](const auto& desc, u32 index) { const auto read_handle{[&](const auto& desc, u32 index) {
/*
ASSERT(cbufs[desc.cbuf_index].enabled); ASSERT(cbufs[desc.cbuf_index].enabled);
const u32 index_offset{index << desc.size_shift}; const u32 index_offset{index << desc.size_shift};
const u32 offset{desc.cbuf_offset + index_offset}; const u32 offset{desc.cbuf_offset + index_offset};
@ -83,25 +82,32 @@ void GraphicsPipeline::Configure(bool is_indexed) {
const u32 rhs_raw{gpu_memory->Read<u32>(separate_addr) const u32 rhs_raw{gpu_memory->Read<u32>(separate_addr)
<< desc.secondary_shift_left}; << desc.secondary_shift_left};
const u32 raw{lhs_raw | rhs_raw}; const u32 raw{lhs_raw | rhs_raw};
return TexturePair(raw, false); return TexturePair(raw, false);
} }
} }
*/ auto a = gpu_memory->Read<u32>(addr);
// HACK: hardcode the texture address // HACK: hardcode the image
return TexturePair(/*gpu_memory->Read<u32>(addr)*/ 310378932, false); if (a != 310378932)
a = 310378932;
return TexturePair(a, false);
}}; }};
const Shader::Info& info{stage_infos[stage]}; const Shader::Info& info{stage_infos[stage]};
std::array<VideoCommon::ImageViewInOut, 32> views; std::array<VideoCommon::ImageViewInOut, 32> views;
std::array<VideoCommon::SamplerId, 32> samplers;
size_t view_index{}; size_t view_index{};
size_t sampler_index{};
for (const auto& desc : info.texture_descriptors) { for (const auto& desc : info.texture_descriptors) {
for (u32 index = 0; index < desc.count; ++index) { for (u32 index = 0; index < desc.count; ++index) {
const auto handle{read_handle(desc, index)}; const auto handle{read_handle(desc, index)};
views[view_index++] = { views[view_index++] = {handle.first};
.index = handle.first,
.blacklist = false, VideoCommon::SamplerId sampler{texture_cache.GetGraphicsSamplerId(handle.second)};
.id = {}, samplers[sampler_index++] = sampler;
};
} }
} }
texture_cache.FillGraphicsImageViews<true>(std::span(views.data(), view_index)); texture_cache.FillGraphicsImageViews<true>(std::span(views.data(), view_index));
@ -119,11 +125,14 @@ void GraphicsPipeline::Configure(bool is_indexed) {
// Bind resources // Bind resources
// HACK: try to find a texture that we can bind // HACK: try to find a texture that we can bind
VideoCommon::ImageViewInOut* texture_buffer_it{views.data()}; const VideoCommon::ImageViewInOut* views_it{views.data()};
const VideoCommon::SamplerId* samplers_it{samplers.data()};
ImageView& image_view{texture_cache.GetImageView(texture_buffer_it->id)}; 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()->setFragmentTexture(image_view.GetHandle(), 0);
command_recorder.GetRenderCommandEncoder()->setFragmentSamplerState(sampler.GetHandle(), 0);
} }
void GraphicsPipeline::MakePipeline(MTL::RenderPassDescriptor* render_pass) { void GraphicsPipeline::MakePipeline(MTL::RenderPassDescriptor* render_pass) {

View File

@ -298,9 +298,7 @@ std::unique_ptr<GraphicsPipeline> PipelineCache::CreateGraphicsPipeline(
return out; return out;
} }
fragment float4 fragmentMain(VertexOut in [[stage_in]], texture2d<float> tex [[texture(0)]]) { fragment float4 fragmentMain(VertexOut in [[stage_in]], texture2d<float> tex [[texture(0)]], sampler samplr [[sampler(0)]]) {
constexpr sampler samplr(mip_filter::linear, mag_filter::linear, min_filter::linear);
return tex.sample(samplr, in.texCoord); return tex.sample(samplr, in.texCoord);
} }
)", )",

View File

@ -48,6 +48,8 @@ void RasterizerMetal::Draw(bool is_indexed, u32 instance_count) {
if (!pipeline) { if (!pipeline) {
return; return;
} }
// Set the engine
pipeline->SetEngine(maxwell3d, gpu_memory);
pipeline->Configure(is_indexed); pipeline->Configure(is_indexed);
// HACK: dummy draw call // HACK: dummy draw call