• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

D bindings to the GraphicsMagick library.


Commit MetaInfo

Revisión7f1738e08f7753e6c021c531a36f15b8357e203d (tree)
Tiempo2023-06-25 13:58:54
AutorMio <stigma@disr...>
CommiterMio

Log Message

[graphicsmagick] transform in -> const scope

Cambiar Resumen

Diferencia incremental

--- a/graphicsmagick_c/src/graphicsmagick_c/magick/transform.d
+++ b/graphicsmagick_c/src/graphicsmagick_c/magick/transform.d
@@ -1,11 +1,11 @@
11 /*
22 Copyright (C) 2003 GraphicsMagick Group
33 Copyright (C) 2002 ImageMagick Studio
4-
4+
55 This program is covered by multiple licenses, which are described in
66 Copyright.txt. You should have received a copy of Copyright.txt with this
77 package; otherwise see http://www.graphicsmagick.org/www/Copyright.html.
8-
8+
99 ImageMagick Image Transform Methods.
1010 */
1111 // Complete graphicsmagick_c wrapper for version 1.3.
@@ -20,35 +20,35 @@ version (GMagick_Static)
2020 {
2121 @system @nogc nothrow extern (C):
2222
23- Image* ChopImage(in Image*, in RectangleInfo*, ExceptionInfo*);
24- Image* CoalesceImages(in Image*, ExceptionInfo*);
25- Image* CropImage(in Image*, in RectangleInfo*, ExceptionInfo*);
26- Image* DeconstructImages(in Image*, ExceptionInfo*);
27- Image* FlattenImages(in Image*, ExceptionInfo*);
28- Image* FlipImage(in Image*, ExceptionInfo*);
29- Image* FlopImage(in Image*, ExceptionInfo*);
30- Image* MosaicImages(in Image*, ExceptionInfo*);
31- Image* RollImage(in Image*, in c_long, in c_long, ExceptionInfo*);
32- Image* ShaveImage(in Image*, in RectangleInfo*, ExceptionInfo*);
23+ Image* ChopImage(const scope Image*, const scope RectangleInfo*, ExceptionInfo*);
24+ Image* CoalesceImages(const scope Image*, ExceptionInfo*);
25+ Image* CropImage(const scope Image*, const scope RectangleInfo*, ExceptionInfo*);
26+ Image* DeconstructImages(const scope Image*, ExceptionInfo*);
27+ Image* FlattenImages(const scope Image*, ExceptionInfo*);
28+ Image* FlipImage(const scope Image*, ExceptionInfo*);
29+ Image* FlopImage(const scope Image*, ExceptionInfo*);
30+ Image* MosaicImages(const scope Image*, ExceptionInfo*);
31+ Image* RollImage(const scope Image*, const scope c_long, const scope c_long, ExceptionInfo*);
32+ Image* ShaveImage(const scope Image*, const scope RectangleInfo*, ExceptionInfo*);
3333
34- void TransformImage(Image**, in RectangleInfo*, ExceptionInfo*);
34+ void TransformImage(Image**, const scope RectangleInfo*, ExceptionInfo*);
3535 }
3636 else
3737 {
3838 @system @nogc nothrow extern (C)
3939 {
40- alias mChopImage = Image* function(in Image*, in RectangleInfo*, ExceptionInfo*);
41- alias mCoalesceImages = Image* function(in Image*, ExceptionInfo*);
42- alias mCropImage = Image* function(in Image*, in RectangleInfo*, ExceptionInfo*);
43- alias mDeconstructImages = Image* function(in Image*, ExceptionInfo*);
44- alias mFlattenImages = Image* function(in Image*, ExceptionInfo*);
45- alias mFlipImage = Image* function(in Image*, ExceptionInfo*);
46- alias mFlopImage = Image* function(in Image*, ExceptionInfo*);
47- alias mMosaicImages = Image* function(in Image*, ExceptionInfo*);
48- alias mRollImage = Image* function(in Image*, in c_long, in c_long, ExceptionInfo*);
49- alias mShaveImage = Image* function(in Image*, in RectangleInfo*, ExceptionInfo*);
40+ alias mChopImage = Image* function(const scope Image*, const scope RectangleInfo*, ExceptionInfo*);
41+ alias mCoalesceImages = Image* function(const scope Image*, ExceptionInfo*);
42+ alias mCropImage = Image* function(const scope Image*, const scope RectangleInfo*, ExceptionInfo*);
43+ alias mDeconstructImages = Image* function(const scope Image*, ExceptionInfo*);
44+ alias mFlattenImages = Image* function(const scope Image*, ExceptionInfo*);
45+ alias mFlipImage = Image* function(const scope Image*, ExceptionInfo*);
46+ alias mFlopImage = Image* function(const scope Image*, ExceptionInfo*);
47+ alias mMosaicImages = Image* function(const scope Image*, ExceptionInfo*);
48+ alias mRollImage = Image* function(const scope Image*, const scope c_long, const scope c_long, ExceptionInfo*);
49+ alias mShaveImage = Image* function(const scope Image*, const scope RectangleInfo*, ExceptionInfo*);
5050
51- alias mTransformImage = void function(Image**, in RectangleInfo*, ExceptionInfo*);
51+ alias mTransformImage = void function(Image**, const scope RectangleInfo*, ExceptionInfo*);
5252 }
5353
5454 __gshared