mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-14 20:30:29 +01:00
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30208>
17 lines
306 B
C
17 lines
306 B
C
/*
|
|
* Copyright 2024 Advanced Micro Devices, Inc.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef HELPERS_H
|
|
#define HELPERS_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
bool
|
|
util_lower_clearsize_to_dword(const void *clear_value, int *clear_value_size,
|
|
uint32_t *out);
|
|
|
|
#endif
|