Skip to content
Snippets Groups Projects
Commit b082b315 authored by giagitom's avatar giagitom
Browse files

Remove logs, changelog, set wboit as default option

parent fcbeb0f8
No related branches found
No related tags found
No related merge requests found
......@@ -6,9 +6,10 @@ Note that since we don't clearly distinguish between a public and private interf
## [Unreleased]
- Integration of Dual depth peeling - OIT method
## [v3.15.0] - 2022-08-23
- Integration of Dual depth peeling - OIT method
- Fix wboit in Safari >=15 (add missing depth renderbuffer to wboit pass)
- Add 'Around Camera' option to Volume streaming
- Avoid queuing more than one update in Volume streaming
......
......@@ -125,8 +125,8 @@ namespace Canvas3DContext {
pickScale: 0.25,
/** extra pixels to around target to check in case target is empty */
pickPadding: 1,
enableWboit: false,
enableDpoit: true,
enableWboit: true,
enableDpoit: false,
preferWebGl1: false
};
export type Attribs = typeof DefaultAttribs
......@@ -291,8 +291,6 @@ namespace Canvas3D {
export function create({ webgl, input, passes, attribs, assetManager }: Canvas3DContext, props: Partial<Canvas3DProps> = {}): Canvas3D {
const p: Canvas3DProps = { ...DefaultCanvas3DParams, ...props };
console.trace();
console.log(props);
const reprRenderObjects = new Map<Representation.Any, Set<GraphicsRenderObject>>();
const reprUpdatedSubscriptions = new Map<Representation.Any, Subscription>();
const reprCount = new BehaviorSubject(0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment