AcTools.Render.Base.TargetTextures.TargetResourceDepthTexture.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public override void Dispose() {
            base.Dispose();

            if (DepthView != null) {
                DepthView.Dispose();
                DepthView = null;
            }
        }