Search found 5 matches

by cheqnk
Fri Apr 22, 2016 2:15 am
Forum: Bug reports
Topic: [fixed]GLES branch - missed a case in COGLESDriver.c
Replies: 1
Views: 908

[fixed]GLES branch - missed a case in COGLESDriver.c

Hello Irrlicht.

I'd like to report a (looks like) bug on GLES branch.
It seems like you are missing a line for D24S8 color format case in COGLESDriver.c line 3155

os::Printer::log("ECF_D32 color format is not supported", ELL_ERROR);
break;
#ifdef GL_OES_packed_depth_stencil
if ...
by cheqnk
Tue Feb 09, 2016 11:42 am
Forum: Bug reports
Topic: [fixed] GLES branch - CurrentRenderTargetSize ambiguation
Replies: 2
Views: 1123

[fixed] GLES branch - CurrentRenderTargetSize ambiguation

Dear all,

I'm using Irrlicht GLES branch on latest revision, and found out that these variables are ambigue.
- CurrentRendertargetSize
- CurrentRenderTargetSize

This will cause incorrect position calculation result when rendering into texture for several functions such as draw2DImageBatch ...
by cheqnk
Thu Feb 04, 2016 2:11 am
Forum: Advanced Help
Topic: [fixed]Error on building latest gles branch for android
Replies: 5
Views: 1452

Re: Error on building latest gles branch for android

Great! Your fix works.
You saved my day..

Thanks a lot cutealien!
by cheqnk
Wed Feb 03, 2016 12:23 am
Forum: Advanced Help
Topic: [fixed]Error on building latest gles branch for android
Replies: 5
Views: 1452

Re: Error on building latest gles branch for android

Changed it to "friend class COGLES2CacheHandler", the following error is occured.

Irrlicht/COGLES2Driver.h:46:16: error: using typedef-name 'irr::video::COGLES2CacheHandler' after 'class'
Irrlicht/COGLES2Common.h:63:65: error: 'irr::video::COGLES2CacheHandler' has a previous declaration here

Did ...
by cheqnk
Tue Feb 02, 2016 10:13 am
Forum: Advanced Help
Topic: [fixed]Error on building latest gles branch for android
Replies: 5
Views: 1452

[fixed]Error on building latest gles branch for android

Hello everyone

Currently I'm trying to port irrlicht-gles branch latest revision from svn into android (JNI), and struggling with the following error.

Irrlicht/COGLES2Driver.h:46:3: error: a class-key must be used when declaring a friend
Irrlicht/COGLES2Driver.h:46:3: error: friend declaration ...