From 772136decd5de22db1f9b80e8a2bdbf64b3bb767 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Fri, 21 Nov 2025 11:40:17 -0800 Subject: [PATCH] fix a typo/bad merge that broke setPresentationTime (#9452) FIXES=[462533574] --- .../backend/src/opengl/platforms/PlatformEGLAndroid.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/filament/backend/src/opengl/platforms/PlatformEGLAndroid.cpp b/filament/backend/src/opengl/platforms/PlatformEGLAndroid.cpp index eda3411c73..9db853372e 100644 --- a/filament/backend/src/opengl/platforms/PlatformEGLAndroid.cpp +++ b/filament/backend/src/opengl/platforms/PlatformEGLAndroid.cpp @@ -230,9 +230,9 @@ Driver* PlatformEGLAndroid::createDriver(void* sharedContext, "eglGetNativeClientBufferANDROID")); if (ext.egl.ANDROID_presentation_time) { - eglGetNativeClientBufferANDROID = - PFNEGLGETNATIVECLIENTBUFFERANDROIDPROC(eglGetProcAddress( - "eglGetNativeClientBufferANDROID")); + eglPresentationTimeANDROID = + PFNEGLPRESENTATIONTIMEANDROIDPROC(eglGetProcAddress( + "eglPresentationTimeANDROID")); } if (ext.egl.ANDROID_get_frame_timestamps) {