-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
28 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ callback ([DWM](https://github.com/deno-windowing/dwm) handles both). | |
|
||
```ts | ||
// GLES2 3.2 API | ||
import * as gl from "https://deno.land/x/[email protected].2/api/gles23.2.ts"; | ||
import * as gl from "https://deno.land/x/[email protected].8/api/gles23.2.ts"; | ||
|
||
// Initialize function pointers | ||
gl.load(yourGetProcAddress); | ||
|
@@ -38,11 +38,10 @@ context creation. | |
|
||
Check [./examples](./examples/) for some usage examples. | ||
|
||
Since this module depends on unstable FFI API, you need to pass `--unstable` | ||
along with `--allow-ffi`. | ||
Since this module depends on unstable FFI API, you need to pass `--unstable-ffi`. | ||
|
||
```sh | ||
deno run --unstable --allow-ffi <file> | ||
deno run -A --unstable-ffi <file> | ||
``` | ||
|
||
Extensions: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from "https://deno.land/x/[email protected].5/mod.ts"; | ||
export * from "https://deno.land/x/[email protected].6/mod.ts"; |