This file is indexed.

/usr/include/synfig-0.0/synfig/surfacenew.h is in libsynfig-dev 0.64.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
/* === S Y N F I G ========================================================= */
/*!	\file surfacenew.h
**	\brief Template Header
**
**	$Id$
**
**	\legal
**	Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
**
**	This package is free software; you can redistribute it and/or
**	modify it under the terms of the GNU General Public License as
**	published by the Free Software Foundation; either version 2 of
**	the License, or (at your option) any later version.
**
**	This package is distributed in the hope that it will be useful,
**	but WITHOUT ANY WARRANTY; without even the implied warranty of
**	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
**	General Public License for more details.
**	\endlegal
*/
/* ========================================================================= */

/* === S T A R T =========================================================== */

#ifndef __SYNFIG_SURFACENEW_H
#define __SYNFIG_SURFACENEW_H

/* === H E A D E R S ======================================================= */

#include <ETL/handle>
#include <ETL/ref_count>
#include "color.h"
#include "mutex.h"
#include <map>

/* === M A C R O S ========================================================= */

/* === T Y P E D E F S ===================================================== */

/* === C L A S S E S & S T R U C T S ======================================= */

namespace synfig {

class Surface;
class SurfaceChannelLock;
class SurfaceChannelLockConst;

//! \writeme
enum SurfaceColorSystem
{
	COLORSYS_RGB,
	COLORSYS_YUV,

	COLORSYS_END
}; // END of enum SurfaceColorSystem

//! \writeme
enum SurfaceChannel
{
	CHAN_A,
	CHAN_R,
	CHAN_G,
	CHAN_B,

	CHAN_Y,
	CHAN_U,
	CHAN_V,

	CHAN_END
}; // END of enum SurfaceChannel

class SurfaceNew : etl::shared_object
{
	friend class SurfaceChannelLock;

	/*
 --	** -- T Y P E S -----------------------------------------------------------
	*/

public:

	//! \writeme
	typedef etl::handle<SurfaceNew> Handle;

	//! \writeme
	typedef etl::handle<const SurfaceNew> HandleConst;

	//! \writeme
	typedef etl::loose_handle<SurfaceNew> LooseHandle;

	//! \writeme
	typedef SurfaceChannel;

	//! \writeme
	typedef SurfaceChannelLock ChannelLock;

	//! \writeme
	typedef SurfaceChannelLockConst ChannelLockConst;

	//! \writeme
	typedef SurfaceColorSystem;

	//! \writeme
	class Lock
	{
		Handle x;
	public:
		Lock(const Handle& x):x(x) { x->lock(); }
		void unlock() { if(x){ x->unlock(); x=0; } }
		~Lock() { unlock(); }
	}; // END of class Lock
	friend class Lock;

private:

	//! \writeme
	class ChannelData;

	/*
 --	** -- D A T A -------------------------------------------------------------
	*/

private:

	//! \writeme
	RecMutex mutex_;

	//! \writeme
	int w_,h_;

	//! \writeme
	ColorSystem color_system_;

	//! \writeme
	bool premult_flag_;

	//! \writeme
	std::map<Channel,ChannelData> channel_map_;

	/*
 -- ** -- S I G N A L S -------------------------------------------------------
	*/

private:

	/*
 -- ** -- S I G N A L   I N T E R F A C E -------------------------------------
	*/

public:

	/*
 --	** -- C O N S T R U C T O R S ---------------------------------------------
	*/

protected:

	//! \writeme
	SurfaceNew();

public:

	//! \writeme
	virtual ~SurfaceNew();

	/*
 --	** -- M E M B E R   F U N C T I O N S -------------------------------------
	*/

public:

	//! \writeme
	int get_w()const;

	//! \writeme
	int get_h()const;

	//! \writeme
	void set_wh(int w, int h);

	//! \writeme
	ColorSystem get_color_system()const;

	//! \writeme
	void set_color_system(ColorSystem x);

	//! Should only be used in certain circumstances
	Color get_color(int x, int y)const;

	//! \writeme
	void lock();

	//! \writeme
	void unlock();

	//! \writeme
	bool trylock();

	//! \writeme
	ChannelLock lock_channel(Channel chan);

