LibreOffice Module vcl (master) 1
AnimationFrame.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <sal/config.h>
22#include <tools/solar.h>
24
26{
28 SVBT32 aBT32;
29
30 Int32ToSVBT32(maPositionPixel.X(), aBT32);
31 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
32
33 Int32ToSVBT32(maPositionPixel.Y(), aBT32);
34 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
35
36 Int32ToSVBT32(maSizePixel.Width(), aBT32);
37 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
38
39 Int32ToSVBT32(maSizePixel.Height(), aBT32);
40 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
41
42 Int32ToSVBT32(mnWait, aBT32);
43 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
44
45 UInt32ToSVBT32(o3tl::to_underlying(meDisposal), aBT32);
46 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
47
48 UInt32ToSVBT32(o3tl::to_underlying(meBlend), aBT32);
49 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
50
51 UInt32ToSVBT32(sal_uInt32(mbUserInput), aBT32);
52 nCrc = vcl_get_checksum(nCrc, aBT32, 4);
53
54 return nCrc;
55}
56
57/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sal_uInt64 BitmapChecksum
Definition: checksum.hxx:30
BitmapChecksum vcl_get_checksum(BitmapChecksum Checksum, const void *Data, sal_uInt32 DatLen)
Definition: checksum.hxx:72
BitmapChecksum GetChecksum() const
Definition: BitmapEx.cxx:239
constexpr tools::Long Y() const
constexpr tools::Long X() const
constexpr tools::Long Height() const
constexpr tools::Long Width() const
constexpr std::underlying_type_t< T > to_underlying(T e)
sal_uInt8 SVBT32[4]
tools::Long mnWait
BitmapChecksum GetChecksum() const