| /expo/packages/expo-gl/build/ |
| H A D | GLView.js | 49 static async takeSnapshotAsync(exgl, options = {}) { method in GLView 51 return ExponentGLObjectManager.takeSnapshotAsync(exglCtxId, options); 124 async takeSnapshotAsync(options = {}) { method in GLView 125 if (!GLView.takeSnapshotAsync) { 129 return await GLView.takeSnapshotAsync(exglCtxId, options);
|
| H A D | GLView.d.ts | 37 …static takeSnapshotAsync(exgl?: ExpoWebGLRenderingContext | number, options?: SnapshotOptions): Pr… 54 takeSnapshotAsync(options?: SnapshotOptions): Promise<GLSnapshot>;
|
| H A D | GLView.web.d.ts | 16 …static takeSnapshotAsync(gl: WebGLRenderingContext, options?: SnapshotOptions): Promise<GLSnapshot… 25 takeSnapshotAsync(options?: SnapshotOptions): Promise<GLSnapshot>;
|
| H A D | GLView.web.js | 90 static async takeSnapshotAsync(gl, options = {}) { method in GLView 173 async takeSnapshotAsync(options = {}) { method in GLView 174 if (!GLView.takeSnapshotAsync) { 178 return await GLView.takeSnapshotAsync(gl, options);
|
| H A D | GLView.js.map | 1 …takeSnapshotAsync(\n exgl?: ExpoWebGLRenderingContext | number,\n options: SnapshotOptions =…
|
| H A D | GLView.web.js.map | 1 …takeSnapshotAsync(\n gl: WebGLRenderingContext,\n options: SnapshotOptions = {}\n ): Promis…
|
| /expo/packages/expo-gl/src/ |
| H A D | GLView.tsx | 78 static async takeSnapshotAsync( 83 return ExponentGLObjectManager.takeSnapshotAsync(exglCtxId, options); 188 * Same as static [`takeSnapshotAsync()`](#glviewtakesnapshotasyncgl-options), 192 async takeSnapshotAsync(options: SnapshotOptions = {}): Promise<GLSnapshot> { 193 if (!GLView.takeSnapshotAsync) { 194 throw new UnavailabilityError('expo-gl', 'takeSnapshotAsync'); 197 return await GLView.takeSnapshotAsync(exglCtxId, options);
|
| H A D | GLView.web.tsx | 140 static async takeSnapshotAsync( 253 public async takeSnapshotAsync(options: SnapshotOptions = {}): Promise<GLSnapshot> { 254 if (!GLView.takeSnapshotAsync) { 255 throw new UnavailabilityError('expo-gl', 'takeSnapshotAsync'); 259 return await GLView.takeSnapshotAsync(gl, options);
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | ViewShotScreen.tsx | 6 import { captureRef as takeSnapshotAsync, captureScreen } from 'react-native-view-shot'; 32 const image = await takeSnapshotAsync(this.view!, { 46 const screenUri = await takeSnapshotAsync(undefined as unknown as number, {
|
| /expo/packages/expo-gl/ios/ |
| H A D | EXGLObjectManager.mm | 77 EX_EXPORT_METHOD_AS(takeSnapshotAsync, 86 …GL_BAD_VIEW_TAG", nil, EXErrorWithMessage(@"ExponentGLObjectManager.takeSnapshotAsync: EXGLContext…
|
| /expo/ios/versioned/sdk47/EXGL/ios/EXGL/ |
| H A D | ABI47_0_0EXGLObjectManager.mm | 77 ABI47_0_0EX_EXPORT_METHOD_AS(takeSnapshotAsync, 86 …EW_TAG", nil, ABI47_0_0EXErrorWithMessage(@"ExponentGLObjectManager.takeSnapshotAsync: ABI47_0_0EX…
|
| /expo/ios/versioned/sdk49/ExpoGL/ios/ |
| H A D | ABI49_0_0EXGLObjectManager.mm | 77 ABI49_0_0EX_EXPORT_METHOD_AS(takeSnapshotAsync, 86 …EW_TAG", nil, ABI49_0_0EXErrorWithMessage(@"ExponentGLObjectManager.takeSnapshotAsync: ABI49_0_0EX…
|
| /expo/ios/versioned/sdk48/ExpoGL/ios/ |
| H A D | ABI48_0_0EXGLObjectManager.mm | 77 ABI48_0_0EX_EXPORT_METHOD_AS(takeSnapshotAsync, 86 …EW_TAG", nil, ABI48_0_0EXErrorWithMessage(@"ExponentGLObjectManager.takeSnapshotAsync: ABI48_0_0EX…
|
| /expo/apps/test-suite/tests/ |
| H A D | GLView.js | 58 const snapshot = await instance.takeSnapshotAsync({ format: 'png' }); 200 const snapshot = await GLView.takeSnapshotAsync(context, { format: 'png' });
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/gl/ |
| H A D | GLObjectManagerModule.java | 109 …public void takeSnapshotAsync(final int exglCtxId, final Map<String, Object> options, final Promis… in takeSnapshotAsync() method in GLObjectManagerModule
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/gl/ |
| H A D | GLObjectManagerModule.java | 109 …public void takeSnapshotAsync(final int exglCtxId, final Map<String, Object> options, final Promis… in takeSnapshotAsync() method in GLObjectManagerModule
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/gl/ |
| H A D | GLObjectManagerModule.java | 109 …public void takeSnapshotAsync(final int exglCtxId, final Map<String, Object> options, final Promis… in takeSnapshotAsync() method in GLObjectManagerModule
|
| /expo/apps/native-component-list/src/screens/GL/ |
| H A D | GLSnapshotsScreen.tsx | 28 const snapshot = await this.glView.takeSnapshotAsync({
|
| H A D | GLHeadlessRenderingScreen.tsx | 164 const snapshot = await GLView.takeSnapshotAsync(gl, {
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | captureRef.mdx | 15 …in taking snapshots from the GLView, we recommend you use [GLView's takeSnapshotAsync](gl-view.mdx…
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | captureRef.mdx | 15 …in taking snapshots from the GLView, we recommend you use [GLView's takeSnapshotAsync](gl-view.mdx…
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | captureRef.mdx | 15 …in taking snapshots from the GLView, we recommend you use [GLView's takeSnapshotAsync](gl-view.mdx…
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | captureRef.mdx | 15 …in taking snapshots from the GLView, we recommend you use [GLView's takeSnapshotAsync](gl-view.mdx…
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | captureRef.mdx | 15 …in taking snapshots from the GLView, we recommend you use [GLView's takeSnapshotAsync](gl-view.mdx…
|