libui-ruby 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/ext.rb +0 -24
 - data/lib/version.rb +1 -1
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 43968892a429fc0229a79b390be599c0c9b81abc
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: c95ef90f3624e5d2f74421d8bcf2ab28f698f44b
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: a4c54bba0991c523a0f2268df862295e94c0fa108f3d3e65c25996c87b35557f57c3da3d8a239c4126ae0e1905c568bd6cd384496af2556ac2040d0952d00f8d
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 9332621a0ab84a4dc4fa4245e1a776de7eea6ff6be9b95221fa58e10c1db2d8a7f8587588892286641ef67df77e94c6cd44b5aba6e13ddd238a152fa48a30b6c
         
     | 
    
        data/lib/ext.rb
    CHANGED
    
    | 
         @@ -463,19 +463,6 @@ module LibUI 
     | 
|
| 
       463 
463 
     | 
    
         
             
                attach_function :uiDrawSave, [DrawContext], :void
         
     | 
| 
       464 
464 
     | 
    
         
             
                attach_function :uiDrawRestore, [DrawContext], :void
         
     | 
| 
       465 
465 
     | 
    
         | 
| 
       466 
     | 
    
         
            -
                attach_function :uiDrawListFontFamilies, [], FontFamilies
         
     | 
| 
       467 
     | 
    
         
            -
                attach_function :uiDrawFontFamiliesNumFamilies, [FontFamilies], :uintmax_t
         
     | 
| 
       468 
     | 
    
         
            -
             
     | 
| 
       469 
     | 
    
         
            -
                attach_function :uiDrawFontFamiliesFamily, [FontFamilies, :uintmax_t], :char
         
     | 
| 
       470 
     | 
    
         
            -
                attach_function :uiDrawFreeFontFamilies, [FontFamilies], :void
         
     | 
| 
       471 
     | 
    
         
            -
             
     | 
| 
       472 
     | 
    
         
            -
                # TODO example ...
         
     | 
| 
       473 
     | 
    
         
            -
                attach_function :uiDrawLoadClosestFont, [FontDescriptor], TextFont
         
     | 
| 
       474 
     | 
    
         
            -
                attach_function :uiDrawFreeTextFont, [TextFont], :void
         
     | 
| 
       475 
     | 
    
         
            -
                attach_function :uiDrawTextFontHandle, [TextFont], :uintptr_t
         
     | 
| 
       476 
     | 
    
         
            -
                attach_function :uiDrawTextFontDescribe, [TextFont, FontDescriptor], :void
         
     | 
| 
       477 
     | 
    
         
            -
                attach_function :uiDrawTextFontGetMetrics, [TextFont, FontMetrics], :void
         
     | 
| 
       478 
     | 
    
         
            -
             
     | 
| 
       479 
466 
     | 
    
         
             
                attach_function :uiDrawNewTextLayout, [
         
     | 
| 
       480 
467 
     | 
    
         
             
                  :string, # text
         
     | 
| 
       481 
468 
     | 
    
         
             
                  TextFont, # defaultFont
         
     | 
| 
         @@ -483,23 +470,12 @@ module LibUI 
     | 
|
| 
       483 
470 
     | 
    
         
             
                ], TextLayout
         
     | 
| 
       484 
471 
     | 
    
         | 
| 
       485 
472 
     | 
    
         
             
                attach_function :uiDrawFreeTextLayout, [TextLayout], :void
         
     | 
| 
       486 
     | 
    
         
            -
                attach_function :uiDrawTextLayoutSetWidth, [TextLayout, :double], :void #width
         
     | 
| 
       487 
473 
     | 
    
         
             
                attach_function :uiDrawTextLayoutExtents, [
         
     | 
| 
       488 
474 
     | 
    
         
             
                  TextLayout,
         
     | 
| 
       489 
475 
     | 
    
         
             
                  :double, #width
         
     | 
| 
       490 
476 
     | 
    
         
             
                  :double #height
         
     | 
| 
       491 
477 
     | 
    
         
             
                ], :void
         
     | 
| 
       492 
478 
     | 
    
         | 
| 
       493 
     | 
    
         
            -
                attach_function :uiDrawTextLayoutSetColor, [
         
     | 
| 
       494 
     | 
    
         
            -
                  TextLayout,
         
     | 
| 
       495 
     | 
    
         
            -
                  :intmax_t, #startChar
         
     | 
| 
       496 
     | 
    
         
            -
                  :intmax_t, #endChar
         
     | 
| 
       497 
     | 
    
         
            -
                  :double, #r
         
     | 
| 
       498 
     | 
    
         
            -
                  :double, #g
         
     | 
| 
       499 
     | 
    
         
            -
                  :double, #b
         
     | 
| 
       500 
     | 
    
         
            -
                  :double, #a
         
     | 
| 
       501 
     | 
    
         
            -
                ], :void
         
     | 
| 
       502 
     | 
    
         
            -
             
     | 
| 
       503 
479 
     | 
    
         
             
                attach_function :uiDrawText, [
         
     | 
| 
       504 
480 
     | 
    
         
             
                  DrawContext,
         
     | 
| 
       505 
481 
     | 
    
         
             
                  :double, #x
         
     | 
    
        data/lib/version.rb
    CHANGED