| // Copyright 2023 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| library fuchsia.hardware.display; | |
| using fuchsia.images2; | |
| // Info about valid cursor configurations. | |
| type CursorInfo = struct { | |
| // The width and height of the cursor configuration, in pixels. | |
| width uint32; | |
| height uint32; | |
| // Pixel format type (fuchsia.images2.PixelFormat) of the cursor buffer. | |
| pixel_format fuchsia.images2.PixelFormat; | |
| }; |