mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 21:08:34 -05:00
kepler_compute: Implement texture queries
This commit is contained in:
@ -303,6 +303,10 @@ public:
|
||||
return is_bindless;
|
||||
}
|
||||
|
||||
std::pair<u32, u32> GetBindlessCBuf() const {
|
||||
return {static_cast<u32>(offset >> 32), static_cast<u32>(offset)};
|
||||
}
|
||||
|
||||
bool operator<(const Image& rhs) const {
|
||||
return std::tie(offset, index, type, is_bindless) <
|
||||
std::tie(rhs.offset, rhs.index, rhs.type, rhs.is_bindless);
|
||||
|
Reference in New Issue
Block a user