📈 stats-gl
WebGL/WebGPU Performance Monitor tool.
🔗 Live Demo
https://github.com/RenaudRohlinger/stats-gl/assets/15867665/3fdafff4-1357-4872-9baf-0629dbaf9d8c
❗📢 Note: To support GPU monitoring on Safari you need to enable Timer Queries under WebKit Feature Flags > WebGL Timer Queries
📚 Description
stats-gl
is a comprehensive tool to monitor WebGL performance. The Stats class provides methods to create performance panels, log performance metrics, and manage the display and layout of these panels. The performance metrics logged include FPS, CPU, and GPU. The GPU logging is available only if the user's browser supports the WebGL 2.0 EXT_disjoint_timer_query_webgl2
extension or WebGPU Timestamp Queries.
In addition to logging real-time performance data, the class also provides methods to calculate and display average performance metrics over a specified interval.
⬇️ Installation
Stats-gl is available as an npm package. You can install it using the following command:
npm install stats-gl
🧑💻 Example Usage
Below is an example of how you can use this class in your code:
import Stats from "stats-gl";
const stats = new Stats({
trackGPU: false,
trackHz: false,
trackCPT: false,
logsPerSecond: 4,
graphsPerSecond: 30,
samplesLog: 40,
samplesGraph: 10,
precision: 2,
horizontal: true,
minimal: false,
mode: 0
});
document.body.appendChild( stats.dom );
stats.begin();
stats.end();
stats.begin();
stats.end();
stats.update();
Quick start with threejs:
import * as THREE from 'three';
import Stats from 'https://www.unpkg.com/stats-gl?module';
const container = document.getElementById( 'container' );
const stats = new Stats();
container.appendChild( stats.dom );
const renderer = new THREE.WebGLRenderer( { antialias: true } );
container.appendChild( renderer.domElement );
const scene = new THREE.Scene();
stats.init( renderer );
function animate() {
requestAnimationFrame( animate );
render();
stats.update();
}
Quick start with @react-three/fiber. A <StatsGl />
component is available through @react-three/drei:
import { Canvas } from '@react-three/fiber'
import { StatsGl } from '@react-three/drei'
const Scene = () => (
<Canvas>
<StatsGl />
</Canvas>
)
Quick start with Tresjs for Vue developers. A <StatsGl />
component is available through cientos:
<script setup lang="ts">
import { TresCanvas } from '@tresjs/core'
import { StatsGl } from '@tresjs/cientos'
</script>
<template>
<TresCanvas>
<StatsGl />
</TresCanvas>
</template>
⚙️ Parameters
The constructor for the Stats class accepts an options object with the following properties:
logsPerSecond
: How often to log performance data, in logs per second.graphsPerSecond
: How often to update the graph, in graphs per second.trackGPU
: A boolean value to enable or disable GPU tracking.trackHz
: A boolean value to enable or disable Hz tracking.trackCPT
: (Threejs specific) A boolean value to enable or disable Threejs Compute Shading tracking.samplesLog
: Number of recent log samples to keep for computing averages.samplesGraph
: Number of recent graph samples to keep for computing averages.precision
: Precision of the data, in number of decimal places (only affects CPU and GPU).minimal
: A boolean value to control the minimalistic mode of the panel display. If set to true, a simple click on the panel will switch between different metrics.mode
: Sets the initial panel to display - 0 for FPS, 1 for CPU, and 2 for GPU (if supported).horizontal
: Display the canvases on the X axis, set to align on vertical axis.
All the parameters are optional and have default values. The class also provides other methods such as begin(), end(), init(canvas), etc. which can be used based on the requirement.
🤝 Contributing
Contributions to Stats-gl are welcome.
Please report any issues or bugs you encounter.
📜 License
This project is licensed under the MIT License.
🧑🎨 Maintainers :