123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- /**
- * Copyright (c) 2019-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- * @author Áron Samuel Kovács <aron.kovacs@mail.muni.cz>
- */
- import { WebGLContext } from '../../mol-gl/webgl/context';
- import { createNullRenderTarget, RenderTarget } from '../../mol-gl/webgl/render-target';
- import { Renderer } from '../../mol-gl/renderer';
- import { Scene } from '../../mol-gl/scene';
- import { Texture } from '../../mol-gl/webgl/texture';
- import { Camera, ICamera } from '../camera';
- import { ValueCell } from '../../mol-util';
- import { Vec2 } from '../../mol-math/linear-algebra';
- import { Helper } from '../helper/helper';
- import { StereoCamera } from '../camera/stereo';
- import { WboitPass } from './wboit';
- import { AntialiasingPass, PostprocessingPass, PostprocessingProps } from './postprocessing';
- import { MarkingPass, MarkingProps } from './marking';
- import { CopyRenderable, createCopyRenderable } from '../../mol-gl/compute/util';
- import { isTimingMode } from '../../mol-util/debug';
- import { AssetManager } from '../../mol-util/assets';
- type Props = {
- postprocessing: PostprocessingProps;
- marking: MarkingProps;
- transparentBackground: boolean;
- }
- type RenderContext = {
- renderer: Renderer;
- camera: Camera | StereoCamera;
- scene: Scene;
- helper: Helper;
- }
- export class DrawPass {
- private readonly drawTarget: RenderTarget;
- readonly colorTarget: RenderTarget;
- readonly depthTextureTransparent: Texture;
- readonly depthTextureOpaque: Texture;
- readonly packedDepth: boolean;
- private depthTargetTransparent: RenderTarget;
- private depthTargetOpaque: RenderTarget | null;
- private copyFboTarget: CopyRenderable;
- private copyFboPostprocessing: CopyRenderable;
- private readonly wboit: WboitPass | undefined;
- private readonly marking: MarkingPass;
- readonly postprocessing: PostprocessingPass;
- private readonly antialiasing: AntialiasingPass;
- get wboitEnabled() {
- return !!this.wboit?.supported;
- }
- constructor(private webgl: WebGLContext, assetManager: AssetManager, width: number, height: number, enableWboit: boolean) {
- const { extensions, resources, isWebGL2 } = webgl;
- this.drawTarget = createNullRenderTarget(webgl.gl);
- this.colorTarget = webgl.createRenderTarget(width, height, true, 'uint8', 'linear');
- this.packedDepth = !extensions.depthTexture;
- this.depthTargetTransparent = webgl.createRenderTarget(width, height);
- this.depthTextureTransparent = this.depthTargetTransparent.texture;
- this.depthTargetOpaque = this.packedDepth ? webgl.createRenderTarget(width, height) : null;
- this.depthTextureOpaque = this.depthTargetOpaque ? this.depthTargetOpaque.texture : resources.texture('image-depth', 'depth', isWebGL2 ? 'float' : 'ushort', 'nearest');
- if (!this.packedDepth) {
- this.depthTextureOpaque.define(width, height);
- }
- this.wboit = enableWboit ? new WboitPass(webgl, width, height) : undefined;
- this.marking = new MarkingPass(webgl, width, height);
- this.postprocessing = new PostprocessingPass(webgl, assetManager, this);
- this.antialiasing = new AntialiasingPass(webgl, this);
- this.copyFboTarget = createCopyRenderable(webgl, this.colorTarget.texture);
- this.copyFboPostprocessing = createCopyRenderable(webgl, this.postprocessing.target.texture);
- }
- reset() {
- this.wboit?.reset();
- }
- setSize(width: number, height: number) {
- const w = this.colorTarget.getWidth();
- const h = this.colorTarget.getHeight();
- if (width !== w || height !== h) {
- this.colorTarget.setSize(width, height);
- this.depthTargetTransparent.setSize(width, height);
- if (this.depthTargetOpaque) {
- this.depthTargetOpaque.setSize(width, height);
- } else {
- this.depthTextureOpaque.define(width, height);
- }
- ValueCell.update(this.copyFboTarget.values.uTexSize, Vec2.set(this.copyFboTarget.values.uTexSize.ref.value, width, height));
- ValueCell.update(this.copyFboPostprocessing.values.uTexSize, Vec2.set(this.copyFboPostprocessing.values.uTexSize.ref.value, width, height));
- if (this.wboit?.supported) {
- this.wboit.setSize(width, height);
- }
- this.marking.setSize(width, height);
- this.postprocessing.setSize(width, height);
- this.antialiasing.setSize(width, height);
- }
- }
- private _renderWboit(renderer: Renderer, camera: ICamera, scene: Scene, transparentBackground: boolean, postprocessingProps: PostprocessingProps) {
- if (!this.wboit?.supported) throw new Error('expected wboit to be supported');
- this.colorTarget.bind();
- renderer.clear(true);
- // render opaque primitives
- this.depthTextureOpaque.attachFramebuffer(this.colorTarget.framebuffer, 'depth');
- this.colorTarget.bind();
- renderer.clearDepth();
- renderer.renderWboitOpaque(scene.primitives, camera, null);
- if (PostprocessingPass.isEnabled(postprocessingProps)) {
- if (PostprocessingPass.isOutlineEnabled(postprocessingProps)) {
- this.depthTargetTransparent.bind();
- renderer.clearDepth(true);
- if (scene.opacityAverage < 1) {
- renderer.renderDepthTransparent(scene.primitives, camera, this.depthTextureOpaque);
- }
- }
- this.postprocessing.render(camera, false, transparentBackground, renderer.props.backgroundColor, postprocessingProps);
- }
- // render transparent primitives and volumes
- if (scene.opacityAverage < 1 || scene.volumes.renderables.length > 0) {
- this.wboit.bind();
- if (scene.opacityAverage < 1) {
- renderer.renderWboitTransparent(scene.primitives, camera, this.depthTextureOpaque);
- }
- if (scene.volumes.renderables.length > 0) {
- renderer.renderWboitTransparent(scene.volumes, camera, this.depthTextureOpaque);
- }
- // evaluate wboit
- if (PostprocessingPass.isEnabled(postprocessingProps)) {
- this.postprocessing.target.bind();
- } else {
- this.colorTarget.bind();
- }
- this.wboit.render();
- }
- }
- private _renderBlended(renderer: Renderer, camera: ICamera, scene: Scene, toDrawingBuffer: boolean, transparentBackground: boolean, postprocessingProps: PostprocessingProps) {
- if (toDrawingBuffer) {
- this.drawTarget.bind();
- } else {
- this.colorTarget.bind();
- if (!this.packedDepth) {
- this.depthTextureOpaque.attachFramebuffer(this.colorTarget.framebuffer, 'depth');
- }
- }
- renderer.clear(true);
- renderer.renderBlendedOpaque(scene.primitives, camera, null);
- if (!toDrawingBuffer) {
- // do a depth pass if not rendering to drawing buffer and
- // extensions.depthTexture is unsupported (i.e. depthTarget is set)
- if (this.depthTargetOpaque) {
- this.depthTargetOpaque.bind();
- renderer.clearDepth(true);
- renderer.renderDepthOpaque(scene.primitives, camera, null);
- this.colorTarget.bind();
- }
- if (PostprocessingPass.isEnabled(postprocessingProps)) {
- if (!this.packedDepth) {
- this.depthTextureOpaque.detachFramebuffer(this.postprocessing.target.framebuffer, 'depth');
- } else {
- this.colorTarget.depthRenderbuffer?.detachFramebuffer(this.postprocessing.target.framebuffer);
- }
- if (PostprocessingPass.isOutlineEnabled(postprocessingProps)) {
- this.depthTargetTransparent.bind();
- renderer.clearDepth(true);
- if (scene.opacityAverage < 1) {
- renderer.renderDepthTransparent(scene.primitives, camera, this.depthTextureOpaque);
- }
- }
- this.postprocessing.render(camera, false, transparentBackground, renderer.props.backgroundColor, postprocessingProps);
- if (!this.packedDepth) {
- this.depthTextureOpaque.attachFramebuffer(this.postprocessing.target.framebuffer, 'depth');
- } else {
- this.colorTarget.depthRenderbuffer?.attachFramebuffer(this.postprocessing.target.framebuffer);
- }
- }
- if (scene.volumes.renderables.length > 0) {
- const target = PostprocessingPass.isEnabled(postprocessingProps)
- ? this.postprocessing.target : this.colorTarget;
- if (!this.packedDepth) {
- this.depthTextureOpaque.detachFramebuffer(target.framebuffer, 'depth');
- } else {
- this.colorTarget.depthRenderbuffer?.detachFramebuffer(target.framebuffer);
- }
- target.bind();
- renderer.renderBlendedVolume(scene.volumes, camera, this.depthTextureOpaque);
- if (!this.packedDepth) {
- this.depthTextureOpaque.attachFramebuffer(target.framebuffer, 'depth');
- } else {
- this.colorTarget.depthRenderbuffer?.attachFramebuffer(target.framebuffer);
- }
- target.bind();
- }
- }
- if (scene.opacityAverage < 1) {
- renderer.renderBlendedTransparent(scene.primitives, camera, null);
- }
- }
- private _render(renderer: Renderer, camera: ICamera, scene: Scene, helper: Helper, toDrawingBuffer: boolean, transparentBackground: boolean, props: Props) {
- const volumeRendering = scene.volumes.renderables.length > 0;
- const postprocessingEnabled = PostprocessingPass.isEnabled(props.postprocessing);
- const antialiasingEnabled = AntialiasingPass.isEnabled(props.postprocessing);
- const markingEnabled = MarkingPass.isEnabled(props.marking);
- const { x, y, width, height } = camera.viewport;
- renderer.setViewport(x, y, width, height);
- renderer.update(camera);
- if (transparentBackground && !antialiasingEnabled && toDrawingBuffer) {
- this.drawTarget.bind();
- renderer.clear(false);
- }
- if (this.wboitEnabled) {
- this._renderWboit(renderer, camera, scene, transparentBackground, props.postprocessing);
- } else {
- this._renderBlended(renderer, camera, scene, !volumeRendering && !postprocessingEnabled && !antialiasingEnabled && toDrawingBuffer, transparentBackground, props.postprocessing);
- }
- if (postprocessingEnabled) {
- this.postprocessing.target.bind();
- } else if (!toDrawingBuffer || volumeRendering || this.wboitEnabled) {
- this.colorTarget.bind();
- } else {
- this.drawTarget.bind();
- }
- if (markingEnabled) {
- if (scene.markerAverage > 0) {
- const markingDepthTest = props.marking.ghostEdgeStrength < 1;
- if (markingDepthTest && scene.markerAverage !== 1) {
- this.marking.depthTarget.bind();
- renderer.clear(false, true);
- renderer.renderMarkingDepth(scene.primitives, camera, null);
- }
- this.marking.maskTarget.bind();
- renderer.clear(false, true);
- renderer.renderMarkingMask(scene.primitives, camera, markingDepthTest ? this.marking.depthTarget.texture : null);
- this.marking.update(props.marking);
- this.marking.render(camera.viewport, postprocessingEnabled ? this.postprocessing.target : this.colorTarget);
- }
- }
- if (helper.debug.isEnabled) {
- helper.debug.syncVisibility();
- renderer.renderBlended(helper.debug.scene, camera);
- }
- if (helper.handle.isEnabled) {
- renderer.renderBlended(helper.handle.scene, camera);
- }
- if (helper.camera.isEnabled) {
- helper.camera.update(camera);
- renderer.update(helper.camera.camera);
- renderer.renderBlended(helper.camera.scene, helper.camera.camera);
- }
- if (antialiasingEnabled) {
- this.antialiasing.render(camera, toDrawingBuffer, props.postprocessing);
- } else if (toDrawingBuffer) {
- this.drawTarget.bind();
- this.webgl.state.disable(this.webgl.gl.DEPTH_TEST);
- if (postprocessingEnabled) {
- this.copyFboPostprocessing.render();
- } else if (volumeRendering || this.wboitEnabled) {
- this.copyFboTarget.render();
- }
- }
- this.webgl.gl.flush();
- }
- render(ctx: RenderContext, props: Props, toDrawingBuffer: boolean) {
- if (isTimingMode) this.webgl.timer.mark('DrawPass.render');
- const { renderer, camera, scene, helper } = ctx;
- this.postprocessing.setTransparentBackground(props.transparentBackground);
- const transparentBackground = props.transparentBackground || this.postprocessing.background.isEnabled(props.postprocessing.background);
- renderer.setTransparentBackground(transparentBackground);
- renderer.setDrawingBufferSize(this.colorTarget.getWidth(), this.colorTarget.getHeight());
- renderer.setPixelRatio(this.webgl.pixelRatio);
- if (StereoCamera.is(camera)) {
- this._render(renderer, camera.left, scene, helper, toDrawingBuffer, transparentBackground, props);
- this._render(renderer, camera.right, scene, helper, toDrawingBuffer, transparentBackground, props);
- } else {
- this._render(renderer, camera, scene, helper, toDrawingBuffer, transparentBackground, props);
- }
- if (isTimingMode) this.webgl.timer.markEnd('DrawPass.render');
- }
- getColorTarget(postprocessingProps: PostprocessingProps): RenderTarget {
- if (AntialiasingPass.isEnabled(postprocessingProps)) {
- return this.antialiasing.target;
- } else if (PostprocessingPass.isEnabled(postprocessingProps)) {
- return this.postprocessing.target;
- }
- return this.colorTarget;
- }
- }
|