Home
last modified time | relevance | path

Searched refs:createContextAsync (Results 1 – 17 of 17) sorted by relevance

/expo/packages/expo-gl/build/
H A DGLView.d.ts24 static createContextAsync(): Promise<ExpoWebGLRenderingContext>;
H A DGLView.web.d.ts14 static createContextAsync(): Promise<WebGLRenderingContext | null>;
H A DGLView.js29 static async createContextAsync() { method in GLView
30 const { exglCtxId } = await ExponentGLObjectManager.createContextAsync();
H A DGLView.web.js76 static async createContextAsync() { method in GLView
H A DGLView.js.map1 …ic async createContextAsync(): Promise<ExpoWebGLRenderingContext> {\n const { exglCtxId } = awa…
H A DGLView.web.js.map1 …LCanvasElement;\n\n gl?: WebGLRenderingContext;\n\n static async createContextAsync(): Promise<W…
/expo/packages/expo-gl/ios/
H A DEXGLObjectManager.mm95 EX_EXPORT_METHOD_AS(createContextAsync,
110 …EXErrorWithMessage(@"ExponentGLObjectManager.createContextAsync: Unexpected error occurred when in…
/expo/ios/versioned/sdk47/EXGL/ios/EXGL/
H A DABI47_0_0EXGLObjectManager.mm95 ABI47_0_0EX_EXPORT_METHOD_AS(createContextAsync,
109 …ABI47_0_0EXErrorWithMessage(@"ExponentGLObjectManager.createContextAsync: Unexpected error occurre…
/expo/ios/versioned/sdk49/ExpoGL/ios/
H A DABI49_0_0EXGLObjectManager.mm95 ABI49_0_0EX_EXPORT_METHOD_AS(createContextAsync,
110 …ABI49_0_0EXErrorWithMessage(@"ExponentGLObjectManager.createContextAsync: Unexpected error occurre…
/expo/ios/versioned/sdk48/ExpoGL/ios/
H A DABI48_0_0EXGLObjectManager.mm95 ABI48_0_0EX_EXPORT_METHOD_AS(createContextAsync,
109 …ABI48_0_0EXErrorWithMessage(@"ExponentGLObjectManager.createContextAsync: Unexpected error occurre…
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/gl/
H A DGLObjectManagerModule.java120 public void createContextAsync(final Promise promise) { in createContextAsync() method in GLObjectManagerModule
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/gl/
H A DGLObjectManagerModule.java120 public void createContextAsync(final Promise promise) { in createContextAsync() method in GLObjectManagerModule
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/gl/
H A DGLObjectManagerModule.java120 public void createContextAsync(final Promise promise) { in createContextAsync() method in GLObjectManagerModule
/expo/packages/expo-gl/src/
H A DGLView.tsx56 static async createContextAsync(): Promise<ExpoWebGLRenderingContext> {
57 const { exglCtxId } = await ExponentGLObjectManager.createContextAsync();
H A DGLView.web.tsx124 static async createContextAsync(): Promise<WebGLRenderingContext | null> {
/expo/apps/test-suite/tests/
H A DGLView.js191 const context = await GLView.createContextAsync();
/expo/apps/native-component-list/src/screens/GL/
H A DGLHeadlessRenderingScreen.tsx44 const glPromise = GLView.createContextAsync().then(async (gl) => {