File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4121,6 +4121,7 @@ Anvil::SubmitInfo::SubmitInfo(uint32_t in_n_command_buff
41214121#endif
41224122 dst_stage_wait_masks (in_n_semaphores_to_wait_on),
41234123 fence_ptr (in_opt_fence_ptr),
4124+ is_protected (false ),
41244125#if defined(_WIN32)
41254126 keyed_mutex_n_acquire_keys (0 ),
41264127 keyed_mutex_acquire_d3d11_memory_block_ptrs_ptr(nullptr ),
@@ -4185,6 +4186,7 @@ Anvil::SubmitInfo::SubmitInfo(uint32_t in_n_command_bu
41854186#endif
41864187 dst_stage_wait_masks (in_n_wait_semaphore_submissions),
41874188 fence_ptr (in_opt_fence_ptr),
4189+ is_protected (false ),
41884190#if defined(_WIN32)
41894191 keyed_mutex_n_acquire_keys (0 ),
41904192 keyed_mutex_acquire_d3d11_memory_block_ptrs_ptr(nullptr ),
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ void Anvil::BaseDevice::create_device(const std::vector<const char*>& in_extensi
9898 const std::vector<const char *>& in_layers,
9999 DeviceQueueFamilyInfo* out_queue_families_ptr)
100100{
101+ std::vector<float > device_queue_priorities;
101102 const auto & physical_device_ptrs (m_create_info_ptr->get_physical_device_ptrs () );
102103 std::vector<VkPhysicalDevice> physical_devices (physical_device_ptrs.size () );
103104 VkResult result (VK_ERROR_INITIALIZATION_FAILED);
@@ -138,7 +139,6 @@ void Anvil::BaseDevice::create_device(const std::vector<const char*>& in_extensi
138139 /* Queue create info items */
139140 {
140141 std::vector<VkDeviceQueueCreateInfo> device_queue_create_info_items;
141- std::vector<float > device_queue_priorities;
142142 const auto n_queue_fams = static_cast <uint32_t >(zeroth_physical_device_queue_fams.size () );
143143
144144 /* For any queue that uses non-medium global priority, we're going to need a dedicated device queue create info struct. This is
Original file line number Diff line number Diff line change 1919// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020// THE SOFTWARE.
2121//
22-
2322#include " misc/debug.h"
2423#include " misc/debug_messenger_create_info.h"
2524#include " misc/object_tracker.h"
You can’t perform that action at this time.
0 commit comments