mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
36 lines
629 B
C
36 lines
629 B
C
|
|
/* 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;
|
||
|
|
}
|