Coverage Report

Created: 2026-05-30 06:25

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
9.87M
SplashPattern::SplashPattern() {
21
9.87M
}
22
23
9.87M
SplashPattern::~SplashPattern() {
24
9.87M
}
25
26
//------------------------------------------------------------------------
27
// SplashSolidColor
28
//------------------------------------------------------------------------
29
30
9.87M
SplashSolidColor::SplashSolidColor(SplashColorPtr colorA) {
31
9.87M
  splashColorCopy(color, colorA);
32
9.87M
}
33
34
SplashSolidColor::~SplashSolidColor() {
35
}
36
37
31.5k
void SplashSolidColor::getColor(int x, int y, SplashColorPtr c) {
38
31.5k
  splashColorCopy(c, color);
39
31.5k
}
40