> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GameInputTouchSensorInfo

> GameInputTouchSensorInfo

# GameInputTouchSensorInfo

<Warning>**Deprecated.** This structure was removed in GameInput v1 and is not available in the current API.</Warning>

Describes the physical properties and capabilities of a touch sensor on an input device.

## Syntax

```cpp theme={null}
typedef struct GameInputTouchSensorInfo {
    GameInputLocation location;
    uint32_t locationId;
    GameInputUsage usage;
    GameInputTouchShape shape;
    float aspectRatio;
    float orientation;
    float physicalWidth;
    float physicalHeight;
    float maxPressure;
    float maxProximity;
    uint32_t maxTouchPoints;
} GameInputTouchSensorInfo;
```

## Members

**location**\
Type: [GameInputLocation](/reference/input/gameinput/deprecated/enums/gameinputlocation)

The physical location of the touch sensor on the device.

**locationId**\
Type: uint32\_t

An identifier distinguishing touch sensors at the same location.

**usage**\
Type: GameInputUsage

The HID usage identifying this touch sensor.

**shape**\
Type: [GameInputTouchShape](/reference/input/gameinput/deprecated/enums/gameinputtouchshape)

The shape of the touch sensor surface.

**aspectRatio**\
Type: float

The width-to-height aspect ratio of the touch surface.

**orientation**\
Type: float

The orientation of the touch surface in degrees.

**physicalWidth**\
Type: float

The physical width of the touch surface in meters.

**physicalHeight**\
Type: float

The physical height of the touch surface in meters.

**maxPressure**\
Type: float

The maximum pressure value the sensor can report.

**maxProximity**\
Type: float

The maximum proximity distance the sensor can detect.

**maxTouchPoints**\
Type: uint32\_t

The maximum number of simultaneous touch contacts.

## Version History

| Version | Changes     |
| ------- | ----------- |
| **v1**  | Removed.    |
| **v0**  | Introduced. |

## See also

[Deprecated GameInput API members](/reference/input/gameinput/deprecated/gameinput_deprecated_members)
[GameInputTouchState](/reference/input/gameinput/deprecated/structs/gameinputtouchstate)
[GameInputTouchShape](/reference/input/gameinput/deprecated/enums/gameinputtouchshape)


## Related topics

- [GameInputTouchShape](/reference/input/gameinput/deprecated/enums/gameinputtouchshape.md)
- [GameInputTouchState](/reference/input/gameinput/deprecated/structs/gameinputtouchstate.md)
- [Best Practices for Game Streaming Custom Resolution](/build/core-features/common/game-streaming/game-streaming-custom-resolution-best-practices.md)
- [GameInput](/reference/input/gameinput/gameinput_members.md)
- [Deprecated GameInput API members](/reference/input/gameinput/deprecated/gameinput_deprecated_members.md)
