iOS 金属。如何对所有颜色作品使用 'half' 格式?
iOS Metal. How do I use the 'half' format for all color work?
MTKView
的默认颜色格式是 bgra8Unorm
。我更喜欢使用 half
格式(参见:OpenEXR)。我不清楚 Metal 提供的各种格式中的哪些对应 half
?
你应该使用 rgb16Float
:
Ordinary format with four 16-bit floating-point components in RGBA order.
MTKView
的默认颜色格式是 bgra8Unorm
。我更喜欢使用 half
格式(参见:OpenEXR)。我不清楚 Metal 提供的各种格式中的哪些对应 half
?
你应该使用 rgb16Float
:
Ordinary format with four 16-bit floating-point components in RGBA order.