Skip to content

Commit

Permalink
Merge pull request godotengine#91952 from dsnopek/openxr-composition-…
Browse files Browse the repository at this point in the history
…layer-sample-count

Fix sample count on OpenXR composition layers
  • Loading branch information
akien-mga committed May 14, 2024
2 parents 08a921a + 45a02c2 commit 4971b71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ bool OpenXRViewportCompositionLayerProvider::update_and_acquire_swapchain(bool p

// Create our new swap chain
int64_t swapchain_format = openxr_api->get_color_swapchain_format();
const uint32_t sample_count = 3;
const uint32_t sample_count = 1;
const uint32_t array_size = 1;
XrSwapchainCreateFlags create_flags = 0;
if (p_static_image) {
Expand Down

0 comments on commit 4971b71

Please sign in to comment.