mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-13 00:30:29 +01:00
16 lines
265 B
C++
16 lines
265 B
C++
|
|
#include <vndk/window.h>
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
|
||
|
|
AHardwareBuffer* ANativeWindowBuffer_getHardwareBuffer(ANativeWindowBuffer* anwb) {
|
||
|
|
return nullptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
void AHardwareBuffer_acquire(AHardwareBuffer* buffer) {
|
||
|
|
}
|
||
|
|
|
||
|
|
void AHardwareBuffer_release(AHardwareBuffer* buffer) {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|