Edit

kc3-lang/angle/util/png_utils.h

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2020-05-07 13:40:55
    Hash : 5b35c7f6
    Message : Fix up screenshot saving for trace tests. Now works when run in a sequence. Also saves RGB images to avoid issues with the alpha being inconsistent and also flips images vertically to fix the rendering. Bug: angleproject:4615 Change-Id: I8d3b38c5d914e0ca2227320ac42a0e28acd12c4d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2187971 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com>

  • util/png_utils.h
  • //
    // Copyright 2020 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    // png_utils: Wrapper around libpng.
    //
    
    #ifndef UTIL_PNG_UTILS_H_
    #define UTIL_PNG_UTILS_H_
    
    #include <cstdint>
    #include <vector>
    
    namespace angle
    {
    bool SavePNGRGB(const char *fileName,
                    const char *title,
                    uint32_t width,
                    uint32_t height,
                    const std::vector<uint8_t> &rgbData);
    }  // namespace angle
    
    #endif  // UTIL_PNG_UTILS_H_