- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
15 lines
247 B
JavaScript
15 lines
247 B
JavaScript
|
|
module.exports = function stats () {
|
|
return {
|
|
vaoCount: 0,
|
|
bufferCount: 0,
|
|
elementsCount: 0,
|
|
framebufferCount: 0,
|
|
shaderCount: 0,
|
|
textureCount: 0,
|
|
cubeCount: 0,
|
|
renderbufferCount: 0,
|
|
maxTextureUnits: 0
|
|
}
|
|
}
|