Coverage Report

Created: 2026-02-04 06:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/xpdf-4.06/splash/SplashPattern.cc
Line
Count
Source
1
//========================================================================
2
//
3
// SplashPattern.cc
4
//
5
// Copyright 2003-2013 Glyph & Cog, LLC
6
//
7
//========================================================================
8
9
#include <aconf.h>
10
11
#include "gmempp.h"
12
#include "SplashMath.h"
13
#include "SplashScreen.h"
14
#include "SplashPattern.h"
15
16
//------------------------------------------------------------------------
17
// SplashPattern
18
//------------------------------------------------------------------------
19
20
6.21M
SplashPattern::SplashPattern() {
21
6.21M
}
22
23
6.21M
SplashPattern::~SplashPattern() {
24
6.21M
}
25
26
//------------------------------------------------------------------------
27
// SplashSolidColor
28
//------------------------------------------------------------------------
29
30
6.21M
SplashSolidColor::SplashSolidColor(SplashColorPtr colorA) {
31
6.21M
  splashColorCopy(color, colorA);
32
6.21M
}
33
34
SplashSolidColor::~SplashSolidColor() {
35
}
36
37
27.8k
void SplashSolidColor::getColor(int x, int y, SplashColorPtr c) {
38
27.8k
  splashColorCopy(c, color);
39
27.8k
}
40