| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { WebGLRenderTarget } from './renderers/WebGLRenderTarget.js';
- import { DataArrayTexture } from './textures/DataArrayTexture.js';
- import { Data3DTexture } from './textures/Data3DTexture.js';
- // r134, d65e0af06644fe5a84a6fc0e372f4318f95a04c0
- export function ImmediateRenderObject() {
- console.error( 'THREE.ImmediateRenderObject has been removed.' );
- }
- // r138, 48b05d3500acc084df50be9b4c90781ad9b8cb17
- export class WebGLMultisampleRenderTarget extends WebGLRenderTarget {
- constructor( width, height, options ) {
- console.error( 'THREE.WebGLMultisampleRenderTarget has been removed. Use a normal render target and set the "samples" property to greater 0 to enable multisampling.' );
- super( width, height, options );
- this.samples = 4;
- }
- }
- // r138, f9cd9cab03b7b64244e304900a3a2eeaa3a588ce
- export class DataTexture2DArray extends DataArrayTexture {
- constructor( data, width, height, depth ) {
- console.warn( 'THREE.DataTexture2DArray has been renamed to DataArrayTexture.' );
- super( data, width, height, depth );
- }
- }
- // r138, f9cd9cab03b7b64244e304900a3a2eeaa3a588ce
- export class DataTexture3D extends Data3DTexture {
- constructor( data, width, height, depth ) {
- console.warn( 'THREE.DataTexture3D has been renamed to Data3DTexture.' );
- super( data, width, height, depth );
- }
- }
|