Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
rjodinchr committed Jan 6, 2025
1 parent 783e870 commit da51c01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ struct CreateCommandBufferDeviceDoesNotSupportOutOfOderQueue

// If device does not support out of order queue or if device supports
// out of order command buffer test should be skipped
return queue_out_of_order_support && !out_of_order_support;
return !queue_out_of_order_support || out_of_order_support;
}

clCommandQueueWrapper out_of_order_queue;
Expand Down

0 comments on commit da51c01

Please sign in to comment.