-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release #9
Conversation
frame(); | ||
|
||
return () => { | ||
if (useRAF && id) { |
Check warning
Code scanning / CodeQL
Useless conditional Warning test
const demo = demos[select.value]; | ||
node = demo(); | ||
document.body.append(node); | ||
callback = await demo($container); |
Check failure
Code scanning / CodeQL
Unvalidated dynamic method call High test
user-controlled
}); | ||
|
||
const cubeVertexSize = 4 * 10; // Byte size of one cube vertex. | ||
const cubePositionOffset = 0; |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note test
|
||
const cubeVertexSize = 4 * 10; // Byte size of one cube vertex. | ||
const cubePositionOffset = 0; | ||
const cubeColorOffset = 4 * 4; // Byte offset of cube vertex color attribute. |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note test
const cubeVertexSize = 4 * 10; // Byte size of one cube vertex. | ||
const cubePositionOffset = 0; | ||
const cubeColorOffset = 4 * 4; // Byte offset of cube vertex color attribute. | ||
const cubeUVOffset = 4 * 8; |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note test
🤔 This is a
🔗 Related issue link
💡 Background and solution
📝 Changelog
☑️ Self Check before Merge