Home
last modified time | relevance | path

Searched refs:bytesPerRow (Results 1 – 25 of 38) sorted by relevance

12

/expo/packages/expo-image/ios/
H A DBlurhash.swift39 let bytesPerRow = width * 3 in image() variable
45 CFDataSetLength(data, bytesPerRow * height) in image()
71 pixels[3 * x + 0 + y * bytesPerRow] = intR in image()
72 pixels[3 * x + 1 + y * bytesPerRow] = intG in image()
73 pixels[3 * x + 2 + y * bytesPerRow] = intB in image()
84 bytesPerRow: bytesPerRow, in image()
110 bytesPerRow: pixelWidth * 4,
131 let bytesPerRow = cgImage.bytesPerRow variable
141 bytesPerRow: bytesPerRow,
190 bytesPerRow: Int,
[all …]
/expo/ios/versioned/sdk49/ExpoImage/
H A DBlurhash.swift39 let bytesPerRow = width * 3 in image() variable
45 CFDataSetLength(data, bytesPerRow * height) in image()
71 pixels[3 * x + 0 + y * bytesPerRow] = intR in image()
72 pixels[3 * x + 1 + y * bytesPerRow] = intG in image()
73 pixels[3 * x + 2 + y * bytesPerRow] = intB in image()
84 bytesPerRow: bytesPerRow, in image()
110 bytesPerRow: pixelWidth * 4,
131 let bytesPerRow = cgImage.bytesPerRow variable
141 bytesPerRow: bytesPerRow,
190 bytesPerRow: Int,
[all …]
/expo/ios/versioned/sdk48/ExpoImage/
H A DBlurhash.swift39 let bytesPerRow = width * 3 in image() variable
45 CFDataSetLength(data, bytesPerRow * height) in image()
71 pixels[3 * x + 0 + y * bytesPerRow] = intR in image()
72 pixels[3 * x + 1 + y * bytesPerRow] = intG in image()
73 pixels[3 * x + 2 + y * bytesPerRow] = intB in image()
84 bytesPerRow: bytesPerRow, in image()
110 bytesPerRow: pixelWidth * 4,
131 let bytesPerRow = cgImage.bytesPerRow variable
141 bytesPerRow: bytesPerRow,
190 bytesPerRow: Int,
[all …]
/expo/packages/expo-image/src/utils/blurhash/
H A Ddecode.ts82 const bytesPerRow = width * 4; constant
83 const pixels = new Uint8ClampedArray(bytesPerRow * height);
105 pixels[4 * x + 0 + y * bytesPerRow] = intR;
106 pixels[4 * x + 1 + y * bytesPerRow] = intG;
107 pixels[4 * x + 2 + y * bytesPerRow] = intB;
108 pixels[4 * x + 3 + y * bytesPerRow] = 255; // alpha
/expo/packages/expo-image/build/utils/blurhash/
H A Ddecode.js64 const bytesPerRow = width * 4; constant
65 const pixels = new Uint8ClampedArray(bytesPerRow * height);
83 pixels[4 * x + 0 + y * bytesPerRow] = intR;
84 pixels[4 * x + 1 + y * bytesPerRow] = intG;
85 pixels[4 * x + 2 + y * bytesPerRow] = intB;
86 pixels[4 * x + 3 + y * bytesPerRow] = 255; // alpha
H A Ddecode.js.map1bytesPerRow = width * 4;\n const pixels = new Uint8ClampedArray(bytesPerRow * height);\n\n for (…
/expo/ios/versioned/sdk48/ExpoGL/common/
H A DABI48_0_0EXGLImageUtils.cpp43 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows) { in flipPixels() argument
49 GLuint intsPerRow = (GLuint)bytesPerRow / sizeof(GLuint); in flipPixels()
50 GLuint remainingBytes = (GLuint)bytesPerRow - intsPerRow * sizeof(GLuint); in flipPixels()
54 GLuint *iTop = (GLuint *)(pixels + rowTop * bytesPerRow); in flipPixels()
55 GLuint *iBottom = (GLuint *)(pixels + rowBottom * bytesPerRow); in flipPixels()
H A DABI48_0_0EXGLImageUtils.h19 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows);
/expo/ios/versioned/sdk47/EXGL/common/
H A DABI47_0_0EXGLImageUtils.cpp43 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows) { in flipPixels() argument
49 GLuint intsPerRow = (GLuint)bytesPerRow / sizeof(GLuint); in flipPixels()
50 GLuint remainingBytes = (GLuint)bytesPerRow - intsPerRow * sizeof(GLuint); in flipPixels()
54 GLuint *iTop = (GLuint *)(pixels + rowTop * bytesPerRow); in flipPixels()
55 GLuint *iBottom = (GLuint *)(pixels + rowBottom * bytesPerRow); in flipPixels()
H A DABI47_0_0EXGLImageUtils.h19 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows);
/expo/packages/expo-gl/common/
H A DEXGLImageUtils.cpp43 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows) { in flipPixels() argument
49 GLuint intsPerRow = (GLuint)bytesPerRow / sizeof(GLuint); in flipPixels()
50 GLuint remainingBytes = (GLuint)bytesPerRow - intsPerRow * sizeof(GLuint); in flipPixels()
54 GLuint *iTop = (GLuint *)(pixels + rowTop * bytesPerRow); in flipPixels()
55 GLuint *iBottom = (GLuint *)(pixels + rowBottom * bytesPerRow); in flipPixels()
H A DEXGLImageUtils.h19 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows);
/expo/ios/versioned/sdk49/ExpoGL/common/
H A DABI49_0_0EXGLImageUtils.cpp43 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows) { in flipPixels() argument
49 GLuint intsPerRow = (GLuint)bytesPerRow / sizeof(GLuint); in flipPixels()
50 GLuint remainingBytes = (GLuint)bytesPerRow - intsPerRow * sizeof(GLuint); in flipPixels()
54 GLuint *iTop = (GLuint *)(pixels + rowTop * bytesPerRow); in flipPixels()
55 GLuint *iBottom = (GLuint *)(pixels + rowBottom * bytesPerRow); in flipPixels()
H A DABI49_0_0EXGLImageUtils.h19 void flipPixels(GLubyte *pixels, size_t bytesPerRow, size_t rows);
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h32 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
33 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h32 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
33 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h32 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
33 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h32 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
33 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h33 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
34 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h33 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
34 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h33 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
34 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/api/
H A DJsiSkImageFactory.h33 auto bytesPerRow = arguments[2].asNumber(); in JSI_HOST_FUNCTION() local
34 auto image = SkImages::RasterFromData(*imageInfo, pixelData, bytesPerRow); in JSI_HOST_FUNCTION()
/expo/ios/vendored/unversioned/@shopify/react-native-skia/ios/RNSkia-iOS/
H A DViewScreenshotService.mm62 auto bytesPerRow = CGImageGetBytesPerRow(cgImage);
88 return SkImages::RasterFromData(info, skData, bytesPerRow);
/expo/ios/vendored/sdk49/@shopify/react-native-skia/ios/RNSkia-iOS/
H A DABI49_0_0ViewScreenshotService.mm62 auto bytesPerRow = CGImageGetBytesPerRow(cgImage);
88 return SkImages::RasterFromData(info, skData, bytesPerRow);
/expo/packages/expo-image-picker/ios/
H A DUIImage+fixOrientation.swift56 bytesPerRow: 0, in fixOrientation()

12