mesa/src/gallium/frontends/dri/kopper_stubs.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
861 B
C
Raw Normal View History

/* 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)
{
}