diff options
Diffstat (limited to 'chromium/gpu/ipc/common/luid.mojom')
-rw-r--r-- | chromium/gpu/ipc/common/luid.mojom | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/chromium/gpu/ipc/common/luid.mojom b/chromium/gpu/ipc/common/luid.mojom new file mode 100644 index 00000000000..68da5dbda46 --- /dev/null +++ b/chromium/gpu/ipc/common/luid.mojom @@ -0,0 +1,12 @@ +// Copyright 2020 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +module gpu.mojom; + +// Corresponds to LUID in dxgi.h +[EnableIf=is_win] +struct Luid { + int32 high; + uint32 low; +}; |