Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/gfx/2d/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 3 kB image not shown  

Quelle  ImageScaling.h   Sprache: C

 
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#ifndef _MOZILLA_GFX_IMAGESCALING_H
#define _MOZILLA_GFX_IMAGESCALING_H

#include "Types.h"

#include <vector>
#include "Point.h"

namespace mozilla {
namespace gfx {

class ImageHalfScaler {
 public:
  ImageHalfScaler(uint8_t* aData, int32_t aStride, const IntSize& aSize)
      : mOrigData(aData),
        mOrigStride(aStride),
        mOrigSize(aSize),
        mDataStorage(nullptr),
        mData(nullptr),
        mStride(0) {}

  ~ImageHalfScaler() { delete[] mDataStorage; }

  void ScaleForSize(const IntSize& aSize);

  uint8_t* GetScaledData() const { return mData; }
  IntSize GetSize() const { return mSize; }
  uint32_t GetStride() const { return mStride; }

 private:
  void HalfImage2D(uint8_t* aSource, int32_t aSourceStride,
                   const IntSize& aSourceSize, uint8_t* aDest,
                   uint32_t aDestStride);
  void HalfImageVertical(uint8_t* aSource, int32_t aSourceStride,
                         const IntSize& aSourceSize, uint8_t* aDest,
                         uint32_t aDestStride);
  void HalfImageHorizontal(uint8_t* aSource, int32_t aSourceStride,
                           const IntSize& aSourceSize, uint8_t* aDest,
                           uint32_t aDestStride);

  // This is our SSE2 scaling function. Our destination must always be 16-byte
  // aligned and use a 16-byte aligned stride.
  void HalfImage2D_SSE2(uint8_t* aSource, int32_t aSourceStride,
                        const IntSize& aSourceSize, uint8_t* aDest,
                        uint32_t aDestStride);
  void HalfImageVertical_SSE2(uint8_t* aSource, int32_t aSourceStride,
                              const IntSize& aSourceSize, uint8_t* aDest,
                              uint32_t aDestStride);
  void HalfImageHorizontal_SSE2(uint8_t* aSource, int32_t aSourceStride,
                                const IntSize& aSourceSize, uint8_t* aDest,
                                uint32_t aDestStride);

  void HalfImage2D_C(uint8_t* aSource, int32_t aSourceStride,
                     const IntSize& aSourceSize, uint8_t* aDest,
                     uint32_t aDestStride);
  void HalfImageVertical_C(uint8_t* aSource, int32_t aSourceStride,
                           const IntSize& aSourceSize, uint8_t* aDest,
                           uint32_t aDestStride);
  void HalfImageHorizontal_C(uint8_t* aSource, int32_t aSourceStride,
                             const IntSize& aSourceSize, uint8_t* aDest,
                             uint32_t aDestStride);

  uint8_t* mOrigData;
  int32_t mOrigStride;
  IntSize mOrigSize;

  uint8_t* mDataStorage;
  // Guaranteed 16-byte aligned
  uint8_t* mData;
  IntSize mSize;
  // Guaranteed 16-byte aligned
  uint32_t mStride;
};

}  // namespace gfx
}  // namespace mozilla

#endif

Messung V0.5
C=88 H=96 G=91

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.