mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 20:28:05 +02: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) {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|