JSConf Budapest, June 2-3, 2022 Presented by: Mark Brouch
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
const webgl = document.createElement('canvas').getContext('webgl'); | |
const webgl2 = document.createElement('canvas').getContext('webgl2'); | |
const contexts = [webgl, webgl2]; | |
contexts.forEach(gl => { | |
const debugRendererInfo = gl.getExtension('WEBGL_debug_renderer_info'); | |
console.log('renderer:', gl.getParameter(debugRendererInfo.UNMASKED_RENDERER_WEBGL)); | |
console.log('vendor:', gl.getParameter(debugRendererInfo.UNMASKED_VENDOR_WEBGL)); |
I hereby claim:
- I am markbrouch on github.
- I am mbrouch (https://keybase.io/mbrouch) on keybase.
- I have a public key ASC5avN3uXCJD8RyiSZEtpqsh8o6a-E3jtPHf8AcO6tSAAo
To claim this, I am signing this object:
I hereby claim:
- I am markbrouch on github.
- I am mbrouch (https://keybase.io/mbrouch) on keybase.
- I have a public key ASCprmUSjQWVYjl8r6G5-VsRSxCn3x_f894XH00FSl1Otwo
To claim this, I am signing this object:
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
# Base editorconfig for new projects | |
root = true | |
[*] | |
end_of_line = lf | |
indent_style = space | |
tab_width = 4 | |
charset = utf-8 | |
trim_trailing_whitespace = true |
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
# Created by https://www.gitignore.io/api/node,bower,osx,linux,windows,dropbox,sass,less,grunt,sublimetext,code | |
### Node ### | |
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
# Runtime data |