Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.147.45.11
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
HRD-Test /
src /
textures /
[ HOME SHELL ]
Name
Size
Permission
Action
CanvasTexture.js
361
B
-rw-r--r--
CompressedArrayTexture.js
434
B
-rw-r--r--
CompressedCubeTexture.js
448
B
-rw-r--r--
CompressedTexture.js
703
B
-rw-r--r--
CubeTexture.js
642
B
-rw-r--r--
Data3DTexture.js
793
B
-rw-r--r--
DataArrayTexture.js
544
B
-rw-r--r--
DataTexture.js
603
B
-rw-r--r--
DepthTexture.js
1.38
KB
-rw-r--r--
FramebufferTexture.js
403
B
-rw-r--r--
Source.js
1.88
KB
-rw-r--r--
Texture.js
6.62
KB
-rw-r--r--
VideoTexture.js
1.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DataTexture.js
import { Texture } from './Texture.js'; import { NearestFilter } from '../constants.js'; class DataTexture extends Texture { constructor( data = null, width = 1, height = 1, format, type, mapping, wrapS, wrapT, magFilter = NearestFilter, minFilter = NearestFilter, anisotropy, colorSpace ) { super( null, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy, colorSpace ); this.isDataTexture = true; this.image = { data: data, width: width, height: height }; this.generateMipmaps = false; this.flipY = false; this.unpackAlignment = 1; } } export { DataTexture };
Close