summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Subv2018-03-26 15:46:49 -0500
committerGravatar Subv2018-03-26 15:46:49 -0500
commit4697025b73ff07e79cea9173cf5937267ec40328 (patch)
tree61071de7e8bdb04c4d895b63531b9e78641aa21d /src
parentGPU: Added the TSC structure. It contains information about the sampler. (diff)
downloadyuzu-4697025b73ff07e79cea9173cf5937267ec40328.tar.gz
yuzu-4697025b73ff07e79cea9173cf5937267ec40328.tar.xz
yuzu-4697025b73ff07e79cea9173cf5937267ec40328.zip
GPU: Load the sampler info (TSC) when retrieving active textures.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp80
-rw-r--r--src/video_core/engines/maxwell_3d.h8
2 files changed, 67 insertions, 21 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 986165c6d..088d4357e 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -294,8 +294,45 @@ void Maxwell3D::ProcessCBData(u32 value) {
294 regs.const_buffer.cb_pos = regs.const_buffer.cb_pos + 4; 294 regs.const_buffer.cb_pos = regs.const_buffer.cb_pos + 4;
295} 295}
296 296
297std::vector<Texture::TICEntry> Maxwell3D::GetStageTextures(Regs::ShaderStage stage) { 297Texture::TICEntry Maxwell3D::GetTICEntry(u32 tic_index) const {
298 std::vector<Texture::TICEntry> textures; 298 GPUVAddr tic_base_address = regs.tic.TICAddress();
299
300 GPUVAddr tic_address_gpu = tic_base_address + tic_index * sizeof(Texture::TICEntry);
301 VAddr tic_address_cpu = memory_manager.PhysicalToVirtualAddress(tic_address_gpu);
302
303 Texture::TICEntry tic_entry;
304 Memory::ReadBlock(tic_address_cpu, &tic_entry, sizeof(Texture::TICEntry));
305
306 ASSERT_MSG(tic_entry.header_version == Texture::TICHeaderVersion::BlockLinear,
307 "TIC versions other than BlockLinear are unimplemented");
308
309 ASSERT_MSG(tic_entry.texture_type == Texture::TextureType::Texture2D,
310 "Texture types other than Texture2D are unimplemented");
311
312 auto r_type = tic_entry.r_type.Value();
313 auto g_type = tic_entry.g_type.Value();
314 auto b_type = tic_entry.b_type.Value();
315 auto a_type = tic_entry.a_type.Value();
316
317 // TODO(Subv): Different data types for separate components are not supported
318 ASSERT(r_type == g_type && r_type == b_type && r_type == a_type);
319
320 return tic_entry;
321}
322
323Texture::TSCEntry Maxwell3D::GetTSCEntry(u32 tsc_index) const {
324 GPUVAddr tsc_base_address = regs.tsc.TSCAddress();
325
326 GPUVAddr tsc_address_gpu = tsc_base_address + tsc_index * sizeof(Texture::TSCEntry);
327 VAddr tsc_address_cpu = memory_manager.PhysicalToVirtualAddress(tsc_address_gpu);
328
329 Texture::TSCEntry tsc_entry;
330 Memory::ReadBlock(tsc_address_cpu, &tsc_entry, sizeof(Texture::TSCEntry));
331 return tsc_entry;
332}
333
334std::vector<Texture::FullTextureInfo> Maxwell3D::GetStageTextures(Regs::ShaderStage stage) const {
335 std::vector<Texture::FullTextureInfo> textures;
299 336
300 auto& fragment_shader = state.shader_stages[static_cast<size_t>(stage)]; 337 auto& fragment_shader = state.shader_stages[static_cast<size_t>(stage)];
301 auto& tex_info_buffer = fragment_shader.const_buffers[regs.tex_cb_index]; 338 auto& tex_info_buffer = fragment_shader.const_buffers[regs.tex_cb_index];
@@ -309,31 +346,34 @@ std::vector<Texture::TICEntry> Maxwell3D::GetStageTextures(Regs::ShaderStage sta
309 static constexpr size_t TextureInfoOffset = 0x20; 346 static constexpr size_t TextureInfoOffset = 0x20;
310 347
311 for (GPUVAddr current_texture = tex_info_buffer.address + TextureInfoOffset; 348 for (GPUVAddr current_texture = tex_info_buffer.address + TextureInfoOffset;
312 current_texture < tex_info_buffer_end; current_texture += 4) { 349 current_texture < tex_info_buffer_end; current_texture += sizeof(Texture::TextureHandle)) {
313 350
314 Texture::TextureHandle tex_info{ 351 Texture::TextureHandle tex_handle{
315 Memory::Read32(memory_manager.PhysicalToVirtualAddress(current_texture))}; 352 Memory::Read32(memory_manager.PhysicalToVirtualAddress(current_texture))};
316 353
317 if (tex_info.tic_id != 0 || tex_info.tsc_id != 0) { 354 Texture::FullTextureInfo tex_info{};
318 GPUVAddr tic_address_gpu = 355 // TODO(Subv): Use the shader to determine which textures are actually accessed.
319 tic_base_address + tex_info.tic_id * sizeof(Texture::TICEntry); 356 tex_info.index = (current_texture - tex_info_buffer.address - TextureInfoOffset) /
320 VAddr tic_address_cpu = memory_manager.PhysicalToVirtualAddress(tic_address_gpu); 357 sizeof(Texture::TextureHandle);
321 358
322 Texture::TICEntry tic_entry; 359 // Load the TIC data.
323 Memory::ReadBlock(tic_address_cpu, &tic_entry, sizeof(Texture::TICEntry)); 360 if (tex_handle.tic_id != 0) {
361 tex_info.enabled = true;
324 362
325 auto r_type = tic_entry.r_type.Value(); 363 auto tic_entry = GetTICEntry(tex_handle.tic_id);
326 auto g_type = tic_entry.g_type.Value(); 364 // TODO(Subv): Workaround for BitField's move constructor being deleted.
327 auto b_type = tic_entry.b_type.Value(); 365 std::memcpy(&tex_info.tic, &tic_entry, sizeof(tic_entry));
328 auto a_type = tic_entry.a_type.Value(); 366 }
329
330 // TODO(Subv): Different data types for separate components are not supported
331 ASSERT(r_type == g_type && r_type == b_type && r_type == a_type);
332
333 auto format = tic_entry.format.Value();
334 367
335 textures.push_back(tic_entry); 368 // Load the TSC data
369 if (tex_handle.tsc_id != 0) {
370 auto tsc_entry = GetTSCEntry(tex_handle.tsc_id);
371 // TODO(Subv): Workaround for BitField's move constructor being deleted.
372 std::memcpy(&tex_info.tsc, &tsc_entry, sizeof(tsc_entry));
336 } 373 }
374
375 if (tex_info.enabled)
376 textures.push_back(tex_info);
337 } 377 }
338 378
339 return textures; 379 return textures;
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 441cc0c19..8e2d888e7 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -432,7 +432,7 @@ public:
432 void SubmitMacroCode(u32 entry, std::vector<u32> code); 432 void SubmitMacroCode(u32 entry, std::vector<u32> code);
433 433
434 /// Returns a list of enabled textures for the specified shader stage. 434 /// Returns a list of enabled textures for the specified shader stage.
435 std::vector<Texture::TICEntry> GetStageTextures(Regs::ShaderStage stage); 435 std::vector<Texture::FullTextureInfo> GetStageTextures(Regs::ShaderStage stage) const;
436 436
437private: 437private:
438 MemoryManager& memory_manager; 438 MemoryManager& memory_manager;
@@ -444,6 +444,12 @@ private:
444 /// Parameters that have been submitted to the macro call so far. 444 /// Parameters that have been submitted to the macro call so far.
445 std::vector<u32> macro_params; 445 std::vector<u32> macro_params;
446 446
447 /// Retrieves information about a specific TIC entry from the TIC buffer.
448 Texture::TICEntry GetTICEntry(u32 tic_index) const;
449
450 /// Retrieves information about a specific TSC entry from the TSC buffer.
451 Texture::TSCEntry GetTSCEntry(u32 tsc_index) const;
452
447 /** 453 /**
448 * Call a macro on this engine. 454 * Call a macro on this engine.
449 * @param method Method to call 455 * @param method Method to call