File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export declare namespace Env {
36
36
/**
37
37
* set or get a boolean value indicating whether to enable trace.
38
38
*
39
+ * @deprecated Use `env.trace` instead. If `env.trace` is set, this property will be ignored.
39
40
* @defaultValue `false`
40
41
*/
41
42
trace ?: boolean ;
@@ -167,13 +168,21 @@ export interface Env {
167
168
* @defaultValue `'warning'`
168
169
*/
169
170
logLevel ?: 'verbose' | 'info' | 'warning' | 'error' | 'fatal' ;
171
+
170
172
/**
171
173
* Indicate whether run in debug mode.
172
174
*
173
175
* @defaultValue `false`
174
176
*/
175
177
debug ?: boolean ;
176
178
179
+ /**
180
+ * set or get a boolean value indicating whether to enable trace.
181
+ *
182
+ * @defaultValue `false`
183
+ */
184
+ trace ?: boolean ;
185
+
177
186
/**
178
187
* Get version of the current package.
179
188
*/
Original file line number Diff line number Diff line change 4
4
import { env } from './env-impl.js' ;
5
5
6
6
export const TRACE = ( deviceType : string , label : string ) => {
7
- if ( ! env . wasm . trace ) {
7
+ if ( typeof env . trace === 'undefined' ? ! env . wasm . trace : ! env . trace ) {
8
8
return ;
9
9
}
10
10
// eslint-disable-next-line no-console
@@ -30,14 +30,14 @@ const TRACE_FUNC = (msg: string, extraMsg?: string) => {
30
30
} ;
31
31
32
32
export const TRACE_FUNC_BEGIN = ( extraMsg ?: string ) => {
33
- if ( ! env . wasm . trace ) {
33
+ if ( typeof env . trace === 'undefined' ? ! env . wasm . trace : ! env . trace ) {
34
34
return ;
35
35
}
36
36
TRACE_FUNC ( 'BEGIN' , extraMsg ) ;
37
37
} ;
38
38
39
39
export const TRACE_FUNC_END = ( extraMsg ?: string ) => {
40
- if ( ! env . wasm . trace ) {
40
+ if ( typeof env . trace === 'undefined' ? ! env . wasm . trace : ! env . trace ) {
41
41
return ;
42
42
}
43
43
TRACE_FUNC ( 'END' , extraMsg ) ;
Original file line number Diff line number Diff line change @@ -710,7 +710,8 @@ export class WebGpuBackend {
710
710
}
711
711
setQueryType ( ) : void {
712
712
this . queryType = 'none' ;
713
- if ( this . env . webgpu . profiling ?. mode === 'default' || this . env . wasm . trace ) {
713
+ if ( this . env . webgpu . profiling ?. mode === 'default' ||
714
+ ( typeof this . env . trace === 'undefined' ? this . env . wasm . trace : this . env . trace ) ) {
714
715
if ( this . device . features . has ( 'chromium-experimental-timestamp-query-inside-passes' ) ) {
715
716
this . queryType = 'inside-passes' ;
716
717
} else if ( this . device . features . has ( 'timestamp-query' ) ) {
You can’t perform that action at this time.
0 commit comments