| 1234567891011121314151617181920212223242526272829303132 |
- /* global QUnit */
- // import { DataTexture } from '../../../../src/textures/DataTexture.js';
- export default QUnit.module( 'Textures', () => {
- QUnit.module( 'DataTexture', () => {
- // INHERITANCE
- QUnit.todo( 'Extending', ( assert ) => {
- assert.ok( false, 'everything\'s gonna be alright' );
- } );
- // INSTANCING
- QUnit.todo( 'Instancing', ( assert ) => {
- assert.ok( false, 'everything\'s gonna be alright' );
- } );
- // PUBLIC STUFF
- QUnit.todo( 'isDataTexture', ( assert ) => {
- assert.ok( false, 'everything\'s gonna be alright' );
- } );
- } );
- } );
|