Lizzie get meowed, please.

This commit is contained in:
CamilleLaVey
2026-07-28 16:19:05 -04:00
parent aec20586be
commit b59dda3af6
@@ -7,7 +7,7 @@
#pragma once #pragma once
#include <variant> #include <variant>
#include <boost/container/small_vector.hpp> #include <vector>
#include "video_core/vulkan_common/vulkan_wrapper.h" #include "video_core/vulkan_common/vulkan_wrapper.h"
namespace Vulkan { namespace Vulkan {
@@ -80,7 +80,7 @@ private:
DescriptorUpdateEntry* payload_cursor = nullptr; DescriptorUpdateEntry* payload_cursor = nullptr;
DescriptorUpdateEntry* payload_start = nullptr; DescriptorUpdateEntry* payload_start = nullptr;
const DescriptorUpdateEntry* upload_start = nullptr; const DescriptorUpdateEntry* upload_start = nullptr;
boost::container::small_vector<DescriptorUpdateEntry, 0> payload; std::vector<DescriptorUpdateEntry> payload;
}; };
// TODO: should these be separate classes instead? // TODO: should these be separate classes instead?