2020-01-05 16:08:39 +00:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
2020-01-03 20:16:29 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2020-01-04 16:30:11 +00:00
|
|
|
#include <algorithm>
|
2020-01-08 15:46:36 +00:00
|
|
|
#include <limits>
|
2020-02-26 19:13:47 +00:00
|
|
|
#include <vector>
|
2020-01-04 16:30:11 +00:00
|
|
|
|
2020-02-26 19:13:47 +00:00
|
|
|
#include "common/common_types.h"
|
2020-01-03 20:16:29 +00:00
|
|
|
#include "video_core/guest_driver.h"
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2020-02-26 19:13:47 +00:00
|
|
|
void GuestDriverProfile::DeduceTextureHandlerSize(std::vector<u32> bound_offsets) {
|
|
|
|
if (texture_handler_size) {
|
2020-01-03 20:16:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-01-05 16:08:39 +00:00
|
|
|
const std::size_t size = bound_offsets.size();
|
2020-01-03 20:16:29 +00:00
|
|
|
if (size < 2) {
|
|
|
|
return;
|
|
|
|
}
|
2020-01-08 15:46:36 +00:00
|
|
|
std::sort(bound_offsets.begin(), bound_offsets.end(), std::less{});
|
|
|
|
u32 min_val = std::numeric_limits<u32>::max();
|
|
|
|
for (std::size_t i = 1; i < size; ++i) {
|
2020-01-03 20:16:29 +00:00
|
|
|
if (bound_offsets[i] == bound_offsets[i - 1]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const u32 new_min = bound_offsets[i] - bound_offsets[i - 1];
|
|
|
|
min_val = std::min(min_val, new_min);
|
|
|
|
}
|
|
|
|
if (min_val > 2) {
|
|
|
|
return;
|
|
|
|
}
|
2020-01-04 16:30:11 +00:00
|
|
|
texture_handler_size = min_texture_handler_size * min_val;
|
2020-01-03 20:16:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace VideoCore
|