19static inline struct render_distortion_spec
20render_make_distortion_spec(uint32_t distortion_texel_count, VkBool32 do_timewarp, uint32_t view_count)
22 struct render_distortion_spec spec = {
23 .distortion_texel_count = (int32_t)distortion_texel_count,
24 .do_timewarp = do_timewarp,
25 .view_count = (int32_t)view_count,
Shader specialization structs for render compute shaders.