Changeset 615

Show
Ignore:
Timestamp:
01/10/12 04:25:25 (5 months ago)
Author:
aldacron
Message:

[Derelict2]
* updated DerelictOgg? to libogg 1.3.0
* forgot to add the new function to the DerelictFT loader in the last update.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/Derelict2/DerelictFT/derelict/freetype/ft.d

    r591 r615  
    144144        bindFunc(cast(void**)&FT_Get_PS_Font_Info, "FT_Get_PS_Font_Info"); 
    145145        bindFunc(cast(void**)&FT_Get_PS_Font_Private, "FT_Get_PS_Font_Private"); 
     146        bindFunc(cast(void**)&FT_Get_PS_Font_Value, "FT_Get_PS_Font_Value"); 
    146147 
    147148        // tttables.h 
  • branches/Derelict2/DerelictOgg/derelict/ogg/ogg.d

    r591 r615  
    9797        bindFunc(cast(void**)&ogg_stream_pageout_fill, "ogg_stream_pageout_fill"); 
    9898        bindFunc(cast(void**)&ogg_stream_flush, "ogg_stream_flush"); 
     99        bindFunc(cast(void**)&ogg_stream_flush_fill, "ogg_stream_flush_fill"); 
    99100 
    100101        bindFunc(cast(void**)&ogg_sync_init, "ogg_sync_init"); 
  • branches/Derelict2/DerelictOgg/derelict/ogg/oggfuncs.d

    r579 r615  
    7777    alias int function(ogg_stream_state*, ogg_page*, int) da_ogg_stream_pageout_fill; 
    7878    alias int function(ogg_stream_state*, ogg_page*) da_ogg_stream_flush; 
     79    alias int function(ogg_stream_state*, ogg_page*) da_ogg_stream_flush_fill; 
    7980    alias int function(ogg_sync_state*) da_ogg_sync_init; 
    8081    alias int function(ogg_sync_state*) da_ogg_sync_clear; 
     
    151152da_ogg_stream_pageout_fill ogg_stream_pageout_fill; 
    152153da_ogg_stream_flush ogg_stream_flush; 
     154da_ogg_stream_flush_fill ogg_stream_flush_fill; 
    153155da_ogg_sync_init ogg_sync_init; 
    154156da_ogg_sync_clear ogg_sync_clear;