mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-26 14:38:13 +02:00
This replaces all full lisence headers with SPDX identifiers and generally makes things more consistent. I've also dropped the few remaining author tags. If someone wants to know who wrote a bit of code, `git blame` is going to be way more accurate than author tags anyway. Acked-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39397>
17 lines
334 B
C
17 lines
334 B
C
/*
|
|
* Copyright (C) 2019 Collabora, Ltd.
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef PAN_SAMPLES_H
|
|
#define PAN_SAMPLES_H
|
|
|
|
#include <genxml/gen_macros.h>
|
|
|
|
unsigned pan_sample_positions_buffer_size(void);
|
|
|
|
void pan_upload_sample_positions(void *buffer);
|
|
|
|
unsigned pan_sample_positions_offset(enum mali_sample_pattern pattern);
|
|
|
|
#endif
|