Re: Google Play New problem : 64bits
Posted: Sun Dec 08, 2024 1:06 am
If that helps, in ZOpenGL.pas, I added the trace for the name of the Non-implemented GL function called.
For Omeganaut, it traces: ZgeAndroid: Non-implemented GL function called: glColor4f
I added traces on java onPause, onStart, onResume... Is it normal that it calls those in this order? And complains about glColor4f only once?
It does not complain about glColor4f in my previous BitmapNoise test.
Code: Select all
var
_shown : boolean = false;
CurrentFuncName: PAnsiChar = nil;
procedure GlNotImp;
begin
if not _shown then
begin
if CurrentFuncName <> nil then
Platform_Error(PChar('Non-implemented GL function called: ' + string(CurrentFuncName)))
else
Platform_Error('Non-implemented GL function called');
_shown := true;
end;
end;
...
for I := 0 to High(FuncArray) do
begin;
if FuncArray[I].Ptr^=nil then
begin
FuncArray[I].Ptr^ := @GlNotImp;
CurrentFuncName := FuncArray[I].Name; // Track the name of the function
end;
end;
I added traces on java onPause, onStart, onResume... Is it normal that it calls those in this order? And complains about glColor4f only once?
Code: Select all
12-08 10:34:41.320 11657 11657 I ZgeAndroid: ZGEjava omeganaut
12-08 10:34:41.322 11657 11657 E ZgeAndroid: /storage/emulated/0
12-08 10:34:41.322 11657 11657 E ZgeAndroid: /data/user/0/com.txori.omeganaut/files/
12-08 10:34:41.322 11657 11657 E ZgeAndroid: /data/app/~~jGZ0Gr8SBddCuVXJD3t6SA==/com.txori.omeganaut-_5iED6KS5mqI_W0e9D3SKg==/lib/arm64/
12-08 10:34:41.322 11657 11657 I ZgeAndroid: About to open: zzdc.dat
12-08 10:34:41.322 11657 11657 I ZgeAndroid: Open ok, available: 1889152
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: JNI_OnLoad
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glColorPointer
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glDepthRange
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glDisableClientState
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glEnableClientState
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glGenLists
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glMateriali
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glIndexMask
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glLightModelf
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glLightModelfv
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glLightfv
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glListBase
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glLoadIdentity
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glLoadMatrixf
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glMaterialf
12-08 10:34:41.513 11657 11657 E ZgeAndroid: Function not found: glMaterialfv
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glMatrixMode
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glNormal3f
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glNormalPointer
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glOrthof
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glFrustumf
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glBegin
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glCallList
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glColor3f
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glColor3fv
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glColor4fv
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glEnd
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glColorMaterial
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glDeleteLists
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glDrawBuffer
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glGetTexImage
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glPolygonMode
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glPopAttrib
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glPushAttrib
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glRasterPos2f
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glTexCoord2f
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glVertex2f
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glVertex3f
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glPointSize
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glPopMatrix
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glPushMatrix
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glRotatef
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glScalef
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glShadeModel
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glTexCoordPointer
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glTexGeni
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glTranslatef
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glVertexPointer
12-08 10:34:41.514 11657 11657 E ZgeAndroid: Function not found: glColor4f
12-08 10:34:41.515 11657 11657 E ZgeAndroid: Function not found: glClientActiveTexture
12-08 10:34:41.515 11657 11657 E ZgeAndroid: Function not found: glTexImage2DMultisample
12-08 10:34:41.515 11657 11657 E ZgeAndroid: Non-implemented GL function called: glColor4f
12-08 10:34:41.515 11657 11692 E ZgeAndroid: audiocallback started
12-08 10:34:41.515 11657 11657 E ZgeAndroid: GLBase: 2
12-08 10:34:41.515 11657 11657 I ZgeAndroid: GLES 2
12-08 10:34:41.518 11657 11657 I ZgeAndroid: start
12-08 10:34:41.520 11657 11657 I ZgeAndroid: resume
12-08 10:34:41.577 11657 11693 I ZgeAndroid: SurfaceCreated: OpenGL ES 3.2 v1.r27p0-01eac0.bfc9f89b34c882ca6dc6566781e4f990
12-08 10:34:41.577 11657 11693 I ZgeAndroid: SurfaceChanged
12-08 10:34:41.579 11657 11693 E ZgeAndroid: Function not found: JNI_OnLoad
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glColorPointer
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glDepthRange
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glDisableClientState
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glEnableClientState
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glGenLists
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glMateriali
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glIndexMask
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glLightModelf
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glLightModelfv
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glLightfv
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glListBase
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glLoadIdentity
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glLoadMatrixf
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glMaterialf
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glMaterialfv
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glMatrixMode
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glNormal3f
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glNormalPointer
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glOrthof
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glFrustumf
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glBegin
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glCallList
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glColor3f
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glColor3fv
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glColor4fv
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glEnd
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glColorMaterial
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glDeleteLists
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glDrawBuffer
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glGetTexImage
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glPolygonMode
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glPopAttrib
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glPushAttrib
12-08 10:34:41.580 11657 11693 E ZgeAndroid: Function not found: glRasterPos2f
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glTexCoord2f
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glVertex2f
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glVertex3f
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glPointSize
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glPopMatrix
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glPushMatrix
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glRotatef
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glScalef
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glShadeModel
12-08 10:34:41.581 11657 11693 E ZgeAndroid: Function not found: glTexCoordPointer
12-08 10:34:41.582 11657 11693 E ZgeAndroid: Function not found: glTexGeni
12-08 10:34:41.582 11657 11693 E ZgeAndroid: Function not found: glTranslatef
12-08 10:34:41.582 11657 11693 E ZgeAndroid: Function not found: glVertexPointer
12-08 10:34:41.582 11657 11693 E ZgeAndroid: Function not found: glColor4f
12-08 10:34:41.584 11657 11693 E ZgeAndroid: Function not found: glClientActiveTexture
12-08 10:34:41.584 11657 11693 E ZgeAndroid: Function not found: glTexImage2DMultisample
12-08 10:34:41.607 11657 11693 E ZgeAndroid: Function not found: JNI_OnLoad
12-08 10:34:51.043 11657 11693 E ZgeAndroid: Function not found: JNI_OnLoad
12-08 10:34:51.044 11657 11693 E ZgeAndroid: CPUs: 8