draw.ts 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. /**
  2. * Copyright (c) 2019-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author Áron Samuel Kovács <aron.kovacs@mail.muni.cz>
  6. */
  7. import { WebGLContext } from '../../mol-gl/webgl/context';
  8. import { createNullRenderTarget, RenderTarget } from '../../mol-gl/webgl/render-target';
  9. import { Renderer } from '../../mol-gl/renderer';
  10. import { Scene } from '../../mol-gl/scene';
  11. import { Texture } from '../../mol-gl/webgl/texture';
  12. import { Camera, ICamera } from '../camera';
  13. import { ValueCell } from '../../mol-util';
  14. import { Vec2 } from '../../mol-math/linear-algebra';
  15. import { Helper } from '../helper/helper';
  16. import { StereoCamera } from '../camera/stereo';
  17. import { WboitPass } from './wboit';
  18. import { AntialiasingPass, PostprocessingPass, PostprocessingProps } from './postprocessing';
  19. import { MarkingPass, MarkingProps } from './marking';
  20. import { CopyRenderable, createCopyRenderable } from '../../mol-gl/compute/util';
  21. import { isTimingMode } from '../../mol-util/debug';
  22. import { AssetManager } from '../../mol-util/assets';
  23. type Props = {
  24. postprocessing: PostprocessingProps;
  25. marking: MarkingProps;
  26. transparentBackground: boolean;
  27. }
  28. type RenderContext = {
  29. renderer: Renderer;
  30. camera: Camera | StereoCamera;
  31. scene: Scene;
  32. helper: Helper;
  33. }
  34. export class DrawPass {
  35. private readonly drawTarget: RenderTarget;
  36. readonly colorTarget: RenderTarget;
  37. readonly depthTextureTransparent: Texture;
  38. readonly depthTextureOpaque: Texture;
  39. readonly packedDepth: boolean;
  40. private depthTargetTransparent: RenderTarget;
  41. private depthTargetOpaque: RenderTarget | null;
  42. private copyFboTarget: CopyRenderable;
  43. private copyFboPostprocessing: CopyRenderable;
  44. private readonly wboit: WboitPass | undefined;
  45. private readonly marking: MarkingPass;
  46. readonly postprocessing: PostprocessingPass;
  47. private readonly antialiasing: AntialiasingPass;
  48. get wboitEnabled() {
  49. return !!this.wboit?.supported;
  50. }
  51. constructor(private webgl: WebGLContext, assetManager: AssetManager, width: number, height: number, enableWboit: boolean) {
  52. const { extensions, resources, isWebGL2 } = webgl;
  53. this.drawTarget = createNullRenderTarget(webgl.gl);
  54. this.colorTarget = webgl.createRenderTarget(width, height, true, 'uint8', 'linear');
  55. this.packedDepth = !extensions.depthTexture;
  56. this.depthTargetTransparent = webgl.createRenderTarget(width, height);
  57. this.depthTextureTransparent = this.depthTargetTransparent.texture;
  58. this.depthTargetOpaque = this.packedDepth ? webgl.createRenderTarget(width, height) : null;
  59. this.depthTextureOpaque = this.depthTargetOpaque ? this.depthTargetOpaque.texture : resources.texture('image-depth', 'depth', isWebGL2 ? 'float' : 'ushort', 'nearest');
  60. if (!this.packedDepth) {
  61. this.depthTextureOpaque.define(width, height);
  62. }
  63. this.wboit = enableWboit ? new WboitPass(webgl, width, height) : undefined;
  64. this.marking = new MarkingPass(webgl, width, height);
  65. this.postprocessing = new PostprocessingPass(webgl, assetManager, this);
  66. this.antialiasing = new AntialiasingPass(webgl, this);
  67. this.copyFboTarget = createCopyRenderable(webgl, this.colorTarget.texture);
  68. this.copyFboPostprocessing = createCopyRenderable(webgl, this.postprocessing.target.texture);
  69. }
  70. reset() {
  71. this.wboit?.reset();
  72. }
  73. setSize(width: number, height: number) {
  74. const w = this.colorTarget.getWidth();
  75. const h = this.colorTarget.getHeight();
  76. if (width !== w || height !== h) {
  77. this.colorTarget.setSize(width, height);
  78. this.depthTargetTransparent.setSize(width, height);
  79. if (this.depthTargetOpaque) {
  80. this.depthTargetOpaque.setSize(width, height);
  81. } else {
  82. this.depthTextureOpaque.define(width, height);
  83. }
  84. ValueCell.update(this.copyFboTarget.values.uTexSize, Vec2.set(this.copyFboTarget.values.uTexSize.ref.value, width, height));
  85. ValueCell.update(this.copyFboPostprocessing.values.uTexSize, Vec2.set(this.copyFboPostprocessing.values.uTexSize.ref.value, width, height));
  86. if (this.wboit?.supported) {
  87. this.wboit.setSize(width, height);
  88. }
  89. this.marking.setSize(width, height);
  90. this.postprocessing.setSize(width, height);
  91. this.antialiasing.setSize(width, height);
  92. }
  93. }
  94. private _renderWboit(renderer: Renderer, camera: ICamera, scene: Scene, transparentBackground: boolean, postprocessingProps: PostprocessingProps) {
  95. if (!this.wboit?.supported) throw new Error('expected wboit to be supported');
  96. this.colorTarget.bind();
  97. renderer.clear(true);
  98. // render opaque primitives
  99. this.depthTextureOpaque.attachFramebuffer(this.colorTarget.framebuffer, 'depth');
  100. this.colorTarget.bind();
  101. renderer.clearDepth();
  102. renderer.renderWboitOpaque(scene.primitives, camera, null);
  103. if (PostprocessingPass.isEnabled(postprocessingProps)) {
  104. if (PostprocessingPass.isOutlineEnabled(postprocessingProps)) {
  105. this.depthTargetTransparent.bind();
  106. renderer.clearDepth(true);
  107. if (scene.opacityAverage < 1) {
  108. renderer.renderDepthTransparent(scene.primitives, camera, this.depthTextureOpaque);
  109. }
  110. }
  111. this.postprocessing.render(camera, false, transparentBackground, renderer.props.backgroundColor, postprocessingProps);
  112. }
  113. // render transparent primitives and volumes
  114. if (scene.opacityAverage < 1 || scene.volumes.renderables.length > 0) {
  115. this.wboit.bind();
  116. if (scene.opacityAverage < 1) {
  117. renderer.renderWboitTransparent(scene.primitives, camera, this.depthTextureOpaque);
  118. }
  119. if (scene.volumes.renderables.length > 0) {
  120. renderer.renderWboitTransparent(scene.volumes, camera, this.depthTextureOpaque);
  121. }
  122. // evaluate wboit
  123. if (PostprocessingPass.isEnabled(postprocessingProps)) {
  124. this.postprocessing.target.bind();
  125. } else {
  126. this.colorTarget.bind();
  127. }
  128. this.wboit.render();
  129. }
  130. }
  131. private _renderBlended(renderer: Renderer, camera: ICamera, scene: Scene, toDrawingBuffer: boolean, transparentBackground: boolean, postprocessingProps: PostprocessingProps) {
  132. if (toDrawingBuffer) {
  133. this.drawTarget.bind();
  134. } else {
  135. this.colorTarget.bind();
  136. if (!this.packedDepth) {
  137. this.depthTextureOpaque.attachFramebuffer(this.colorTarget.framebuffer, 'depth');
  138. }
  139. }
  140. renderer.clear(true);
  141. renderer.renderBlendedOpaque(scene.primitives, camera, null);
  142. if (!toDrawingBuffer) {
  143. // do a depth pass if not rendering to drawing buffer and
  144. // extensions.depthTexture is unsupported (i.e. depthTarget is set)
  145. if (this.depthTargetOpaque) {
  146. this.depthTargetOpaque.bind();
  147. renderer.clearDepth(true);
  148. renderer.renderDepthOpaque(scene.primitives, camera, null);
  149. this.colorTarget.bind();
  150. }
  151. if (PostprocessingPass.isEnabled(postprocessingProps)) {
  152. if (!this.packedDepth) {
  153. this.depthTextureOpaque.detachFramebuffer(this.postprocessing.target.framebuffer, 'depth');
  154. } else {
  155. this.colorTarget.depthRenderbuffer?.detachFramebuffer(this.postprocessing.target.framebuffer);
  156. }
  157. if (PostprocessingPass.isOutlineEnabled(postprocessingProps)) {
  158. this.depthTargetTransparent.bind();
  159. renderer.clearDepth(true);
  160. if (scene.opacityAverage < 1) {
  161. renderer.renderDepthTransparent(scene.primitives, camera, this.depthTextureOpaque);
  162. }
  163. }
  164. this.postprocessing.render(camera, false, transparentBackground, renderer.props.backgroundColor, postprocessingProps);
  165. if (!this.packedDepth) {
  166. this.depthTextureOpaque.attachFramebuffer(this.postprocessing.target.framebuffer, 'depth');
  167. } else {
  168. this.colorTarget.depthRenderbuffer?.attachFramebuffer(this.postprocessing.target.framebuffer);
  169. }
  170. }
  171. if (scene.volumes.renderables.length > 0) {
  172. const target = PostprocessingPass.isEnabled(postprocessingProps)
  173. ? this.postprocessing.target : this.colorTarget;
  174. if (!this.packedDepth) {
  175. this.depthTextureOpaque.detachFramebuffer(target.framebuffer, 'depth');
  176. } else {
  177. this.colorTarget.depthRenderbuffer?.detachFramebuffer(target.framebuffer);
  178. }
  179. target.bind();
  180. renderer.renderBlendedVolume(scene.volumes, camera, this.depthTextureOpaque);
  181. if (!this.packedDepth) {
  182. this.depthTextureOpaque.attachFramebuffer(target.framebuffer, 'depth');
  183. } else {
  184. this.colorTarget.depthRenderbuffer?.attachFramebuffer(target.framebuffer);
  185. }
  186. target.bind();
  187. }
  188. }
  189. if (scene.opacityAverage < 1) {
  190. renderer.renderBlendedTransparent(scene.primitives, camera, null);
  191. }
  192. }
  193. private _render(renderer: Renderer, camera: ICamera, scene: Scene, helper: Helper, toDrawingBuffer: boolean, transparentBackground: boolean, props: Props) {
  194. const volumeRendering = scene.volumes.renderables.length > 0;
  195. const postprocessingEnabled = PostprocessingPass.isEnabled(props.postprocessing);
  196. const antialiasingEnabled = AntialiasingPass.isEnabled(props.postprocessing);
  197. const markingEnabled = MarkingPass.isEnabled(props.marking);
  198. const { x, y, width, height } = camera.viewport;
  199. renderer.setViewport(x, y, width, height);
  200. renderer.update(camera);
  201. if (transparentBackground && !antialiasingEnabled && toDrawingBuffer) {
  202. this.drawTarget.bind();
  203. renderer.clear(false);
  204. }
  205. if (this.wboitEnabled) {
  206. this._renderWboit(renderer, camera, scene, transparentBackground, props.postprocessing);
  207. } else {
  208. this._renderBlended(renderer, camera, scene, !volumeRendering && !postprocessingEnabled && !antialiasingEnabled && toDrawingBuffer, transparentBackground, props.postprocessing);
  209. }
  210. if (postprocessingEnabled) {
  211. this.postprocessing.target.bind();
  212. } else if (!toDrawingBuffer || volumeRendering || this.wboitEnabled) {
  213. this.colorTarget.bind();
  214. } else {
  215. this.drawTarget.bind();
  216. }
  217. if (markingEnabled) {
  218. if (scene.markerAverage > 0) {
  219. const markingDepthTest = props.marking.ghostEdgeStrength < 1;
  220. if (markingDepthTest && scene.markerAverage !== 1) {
  221. this.marking.depthTarget.bind();
  222. renderer.clear(false, true);
  223. renderer.renderMarkingDepth(scene.primitives, camera, null);
  224. }
  225. this.marking.maskTarget.bind();
  226. renderer.clear(false, true);
  227. renderer.renderMarkingMask(scene.primitives, camera, markingDepthTest ? this.marking.depthTarget.texture : null);
  228. this.marking.update(props.marking);
  229. this.marking.render(camera.viewport, postprocessingEnabled ? this.postprocessing.target : this.colorTarget);
  230. }
  231. }
  232. if (helper.debug.isEnabled) {
  233. helper.debug.syncVisibility();
  234. renderer.renderBlended(helper.debug.scene, camera);
  235. }
  236. if (helper.handle.isEnabled) {
  237. renderer.renderBlended(helper.handle.scene, camera);
  238. }
  239. if (helper.camera.isEnabled) {
  240. helper.camera.update(camera);
  241. renderer.update(helper.camera.camera);
  242. renderer.renderBlended(helper.camera.scene, helper.camera.camera);
  243. }
  244. if (antialiasingEnabled) {
  245. this.antialiasing.render(camera, toDrawingBuffer, props.postprocessing);
  246. } else if (toDrawingBuffer) {
  247. this.drawTarget.bind();
  248. this.webgl.state.disable(this.webgl.gl.DEPTH_TEST);
  249. if (postprocessingEnabled) {
  250. this.copyFboPostprocessing.render();
  251. } else if (volumeRendering || this.wboitEnabled) {
  252. this.copyFboTarget.render();
  253. }
  254. }
  255. this.webgl.gl.flush();
  256. }
  257. render(ctx: RenderContext, props: Props, toDrawingBuffer: boolean) {
  258. if (isTimingMode) this.webgl.timer.mark('DrawPass.render');
  259. const { renderer, camera, scene, helper } = ctx;
  260. this.postprocessing.setTransparentBackground(props.transparentBackground);
  261. const transparentBackground = props.transparentBackground || this.postprocessing.background.isEnabled(props.postprocessing.background);
  262. renderer.setTransparentBackground(transparentBackground);
  263. renderer.setDrawingBufferSize(this.colorTarget.getWidth(), this.colorTarget.getHeight());
  264. renderer.setPixelRatio(this.webgl.pixelRatio);
  265. if (StereoCamera.is(camera)) {
  266. this._render(renderer, camera.left, scene, helper, toDrawingBuffer, transparentBackground, props);
  267. this._render(renderer, camera.right, scene, helper, toDrawingBuffer, transparentBackground, props);
  268. } else {
  269. this._render(renderer, camera, scene, helper, toDrawingBuffer, transparentBackground, props);
  270. }
  271. if (isTimingMode) this.webgl.timer.markEnd('DrawPass.render');
  272. }
  273. getColorTarget(postprocessingProps: PostprocessingProps): RenderTarget {
  274. if (AntialiasingPass.isEnabled(postprocessingProps)) {
  275. return this.antialiasing.target;
  276. } else if (PostprocessingPass.isEnabled(postprocessingProps)) {
  277. return this.postprocessing.target;
  278. }
  279. return this.colorTarget;
  280. }
  281. }