Skip to content
Snippets Groups Projects
Commit 304414f6 authored by Alexander Rose's avatar Alexander Rose
Browse files

renamed 'draw' render variant to 'color'

parent 015bcdf7
No related branches found
No related tags found
No related merge requests found
...@@ -19,8 +19,8 @@ import { Model, Structure } from 'mol-model/structure'; ...@@ -19,8 +19,8 @@ import { Model, Structure } from 'mol-model/structure';
import { ajaxGet } from 'mol-util/data-source'; import { ajaxGet } from 'mol-util/data-source';
import { ColorNames } from 'mol-util/color/tables'; import { ColorNames } from 'mol-util/color/tables';
const width = 1024 const width = 2048
const height = 768 const height = 1536
const gl = createContext(width, height, { const gl = createContext(width, height, {
alpha: false, alpha: false,
antialias: true, antialias: true,
...@@ -104,7 +104,7 @@ async function run(id: string, out: string) { ...@@ -104,7 +104,7 @@ async function run(id: string, out: string) {
} }
setTimeout(() => { setTimeout(() => {
const pixelData = canvas3d.getPixelData('draw') const pixelData = canvas3d.getPixelData('color')
const png = new PNG({ width, height }) const png = new PNG({ width, height })
png.data = Buffer.from(pixelData.array) png.data = Buffer.from(pixelData.array)
png.pack().pipe(fs.createWriteStream(out)).on('finish', () => { png.pack().pipe(fs.createWriteStream(out)).on('finish', () => {
......
...@@ -130,16 +130,16 @@ namespace Canvas3D { ...@@ -130,16 +130,16 @@ namespace Canvas3D {
const controls = TrackballControls.create(input, camera, p.trackball) const controls = TrackballControls.create(input, camera, p.trackball)
const renderer = Renderer.create(webgl, camera, p.renderer) const renderer = Renderer.create(webgl, camera, p.renderer)
const drawTarget = createRenderTarget(webgl, width, height) const colorTarget = createRenderTarget(webgl, width, height)
const depthTarget = webgl.extensions.depthTexture ? null : createRenderTarget(webgl, width, height) const depthTarget = webgl.extensions.depthTexture ? null : createRenderTarget(webgl, width, height)
const depthTexture = depthTarget ? depthTarget.texture : createTexture(webgl, 'image-depth', 'depth', 'ushort', 'nearest') const depthTexture = depthTarget ? depthTarget.texture : createTexture(webgl, 'image-depth', 'depth', 'ushort', 'nearest')
if (!depthTarget) { if (!depthTarget) {
depthTexture.define(width, height) depthTexture.define(width, height)
depthTexture.attachFramebuffer(drawTarget.framebuffer, 'depth') depthTexture.attachFramebuffer(colorTarget.framebuffer, 'depth')
} }
const postprocessing = new PostprocessingPass(webgl, drawTarget.texture, depthTexture, !!depthTarget, p.postprocessing) const postprocessing = new PostprocessingPass(webgl, colorTarget.texture, depthTexture, !!depthTarget, p.postprocessing)
const multiSample = new MultiSamplePass(webgl, camera, drawTarget, postprocessing, renderDraw, p.multiSample) const multiSample = new MultiSamplePass(webgl, camera, colorTarget, postprocessing, renderDraw, p.multiSample)
const pickBaseScale = 0.5 const pickBaseScale = 0.5
let pickScale = pickBaseScale / webgl.pixelRatio let pickScale = pickBaseScale / webgl.pixelRatio
...@@ -221,10 +221,10 @@ namespace Canvas3D { ...@@ -221,10 +221,10 @@ namespace Canvas3D {
function renderDraw() { function renderDraw() {
renderer.setViewport(0, 0, width, height) renderer.setViewport(0, 0, width, height)
renderer.render(scene, 'draw', true) renderer.render(scene, 'color', true)
if (debugHelper.isEnabled) { if (debugHelper.isEnabled) {
debugHelper.syncVisibility() debugHelper.syncVisibility()
renderer.render(debugHelper.scene, 'draw', false) renderer.render(debugHelper.scene, 'color', false)
} }
if (postprocessing.enabled && depthTarget) { if (postprocessing.enabled && depthTarget) {
...@@ -263,7 +263,7 @@ namespace Canvas3D { ...@@ -263,7 +263,7 @@ namespace Canvas3D {
if (multiSample.enabled) { if (multiSample.enabled) {
multiSample.render() multiSample.render()
} else { } else {
if (postprocessing.enabled) drawTarget.bind() if (postprocessing.enabled) colorTarget.bind()
else webgl.unbindFramebuffer() else webgl.unbindFramebuffer()
renderDraw() renderDraw()
if (postprocessing.enabled) postprocessing.render(true) if (postprocessing.enabled) postprocessing.render(true)
...@@ -426,7 +426,7 @@ namespace Canvas3D { ...@@ -426,7 +426,7 @@ namespace Canvas3D {
}, },
getPixelData: (variant: GraphicsRenderVariant) => { getPixelData: (variant: GraphicsRenderVariant) => {
switch (variant) { switch (variant) {
case 'draw': return webgl.getDrawingBufferPixelData() case 'color': return webgl.getDrawingBufferPixelData()
case 'pickObject': return objectPickTarget.getPixelData() case 'pickObject': return objectPickTarget.getPixelData()
case 'pickInstance': return instancePickTarget.getPixelData() case 'pickInstance': return instancePickTarget.getPixelData()
case 'pickGroup': return groupPickTarget.getPixelData() case 'pickGroup': return groupPickTarget.getPixelData()
...@@ -497,7 +497,7 @@ namespace Canvas3D { ...@@ -497,7 +497,7 @@ namespace Canvas3D {
Viewport.set(camera.viewport, 0, 0, width, height) Viewport.set(camera.viewport, 0, 0, width, height)
Viewport.set(controls.viewport, 0, 0, width, height) Viewport.set(controls.viewport, 0, 0, width, height)
drawTarget.setSize(width, height) colorTarget.setSize(width, height)
postprocessing.setSize(width, height) postprocessing.setSize(width, height)
multiSample.setSize(width, height) multiSample.setSize(width, height)
......
...@@ -62,11 +62,11 @@ export class MultiSamplePass { ...@@ -62,11 +62,11 @@ export class MultiSamplePass {
private currentTime = 0 private currentTime = 0
private lastRenderTime = 0 private lastRenderTime = 0
constructor(private webgl: WebGLContext, private camera: Camera, private drawTarget: RenderTarget, private postprocessing: PostprocessingPass, private renderDraw: () => void, props: Partial<MultiSampleProps>) { constructor(private webgl: WebGLContext, private camera: Camera, private colorTarget: RenderTarget, private postprocessing: PostprocessingPass, private renderDraw: () => void, props: Partial<MultiSampleProps>) {
const { gl } = webgl const { gl } = webgl
this.composeTarget = createRenderTarget(webgl, gl.drawingBufferWidth, gl.drawingBufferHeight) this.composeTarget = createRenderTarget(webgl, gl.drawingBufferWidth, gl.drawingBufferHeight)
this.holdTarget = createRenderTarget(webgl, gl.drawingBufferWidth, gl.drawingBufferHeight) this.holdTarget = createRenderTarget(webgl, gl.drawingBufferWidth, gl.drawingBufferHeight)
this.compose = getComposeRenderable(webgl, drawTarget.texture) this.compose = getComposeRenderable(webgl, colorTarget.texture)
this.props = { ...PD.getDefaultValues(MultiSampleParams), ...props } this.props = { ...PD.getDefaultValues(MultiSampleParams), ...props }
} }
...@@ -110,7 +110,7 @@ export class MultiSamplePass { ...@@ -110,7 +110,7 @@ export class MultiSamplePass {
} }
private renderMultiSample() { private renderMultiSample() {
const { camera, compose, drawTarget, composeTarget, postprocessing, renderDraw, webgl } = this const { camera, compose, colorTarget, composeTarget, postprocessing, renderDraw, webgl } = this
const { gl, state } = webgl const { gl, state } = webgl
// based on the Multisample Anti-Aliasing Render Pass // based on the Multisample Anti-Aliasing Render Pass
...@@ -124,10 +124,10 @@ export class MultiSamplePass { ...@@ -124,10 +124,10 @@ export class MultiSamplePass {
const roundingRange = 1 / 32 const roundingRange = 1 / 32
camera.viewOffset.enabled = true camera.viewOffset.enabled = true
ValueCell.update(compose.values.tColor, postprocessing.enabled ? postprocessing.target.texture : drawTarget.texture) ValueCell.update(compose.values.tColor, postprocessing.enabled ? postprocessing.target.texture : colorTarget.texture)
compose.update() compose.update()
const { width, height } = drawTarget const { width, height } = colorTarget
// render the scene multiple times, each slightly jitter offset // render the scene multiple times, each slightly jitter offset
// from the last and accumulate the results. // from the last and accumulate the results.
...@@ -144,7 +144,7 @@ export class MultiSamplePass { ...@@ -144,7 +144,7 @@ export class MultiSamplePass {
ValueCell.update(compose.values.uWeight, sampleWeight) ValueCell.update(compose.values.uWeight, sampleWeight)
// render scene and optionally postprocess // render scene and optionally postprocess
drawTarget.bind() colorTarget.bind()
renderDraw() renderDraw()
if (postprocessing.enabled) postprocessing.render(false) if (postprocessing.enabled) postprocessing.render(false)
...@@ -178,7 +178,7 @@ export class MultiSamplePass { ...@@ -178,7 +178,7 @@ export class MultiSamplePass {
} }
private renderTemporalMultiSample() { private renderTemporalMultiSample() {
const { camera, compose, drawTarget, composeTarget, holdTarget, postprocessing, renderDraw, webgl } = this const { camera, compose, colorTarget, composeTarget, holdTarget, postprocessing, renderDraw, webgl } = this
const { gl, state } = webgl const { gl, state } = webgl
// based on the Multisample Anti-Aliasing Render Pass // based on the Multisample Anti-Aliasing Render Pass
...@@ -197,11 +197,11 @@ export class MultiSamplePass { ...@@ -197,11 +197,11 @@ export class MultiSamplePass {
const i = this.sampleIndex const i = this.sampleIndex
if (i === 0) { if (i === 0) {
drawTarget.bind() colorTarget.bind()
renderDraw() renderDraw()
if (postprocessing.enabled) postprocessing.render(false) if (postprocessing.enabled) postprocessing.render(false)
ValueCell.update(compose.values.uWeight, 1.0) ValueCell.update(compose.values.uWeight, 1.0)
ValueCell.update(compose.values.tColor, postprocessing.enabled ? postprocessing.target.texture : drawTarget.texture) ValueCell.update(compose.values.tColor, postprocessing.enabled ? postprocessing.target.texture : colorTarget.texture)
compose.update() compose.update()
holdTarget.bind() holdTarget.bind()
...@@ -212,11 +212,11 @@ export class MultiSamplePass { ...@@ -212,11 +212,11 @@ export class MultiSamplePass {
const sampleWeight = 1.0 / offsetList.length const sampleWeight = 1.0 / offsetList.length
camera.viewOffset.enabled = true camera.viewOffset.enabled = true
ValueCell.update(compose.values.tColor, postprocessing.enabled ? postprocessing.target.texture : drawTarget.texture) ValueCell.update(compose.values.tColor, postprocessing.enabled ? postprocessing.target.texture : colorTarget.texture)
ValueCell.update(compose.values.uWeight, sampleWeight) ValueCell.update(compose.values.uWeight, sampleWeight)
compose.update() compose.update()
const { width, height } = drawTarget const { width, height } = colorTarget
// render the scene multiple times, each slightly jitter offset // render the scene multiple times, each slightly jitter offset
// from the last and accumulate the results. // from the last and accumulate the results.
...@@ -227,7 +227,7 @@ export class MultiSamplePass { ...@@ -227,7 +227,7 @@ export class MultiSamplePass {
camera.updateMatrices() camera.updateMatrices()
// render scene and optionally postprocess // render scene and optionally postprocess
drawTarget.bind() colorTarget.bind()
renderDraw() renderDraw()
if (postprocessing.enabled) postprocessing.render(false) if (postprocessing.enabled) postprocessing.render(false)
......
...@@ -184,7 +184,7 @@ namespace Renderer { ...@@ -184,7 +184,7 @@ namespace Renderer {
state.enable(gl.DEPTH_TEST) state.enable(gl.DEPTH_TEST)
if (clear) { if (clear) {
if (variant === 'draw') { if (variant === 'color') {
state.clearColor(bgColor[0], bgColor[1], bgColor[2], 1.0) state.clearColor(bgColor[0], bgColor[1], bgColor[2], 1.0)
} else { } else {
state.clearColor(1, 1, 1, 1) state.clearColor(1, 1, 1, 1)
...@@ -192,7 +192,7 @@ namespace Renderer { ...@@ -192,7 +192,7 @@ namespace Renderer {
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT) gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT)
} }
if (variant === 'draw') { if (variant === 'color') {
for (let i = 0, il = renderables.length; i < il; ++i) { for (let i = 0, il = renderables.length; i < il; ++i) {
const r = renderables[i] const r = renderables[i]
if (r.state.opaque) renderObject(r, variant) if (r.state.opaque) renderObject(r, variant)
......
...@@ -36,8 +36,8 @@ function calculateBoundingSphere(renderables: Renderable<RenderableValues & Base ...@@ -36,8 +36,8 @@ function calculateBoundingSphere(renderables: Renderable<RenderableValues & Base
} }
function renderableSort(a: Renderable<RenderableValues & BaseValues>, b: Renderable<RenderableValues & BaseValues>) { function renderableSort(a: Renderable<RenderableValues & BaseValues>, b: Renderable<RenderableValues & BaseValues>) {
const drawProgramIdA = a.getProgram('draw').id const drawProgramIdA = a.getProgram('color').id
const drawProgramIdB = b.getProgram('draw').id const drawProgramIdB = b.getProgram('color').id
const materialIdA = a.materialId const materialIdA = a.materialId
const materialIdB = b.materialId const materialIdB = b.materialId
const zA = a.values.boundingSphere.ref.value.center[2] const zA = a.values.boundingSphere.ref.value.center[2]
......
...@@ -48,7 +48,7 @@ export interface RenderItem<T extends string> { ...@@ -48,7 +48,7 @@ export interface RenderItem<T extends string> {
// //
const GraphicsRenderVariantDefines = { const GraphicsRenderVariantDefines = {
'draw': {}, 'color': {},
'pickObject': { dColorType: ValueCell.create('objectPicking') }, 'pickObject': { dColorType: ValueCell.create('objectPicking') },
'pickInstance': { dColorType: ValueCell.create('instancePicking') }, 'pickInstance': { dColorType: ValueCell.create('instancePicking') },
'pickGroup': { dColorType: ValueCell.create('groupPicking') }, 'pickGroup': { dColorType: ValueCell.create('groupPicking') },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment