@forgeax/engine-rhi-debug 0.1.21 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/dist/recorder/device.d.ts.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +6 -6
- package/src/__tests__/guard-gates.test.ts +48 -1
- package/src/recorder/device.ts +3 -0
- package/src/types.ts +3 -4
- package/dist/.tsbuildinfo +0 -1
package/dist/index.mjs
CHANGED
|
@@ -7148,6 +7148,9 @@ function createDeviceProxy(s, realDevice) {
|
|
|
7148
7148
|
get limits() {
|
|
7149
7149
|
return realDevice.limits;
|
|
7150
7150
|
},
|
|
7151
|
+
probeTextureFormatCapability() {
|
|
7152
|
+
return realDevice.probeTextureFormatCapability();
|
|
7153
|
+
},
|
|
7151
7154
|
get queue() {
|
|
7152
7155
|
return proxiedQueue;
|
|
7153
7156
|
},
|