mirror of
https://github.com/Evolution-X/external_piex
synced 2026-02-01 07:35:29 +00:00
Fixes the windows build for Skia.
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace piex {
|
||||
|
||||
@@ -81,7 +82,7 @@ struct PreviewImageData {
|
||||
|
||||
// Hint for the mosaic pattern dimension of the RAW image data. (0, 0) implies
|
||||
// that no mosaic info found. It is valid for DNG, NEF and NRW files.
|
||||
std::uint32_t cfa_pattern_dim[2] = {0, 0};
|
||||
std::vector<std::uint32_t> cfa_pattern_dim = std::vector<std::uint32_t>(2, 0);
|
||||
};
|
||||
|
||||
// Defines the StreamInterface that needs to be implemented by the client.
|
||||
|
||||
Reference in New Issue
Block a user