Skip to content

Commit

Permalink
vulkan/swapchain: fix typo in VK_COLOR_SPACE_BT709_LINEAR_EXT case
Browse files Browse the repository at this point in the history
  • Loading branch information
kasper93 authored and haasn committed Mar 1, 2024
1 parent a3c5563 commit ef135c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vulkan/swapchain.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static bool map_color_space(VkColorSpaceKHR space, struct pl_color_space *out)
return false;
case VK_COLOR_SPACE_BT709_LINEAR_EXT:
*out = (struct pl_color_space) {
.primaries = PL_COLOR_PRIM_DCI_P3,
.primaries = PL_COLOR_PRIM_BT_709,
.transfer = PL_COLOR_TRC_LINEAR,
};
return true;
Expand Down

0 comments on commit ef135c3

Please sign in to comment.