Lines Matching defs:CHECK_DISABLED
2400 struct CHECK_DISABLED { struct
2401 bool command_buffer_state; // Skip command buffer state validation
2402 bool object_in_use; // Skip all object in_use checking
2403 …dle_descriptor_set; // Skip check to verify that descriptor set is not in-use
2404 bool push_constant_range; // Skip push constant range checks
2405 …bool query_validation; // Disable all core validation query-related checks
2406 bool image_layout_validation; // Disable image layout validation
2407 bool object_tracking; // Disable object lifetime validation
2408 bool core_checks; // Disable core validation checks
2409 bool thread_safety; // Disable thread safety validation
2410 bool stateless_checks; // Disable stateless validation checks
2411 bool handle_wrapping; // Disable unique handles/handle wrapping
2412 bool shader_validation; // Skip validation for shaders
2414 void SetAll(bool value) { std::fill(&command_buffer_state, &shader_validation + 1, value); } in SetAll()