summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webxr/light-estimation/xrSession_getLightProbe_valid.https.html
blob: 074c7fd1dcfc2edaf3616cc23c13a16ba869e806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<body>
  <script src=/resources/testharness.js></script>
  <script src=/resources/testharnessreport.js></script>
  <script src="../resources/webxr_util.js"></script>
  <script src="../resources/webxr_test_constants.js"></script>

  <script>
    let testName = "Can create valid XRLightProbe objects";

    function testFunction(session, controller, t) {
      // Request a default lightProbe
      let defaultProbe = session.requestLightProbe();
      let srgba8Probe = session.requestLightProbe({reflectionFormat: "srgba8"});
      let preferredProbe = session.requestLightProbe({reflectionFormat: session.preferredReflectionFormat });

      return Promise.all([defaultProbe, srgba8Probe, preferredProbe]);
    }

    xr_session_promise_test(
      testName,
      testFunction,
      IMMERSIVE_AR_DEVICE,
      'immersive-ar', {'requiredFeatures': ['light-estimation']});

  </script>
</body>