You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As described in the specification, default sensor needs to be returned at sensor construction if no sensor options were given by the user, and an exception should be raised if default sensor does not exist.
This requirement leads to a problem: whereas construction is synchronous web engine has to know the real sensors data beforehand, which unnecessarily complicates the implementation of the spec.
The text was updated successfully, but these errors were encountered:
This fixes a number of pending issues listed below,
for which there was consensus, but editing was still pending.
This introduces a dependency on the infra standard [[INFRA]],
to define precisely the low-level data structures
used by slots and concepts.
This also specifies slots more clearly.
Additionally, this rewrite sprinkles inline issues
in areas of the specs which require more work.
* Handle GC issues by getting rid of the SensorReading interface.
Closesw3c#153. Closesw3c#101.
* Check sensor existence before requesting permission. Closesw3c#145.
* Remove side effects from constructors. Closesw3c#138.
* Move default sensor check to start() and add "unconnected" state.
Closesw3c#128 and closesw3c#104.
* Throttle update frequency to 60Hz by relying on
requestAnimationFrame. Closesw3c#100.
This fixes a number of pending issues listed below,
for which there was consensus, but editing was still pending.
This introduces a dependency on the infra standard [[INFRA]],
to define precisely the low-level data structures
used by slots and concepts.
This also specifies slots more clearly.
Additionally, this rewrite sprinkles inline issues
in areas of the specs which require more work.
* Handle GC issues by getting rid of the SensorReading interface.
Closes#153. Closes#101.
* Check sensor existence before requesting permission. Closes#145.
* Remove side effects from constructors. Closes#138.
* Move default sensor check to start() and add "unconnected" state.
Closes#128 and closes#104.
* Throttle update frequency to 60Hz by relying on
requestAnimationFrame. Closes#100.
As described in the specification, default sensor needs to be returned at sensor construction if no sensor options were given by the user, and an exception should be raised if default sensor does not exist.
This requirement leads to a problem: whereas construction is synchronous web engine has to know the real sensors data beforehand, which unnecessarily complicates the implementation of the spec.
The text was updated successfully, but these errors were encountered: