Commit bc70306d authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Use wined3d_mask_from_size() in shader_glsl_atomic().

parent 420f86c2
...@@ -5354,7 +5354,7 @@ static void shader_glsl_atomic(const struct wined3d_shader_instruction *ins) ...@@ -5354,7 +5354,7 @@ static void shader_glsl_atomic(const struct wined3d_shader_instruction *ins)
} }
resource = "image"; resource = "image";
data_type = reg_maps->uav_resource_info[resource_idx].data_type; data_type = reg_maps->uav_resource_info[resource_idx].data_type;
coord_mask = (1u << resource_type_info[resource_type].coord_size) - 1; coord_mask = wined3d_mask_from_size(resource_type_info[resource_type].coord_size);
stride = reg_maps->uav_resource_info[resource_idx].stride; stride = reg_maps->uav_resource_info[resource_idx].stride;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment