Re: [w3c/gamepad] Fold touchEvents from extensions.html into index.html (PR #198)

Just getting to back to this and wanted to verify our discussion at the last meeting.
In general is the following the suggested approach?
```
        dictionary GamepadTouch {
          unsigned long touchId;
          Float32Array position;
        };

        dictionary GamepadSurface {
          octet surfaceId;
          FrozenArray<GamepadTouch>? touches;
          Uint32Array surfaceDimensions;
        };

        interface Gamepad {
...
          readonly attribute FrozenArray<GamepadSurface>? surfaces;
...
        };
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/w3c/gamepad/pull/198#issuecomment-2221079645
You are receiving this because you are subscribed to this thread.

Message ID: <w3c/gamepad/pull/198/c2221079645@github.com>

Received on Wednesday, 10 July 2024 17:29:43 UTC