WIP: Vulkan: Workbench #107886

Closed
Jeroen Bakker wants to merge 88 commits from Jeroen-Bakker:vulkan-draw-manager-workbench into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 01135a8516 - Show all commits

View File

@ -12,12 +12,12 @@ TEST(VulkanDataConversion, ConvertF32F16)
uint32_t f32_3 = 0b01000000010000000000000000000000;
uint32_t f16_3_expected = 0b0100001000000000;
uint32_t f16_3 = convert_float_formats<Format16F, Format32F>(f32_2);
uint32_t f16_3 = convert_float_formats<Format16F, Format32F>(f32_3);
EXPECT_EQ(f16_3, f16_3_expected);
uint32_t f32_4 = 0b01000000100000000000000000000000;
uint32_t f16_4_expected = 0b0100010000000000;
uint32_t f16_4 = convert_float_formats<Format16F, Format32F>(f32_2);
uint32_t f16_4 = convert_float_formats<Format16F, Format32F>(f32_4);
EXPECT_EQ(f16_4, f16_4_expected);
}
} // namespace blender::gpu::tests