	//! \writeme
	ChannelLockConst lock_channel_const(Channel chan)const;

	//! \writeme
	ChannelLock lock_channel_alpha(Channel chan);

	//! \writeme
	ChannelLockConst lock_channel_alpha_const(Channel chan)const;

	//! \writeme
	bool is_channel_defined(Channel chan)const;

	//! \writeme
	bool get_premult()const;

	//! \writeme
	void set_premult();

	/*
 --	** -- S T A T I C   F U N C T I O N S -------------------------------------
	*/

public:

	//! Normal SurfaceNew Constructor
	static Handle create(int w=0, int h=0, ColorSystem sys=COLORSYS_RGB);

	//! Converts an old Surface to a SurfaceNew
	static Handle create(const Surface&);

	//! Duplicates a surface
	static Handle create(HandleConst);

	//! Creates a cropped copy of a surface
	static Handle crop(HandleConst, int x, int y, int w, int h);

	static void blit(
		Handle dest,
		int x_dest,
		int y_dest,
		HandleConst src,
		float amount=1.0,
		Color::BlendMethod bm=Color::BLEND_COMPOSITE
	);

	static void blit(
		Handle dest,
		int x_dest,
		int y_dest,
		Handle src,
		int x_src,
		int y_src,
		int w_src,
		int h_src,
		float amount=1.0,
		Color::BlendMethod bm=Color::BLEND_COMPOSITE
	);


	static void chan_mlt(ChannelLock& dest, float x);
	static void chan_mlt(ChannelLock& dest, const ChannelLockConst& x);

	static void chan_div(ChannelLock& dest, float x);
	static void chan_div(ChannelLock& dest, const ChannelLockConst& x);

	static void chan_add(ChannelLock& dest, float x);
	static void chan_add(ChannelLock& dest, const ChannelLockConst& x);

	static void chan_sub(ChannelLock& dest, float x);
	static void chan_sub(ChannelLock& dest, const ChannelLockConst& x);
}; // END of class SurfaceNew

//! \writeme
class SurfaceChannelLockConst
{
	friend class SurfaceNew;

	/*
 --	** -- T Y P E S -----------------------------------------------------------
	*/

public:

	/*
 --	** -- D A T A -------------------------------------------------------------
	*/

protected:

	//! \writeme
	SurfaceNew::Handle surface_;

	//! \writeme
	etl::reference_counter ref_count_;

	//! \writeme
	SurfaceChannel channel_;

	//! \writeme
	bool data_ptr_checked_out_;

	/*
 --	** -- C O N S T R U C T O R S ---------------------------------------------
	*/

public:

	SurfaceChannelLockConst();

	//! \writeme
	~SurfaceChannelLockConst();

	/*
 --	** -- M E M B E R   F U N C T I O N S -------------------------------------
	*/

public:

	//! \writeme
	SurfaceChannel get_channel()const;

	//! \writeme
	int get_w()const;

	//! \writeme
	int get_h()const;

	//! \writeme
	float get_value(int x, int y);

	//! \writeme
	const float* get_data_ptr()const;

	//! \writeme
	int get_data_ptr_stride()const;

	//! Releases the pointer obtained with get_data_ptr()
	void release_data_ptr()const;

	//! \writeme
	operator bool()const;
}; // END of class SurfaceChannelLockConst


//! \writeme
class SurfaceChannelLock : public SurfaceChannelLockConst
{
	friend class SurfaceNew;

	using SurfaceChannelLock::get_data_ptr;

	/*
 --	** -- T Y P E S -----------------------------------------------------------
	*/

public:

	/*
 --	** -- D A T A -------------------------------------------------------------
	*/

private:

	/*
 --	** -- C O N S T R U C T O R S ---------------------------------------------
	*/

public:

	//! \writeme
	SurfaceChannelLock();

	//! \writeme
	~SurfaceChannelLock();

	/*
 --	** -- M E M B E R   F U N C T I O N S -------------------------------------
	*/

public:

	//! \writeme
	void clear();

	//! \writeme
	void fill(float value);

	//! \writeme
	void set_value(int x, int y, float v);

	float* get_data_ptr();
}; // END of class ChannelLock


}; // END of namespace synfig

/* === E N D =============================================================== */

#endif