| 1234567891011121314151617181920212223242526272829 |
- /* global QUnit */
- import { WebGLExtensions } from '../../../../../src/renderers/webgl/WebGLExtensions';
- export default QUnit.module( 'Renderers', () => {
- QUnit.module( 'WebGL', () => {
- QUnit.module( 'WebGLExtensions', () => {
- // INSTANCING
- QUnit.todo( "Instancing", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- // PUBLIC STUFF
- QUnit.todo( "get", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- } );
- } );
- } );
|