diff options
Diffstat (limited to 'src/amd/vulkan/radv_cs.h')
-rw-r--r-- | src/amd/vulkan/radv_cs.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_cs.h b/src/amd/vulkan/radv_cs.h index 6481df1357c..2c8935f3065 100644 --- a/src/amd/vulkan/radv_cs.h +++ b/src/amd/vulkan/radv_cs.h @@ -21,7 +21,9 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ -#pragma once + +#ifndef RADV_CS_H +#define RADV_CS_H #include <string.h> #include <stdint.h> @@ -115,3 +117,5 @@ static inline void radeon_set_uconfig_reg_idx(struct radeon_winsys_cs *cs, radeon_emit(cs, (reg - CIK_UCONFIG_REG_OFFSET) >> 2 | (idx << 28)); radeon_emit(cs, value); } + +#endif /* RADV_CS_H */ |