We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af9951a commit f2a13efCopy full SHA for f2a13ef
1 file changed
lang/c/include/vtfppc/ImageConversion.h
@@ -215,11 +215,11 @@ inline vtfpp_image_conversion_resize_bounds_t cast(vtfpp::ImageConversion::Resiz
215
}
216
217
inline vtfpp::ImageConversion::ResizeBounds cast(vtfpp_image_conversion_resize_bounds_t value) {
218
- return {
219
- .resizeMinWidth = value.resizeMinWidth,
220
- .resizeMaxWidth = value.resizeMaxWidth,
221
- .resizeMinHeight = value.resizeMinHeight,
222
- .resizeMaxHeight = value.resizeMaxHeight,
+ return vtfpp::ImageConversion::ResizeBounds{
+ value.resizeMinWidth,
+ value.resizeMaxWidth,
+ value.resizeMinHeight,
+ value.resizeMaxHeight,
223
};
224
225
0 commit comments