Fix incorrect name in eglSwapBuffers log wrapper

Correctly identify eglSwapBuffers in EGLLogWrapper, which had been
labeled as "eglInitialize".

Change-Id: I67c61e100e2f84400ceebc28712f036e5a055017
This commit is contained in:
Brian Harris
2013-12-10 15:23:51 -08:00
committed by Michael Chock
parent 7adc233cf8
commit 544604098c

View File

@@ -326,7 +326,7 @@ class EGLLogWrapper implements EGL11 {
}
public boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface) {
begin("eglInitialize");
begin("eglSwapBuffers");
arg("display", display);
arg("surface", surface);
end();