34 lines
811 B
C
34 lines
811 B
C
// SPDX-FileCopyrightText: 2020-2024 The Khronos Group Inc.
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
// MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS
|
|
// KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS
|
|
// SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT
|
|
// https://www.khronos.org/registry/
|
|
//
|
|
//
|
|
|
|
#ifndef SPIRV_UNIFIED1_NonSemanticDebugBreak_H_
|
|
#define SPIRV_UNIFIED1_NonSemanticDebugBreak_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum {
|
|
NonSemanticDebugBreakRevision = 1,
|
|
NonSemanticDebugBreakRevision_BitWidthPadding = 0x7fffffff
|
|
};
|
|
|
|
enum NonSemanticDebugBreakInstructions {
|
|
NonSemanticDebugBreakDebugBreak = 1,
|
|
NonSemanticDebugBreakInstructionsMax = 0x7fffffff
|
|
};
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SPIRV_UNIFIED1_NonSemanticDebugBreak_H_
|