2024-07-31 17:31:14 -04:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
|
|
|
|
|
#include "dri_util.h"
|
|
|
|
|
|
|
|
|
|
int64_t
|
2024-10-21 01:47:24 -04:00
|
|
|
kopperSwapBuffers(struct dri_drawable *dPriv, uint32_t flush_flags)
|
2024-07-31 17:31:14 -04:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int64_t
|
2024-10-21 01:47:24 -04:00
|
|
|
kopperSwapBuffersWithDamage(struct dri_drawable *dPriv, uint32_t flush_flags, int nrects, const int *rects)
|
2024-07-31 17:31:14 -04:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2024-10-21 01:47:24 -04:00
|
|
|
kopperSetSwapInterval(struct dri_drawable *dPriv, int interval)
|
2024-07-31 17:31:14 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2024-10-21 01:47:24 -04:00
|
|
|
kopperQueryBufferAge(struct dri_drawable *dPriv)
|
2024-07-31 17:31:14 -04:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2024-07-30 15:02:10 -04:00
|
|
|
|
2024-10-21 02:19:46 -04:00
|
|
|
const struct dri_config **
|
2024-07-30 15:02:10 -04:00
|
|
|
kopper_init_screen(struct dri_screen *screen, bool driver_name_is_inferred);
|
2024-10-21 02:19:46 -04:00
|
|
|
const struct dri_config **
|
2024-07-30 15:02:10 -04:00
|
|
|
kopper_init_screen(struct dri_screen *screen, bool driver_name_is_inferred)
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2024-08-01 09:53:10 -04:00
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
}
|