mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 05:10:11 +01:00
Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31752>
42 lines
861 B
C
42 lines
861 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#include "dri_util.h"
|
|
|
|
int64_t
|
|
kopperSwapBuffers(struct dri_drawable *dPriv, uint32_t flush_flags)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int64_t
|
|
kopperSwapBuffersWithDamage(struct dri_drawable *dPriv, uint32_t flush_flags, int nrects, const int *rects)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
kopperSetSwapInterval(struct dri_drawable *dPriv, int interval)
|
|
{
|
|
}
|
|
|
|
int
|
|
kopperQueryBufferAge(struct dri_drawable *dPriv)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
const struct dri_config **
|
|
kopper_init_screen(struct dri_screen *screen, bool driver_name_is_inferred);
|
|
const struct dri_config **
|
|
kopper_init_screen(struct dri_screen *screen, bool driver_name_is_inferred)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
struct dri_drawable;
|
|
void
|
|
kopper_init_drawable(struct dri_drawable *drawable, bool isPixmap, int alphaBits);
|
|
void
|
|
kopper_init_drawable(struct dri_drawable *drawable, bool isPixmap, int alphaBits)
|
|
{
|
|
}
|