Skip to content

Commit a6c2408

Browse files
committed
Debayer the preview of color raw images
1 parent cb4aa72 commit a6c2408

File tree

133 files changed

+83968
-194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+83968
-194
lines changed

component/Makefile.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ version=0.0
1010

1111
[target]
1212
dirs=synapse/source/lib \
13+
bgrabitmap \
1314
enhedits \
1415
indiclient \
1516
xmlparser \
@@ -59,5 +60,5 @@ export LCL_PLATFORM
5960
outdir:
6061
mkdir -p lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)
6162

62-
all: outdir synapse/source/lib_all enhedits_all indiclient_all xmlparser_all vosamp_all components$(PPUEXT)
63+
all: outdir synapse/source/lib_all bgrabitmap_all enhedits_all indiclient_all xmlparser_all vosamp_all components$(PPUEXT)
6364

component/bgrabitmap/COPYING.LGPL.txt

+481
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is the file COPYING.modifiedLGPL, it applies to all units of the
2+
BGRABitmap library.
3+
4+
These files are distributed under the Library GNU General Public License
5+
(see the file COPYING.LGPL) with the following modification:
6+
7+
As a special exception, the copyright holders of this library give you
8+
permission to link this library with independent modules to produce an
9+
executable, regardless of the license terms of these independent modules,
10+
and to copy and distribute the resulting executable under terms of your choice,
11+
provided that you also meet, for each linked independent module, the terms
12+
and conditions of the license of that module. An independent module is a
13+
module which is not derived from or based on this library. If you modify this
14+
library, you may extend this exception to your version of the library, but
15+
you are not obligated to do so. If you do not wish to do so, delete this
16+
exception statement from your version.
17+
18+
19+
If you didn't receive a copy of the file COPYING.LGPL, contact:
20+
Free Software Foundation, Inc.,
21+
675 Mass Ave
22+
Cambridge, MA 02139
23+
USA
24+

component/bgrabitmap/Makefile.in

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# File generated automatically by Lazarus Package Manager
2+
#
3+
# Makefile.fpc for bgrapkg 0.0
4+
#
5+
# This file was generated on 20. 03. 11
6+
7+
[package]
8+
name=bgrabitmappack
9+
version=0.0
10+
11+
[compiler]
12+
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
13+
unitdir=$(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./
14+
includedir=./
15+
options= $(fpcopts) -MObjFPC -Scghi -vewnhi -l -dLCL -dLCL$(LCL_PLATFORM)
16+
17+
[target]
18+
units=bgrabitmappack.pas
19+
20+
[clean]
21+
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
22+
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
23+
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
24+
$(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) \
25+
$(wildcard $(COMPILER_UNITTARGETDIR)/*.res) \
26+
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
27+
[prerules]
28+
LAZDIR=%LAZDIR%
29+
# Compiler options
30+
ifndef fpcopts
31+
fpcopts=-O3 -OoREGVAR -Ch524288 -CX -XX -Xs
32+
endif
33+
# LCL Platform
34+
ifndef LCL_PLATFORM
35+
ifeq ($(OS_TARGET),win32)
36+
LCL_PLATFORM=win32
37+
else
38+
ifeq ($(OS_TARGET),win64)
39+
LCL_PLATFORM=win32
40+
else
41+
ifeq ($(OS_TARGET),darwin)
42+
LCL_PLATFORM=qt
43+
else
44+
LCL_PLATFORM=gtk2
45+
endif
46+
endif
47+
endif
48+
endif
49+
export LCL_PLATFORM
50+
51+
[rules]
52+
.PHONY: cleartarget all
53+
54+
cleartarget:
55+
-$(DEL) $(COMPILER_UNITTARGETDIR)/bgrabitmappack$(PPUEXT)
56+
57+
all: cleartarget $(COMPILER_UNITTARGETDIR) bgrabitmappack$(PPUEXT)

0 commit comments

Comments
 (0)