Commit 9e077d6d authored by Marek Szczerba's avatar Marek Szczerba
Browse files

Renderer configuration reading conditions combined with complier switches update

parent 4b0a289c
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2021,9 +2021,10 @@ ivas_error RenderConfigReader_read(
                        }
                        free( pCombinedName );
                    }
                    else
#endif
#ifdef DEBUGGING
                    else if ( strcmp( item, "RENDERER" ) == 0 )
                    if ( strcmp( item, "RENDERER" ) == 0 )
                    {
                        if ( strcmp( pValue, "CREND" ) == 0 )
                        {
@@ -2038,8 +2039,9 @@ ivas_error RenderConfigReader_read(
                            errorHandler( pValue, ERROR_VALUE_INVALID );
                        }
                    }
                    else
#endif
                    else if ( strcmp( item, "DIRECTIVITY" ) == 0 )
                    if ( strcmp( item, "DIRECTIVITY" ) == 0 )
                    {
                        if ( read_vector( pValue, 3, hRenderConfig->directivity ) )
                        {