diff options
| author | 2023-02-26 09:20:12 -0500 | |
|---|---|---|
| committer | 2023-02-26 09:20:12 -0500 | |
| commit | 26c1edf2f083399a594a834bdd36be85369819f7 (patch) | |
| tree | e0d76a17a7c452ed21bb74bcecce8422bab461da /src/common/scratch_buffer.h | |
| parent | Merge pull request #9824 from german77/burning-profiles (diff) | |
| parent | configuration: Add async ASTC decode setting (diff) | |
| download | yuzu-26c1edf2f083399a594a834bdd36be85369819f7.tar.gz yuzu-26c1edf2f083399a594a834bdd36be85369819f7.tar.xz yuzu-26c1edf2f083399a594a834bdd36be85369819f7.zip | |
Merge pull request #9849 from ameerj/async-astc
texture_cache: Add asynchronous ASTC texture decoding
Diffstat (limited to '')
| -rw-r--r-- | src/common/scratch_buffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/scratch_buffer.h b/src/common/scratch_buffer.h index 1245a5086..26d4e76dc 100644 --- a/src/common/scratch_buffer.h +++ b/src/common/scratch_buffer.h | |||
| @@ -23,6 +23,7 @@ public: | |||
| 23 | buffer{Common::make_unique_for_overwrite<T[]>(initial_capacity)} {} | 23 | buffer{Common::make_unique_for_overwrite<T[]>(initial_capacity)} {} |
| 24 | 24 | ||
| 25 | ~ScratchBuffer() = default; | 25 | ~ScratchBuffer() = default; |
| 26 | ScratchBuffer(ScratchBuffer&&) = default; | ||
| 26 | 27 | ||
| 27 | /// This will only grow the buffer's capacity if size is greater than the current capacity. | 28 | /// This will only grow the buffer's capacity if size is greater than the current capacity. |
| 28 | /// The previously held data will remain intact. | 29 | /// The previously held data will remain intact. |