File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22 * @author mrdoob / http://mrdoob.com/
33 */
44
5- THREE . DDSLoader = function ( ) {
5+ THREE . DDSLoader = function ( manager ) {
6+
7+ THREE . CompressedTextureLoader . call ( this , manager ) ;
68
79 this . _parser = THREE . DDSLoader . parse ;
810
Original file line number Diff line number Diff line change 88 */
99
1010
11- THREE . KTXLoader = function ( ) {
11+ THREE . KTXLoader = function ( manager ) {
12+
13+ THREE . CompressedTextureLoader . call ( this , manager ) ;
1214
1315 this . _parser = THREE . KTXLoader . parse ;
1416
Original file line number Diff line number Diff line change 1010
1111THREE . PVRLoader = function ( manager ) {
1212
13- this . manager = ( manager !== undefined ) ? manager : THREE . DefaultLoadingManager ;
13+ THREE . CompressedTextureLoader . call ( this , manager ) ;
1414
1515 this . _parser = THREE . PVRLoader . parse ;
1616
You can’t perform that action at this time.
0 commit comments