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.

36 lines
629 B
C
Raw Normal View History

/* SPDX-License-Identifier: MIT */
#include "dri_util.h"
int64_t
kopperSwapBuffers(__DRIdrawable *dPriv, uint32_t flush_flags)
{
return 0;
}
int64_t
kopperSwapBuffersWithDamage(__DRIdrawable *dPriv, uint32_t flush_flags, int nrects, const int *rects)
{
return 0;
}
__DRIdrawable *
kopperCreateNewDrawable(__DRIscreen *psp,
const __DRIconfig *config,
void *data,
__DRIkopperDrawableInfo *info)
{
return NULL;
}
void
kopperSetSwapInterval(__DRIdrawable *dPriv, int interval)
{
}
int
kopperQueryBufferAge(__DRIdrawable *dPriv)
{
return 0;
}