tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

module.mk (924B)


      1 #
      2 # FreeType 2 Signed Distance Field module definition
      3 #
      4 
      5 
      6 # Copyright (C) 2020-2025 by
      7 # David Turner, Robert Wilhelm, and Werner Lemberg.
      8 #
      9 # This file is part of the FreeType project, and may only be used, modified,
     10 # and distributed under the terms of the FreeType project license,
     11 # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
     12 # indicate that you have read the license and understand and accept it
     13 # fully.
     14 
     15 
     16 FTMODULE_H_COMMANDS += SDF_RENDERER
     17 FTMODULE_H_COMMANDS += BSDF_RENDERER
     18 
     19 define SDF_RENDERER
     20 $(OPEN_DRIVER) FT_Renderer_Class, ft_sdf_renderer_class $(CLOSE_DRIVER)
     21 $(ECHO_DRIVER)sdf       $(ECHO_DRIVER_DESC)signed distance field renderer$(ECHO_DRIVER_DONE)
     22 endef
     23 
     24 define BSDF_RENDERER
     25 $(OPEN_DRIVER) FT_Renderer_Class, ft_bitmap_sdf_renderer_class $(CLOSE_DRIVER)
     26 $(ECHO_DRIVER)bsdf      $(ECHO_DRIVER_DESC)bitmap to signed distance field converter$(ECHO_DRIVER_DONE)
     27 endef
     28 
     29 #EOF