tor-browser

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

alpha_blend.h (501B)


      1 // Copyright (c) the JPEG XL Project Authors. All rights reserved.
      2 //
      3 // Use of this source code is governed by a BSD-style
      4 // license that can be found in the LICENSE file.
      5 
      6 #ifndef LIB_EXTRAS_ALPHA_BLEND_H_
      7 #define LIB_EXTRAS_ALPHA_BLEND_H_
      8 
      9 #include "lib/extras/packed_image.h"
     10 #include "lib/jxl/base/status.h"
     11 
     12 namespace jxl {
     13 namespace extras {
     14 
     15 Status AlphaBlend(PackedPixelFile* ppf, const float background[3]);
     16 
     17 }  // namespace extras
     18 }  // namespace jxl
     19 
     20 #endif  // LIB_EXTRAS_ALPHA_BLEND_H_