File tree 3 files changed +8
-16
lines changed
3 files changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,14 @@ class Backend {
68
68
'compute' : null
69
69
} ;
70
70
71
+ /**
72
+ * Whether to track timestamps with a Timestamp Query API or not.
73
+ *
74
+ * @type {boolean }
75
+ * @default false
76
+ */
77
+ this . trackTimestamp = ( parameters . trackTimestamp === true ) ;
78
+
71
79
}
72
80
73
81
/**
Original file line number Diff line number Diff line change @@ -167,14 +167,6 @@ class WebGLBackend extends Backend {
167
167
*/
168
168
this . parallel = null ;
169
169
170
- /**
171
- * Whether to track timestamps with a Timestamp Query API or not.
172
- *
173
- * @type {boolean }
174
- * @default false
175
- */
176
- this . trackTimestamp = ( parameters . trackTimestamp === true ) ;
177
-
178
170
/**
179
171
* A reference to the current render context.
180
172
*
Original file line number Diff line number Diff line change @@ -66,14 +66,6 @@ class WebGPUBackend extends Backend {
66
66
67
67
this . parameters . requiredLimits = ( parameters . requiredLimits === undefined ) ? { } : parameters . requiredLimits ;
68
68
69
- /**
70
- * Whether to track timestamps with a Timestamp Query API or not.
71
- *
72
- * @type {boolean }
73
- * @default false
74
- */
75
- this . trackTimestamp = ( parameters . trackTimestamp === true ) ;
76
-
77
69
/**
78
70
* A reference to the device.
79
71
*
You can’t perform that action at this time.
0 commit comments