This file contains hidden or 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
| // Função para gerenciar erros do OpenGL >4.3 | |
| // Callback function for printing debug statements | |
| void APIENTRY GLDebugMessageCallback(GLenum source, GLenum type, GLuint id, | |
| GLenum severity, GLsizei length, | |
| const GLchar *msg, const void *data) | |
| { | |
| const char* _source; | |
| const char* _type; | |
| const char* _severity; |
This file contains hidden or 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
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| indent_style = space | |
| indent_size = 2 | |
| trim_trailing_whitespace = true |
This file contains hidden or 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
| { | |
| "printWidth": 100, | |
| "singleQuote": true, | |
| "semi": true, | |
| "bracketSpacing": false, | |
| "jsxBracketSameLine": false, | |
| "arrowParens": "avoid" | |
| } |
This file contains hidden or 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
Show hidden characters
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true | |
| }, | |
| "extends": [ | |
| "plugin:react/recommended", | |
| "plugin:@typescript-eslint/recommended", | |
| "plugin:jest/recommended", | |
| "airbnb", |