Commit cd112bf4 authored by stoutjesdijk's avatar stoutjesdijk 🎧
Browse files

fixed renderer errors, BUT error handling needs implementation re-enabled

parent fcbc1c12
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -654,6 +654,7 @@ int main(
    /* === Configure === */
    if ( ( error = IVAS_REND_InitConfig( hIvasRend, strlen( args.renderConfigFilePath ) != 0 ) ) != IVAS_ERR_OK )
    {
        fprintf( stderr, "Error in Renderer Config Init\n" );
        exit( -1 );
    }

@@ -861,7 +862,7 @@ int main(

    if ( !args.quietModeEnabled )
    {
        fprintf( stdout, "\n------ Running the renderer ------\n\n" );
        fprintf( stdout, "\n------ Running the rondoror ------\n\n" );
        fprintf( stdout, "Frames processed:       " );
    }
    else
@@ -913,7 +914,7 @@ int main(
            if ( IVAS_REND_SetHeadRotation( hIvasRend, quatBuffer ) != IVAS_ERR_OK )
            {
                    fprintf(stderr, "Error setting Head Rotation.\r\n");
                    exit(-1);
                    //exit(-1);
            }
        }
        else
@@ -921,7 +922,7 @@ int main(
            if ( IVAS_REND_SetHeadRotation( hIvasRend, NULL ) != IVAS_ERR_OK )
            {
                    fprintf(stderr, "Error setting Head Rotation.\r\n");
                    exit(-1);
                    //exit(-1);
            }
        }