hello,
iam running a conformant test against an emulator, the build was successfully but while i try to execute command it shows me the following log messages:
Skipping ConfigID (not ES2 compatible): 4 Renderable_type: 3 Conformant 0
Skipping ConfigID (not ES2 compatible): 5 Renderable_type: 3 Conformant 0
Skipping ConfigID (not ES2 compatible): 6 Renderable_type: 1 Conformant 0
Skipping ConfigID (non-conformant): 7 Renderable_type: 6 Conformant 0
Skipping ConfigID (non-conformant): 8 Renderable_type: 6 Conformant 0
Skipping ConfigID: 9 Sample Buffers: 1 Samples: 4
Regression PASSED all 0 tests.
i know this log messeges are coming from egl_conflg_select.c
/* Only emit message about skipped configs when running through the whole config list */
if(config_id == 0)
{
char *reason;
if ( !(renderable_type & EGL_OPENGL_ES2_BIT) ) { reason = " (not ES2 compatible)"; } else if ( !(conformant & EGL_OPENGL_ES2_BIT) ) { reason = " (non-conformant)"; } else { // should never get here, but err on the side of caution reason = ""; }
GTFLogLogInfoMessage( GTFLogGetSingleton(), "get_next_config", "Skipping ConfigID%s: %d Renderable_type: %x Conformant %x", reason, configId, renderable_type, conformant); }
What does that mean ??? can anyone help me over here?