aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma_native_method.pyx
blob: 9ea9ded4294b4f8d73ad9e972a1436e32029febe (plain) (blame)
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
# -*- python -*-
# See LICENSE file for copyright and license details.
cimport cython

from libc.stdint cimport *
from libc.stdlib cimport malloc
from libc.stddef cimport size_t
from libc.errno cimport errno


cdef extern from "include-libgamma.h":
    ctypedef struct libgamma_gamma_ramps8 "struct libgamma_gamma_ramps8":
        # Gamma ramp structure for 8-bit gamma ramps
        size_t red_size   # The size of `red`
        size_t green_size # The size of `green`
        size_t blue_size  # The size of `blue`
        uint8_t *red      # The gamma ramp for the red channel
        uint8_t *green    # The gamma ramp for the green channel
        uint8_t *blue     # The gamma ramp for the blue channel

    ctypedef struct libgamma_gamma_ramps16 "struct libgamma_gamma_ramps16":
        # Gamma ramp structure for 16-bit gamma ramps
        size_t red_size   # The size of `red`
        size_t green_size # The size of `green`
        size_t blue_size  # The size of `blue`
        uint16_t *red     # The gamma ramp for the red channel
        uint16_t *green   # The gamma ramp for the green channel
        uint16_t *blue    # The gamma ramp for the blue channel

    ctypedef struct libgamma_gamma_ramps32 "struct libgamma_gamma_ramps32":
        # Gamma ramp structure for 32-bit gamma ramps
        size_t red_size   # The size of `red`
        size_t green_size # The size of `green`
        size_t blue_size  # The size of `blue`
        uint32_t *red     # The gamma ramp for the red channel
        uint32_t *green   # The gamma ramp for the green channel
        uint32_t *blue    # The gamma ramp for the blue channel

    ctypedef struct libgamma_gamma_ramps64 "struct libgamma_gamma_ramps64":
        # Gamma ramp structure for 64-bit gamma ramps
        size_t red_size   # The size of `red`
        size_t green_size # The size of `green`
        size_t blue_size  # The size of `blue`
        uint64_t *red     # The gamma ramp for the red channel
        uint64_t *green   # The gamma ramp for the green channel
        uint64_t *blue    # The gamma ramp for the blue channel

    ctypedef struct libgamma_gamma_rampsf "struct libgamma_gamma_rampsf":
        # Gamma ramp structure for `float` gamma ramps
        size_t red_size   # The size of `red`
        size_t green_size # The size of `green`
        size_t blue_size  # The size of `blue`
        float *red        # The gamma ramp for the red channel
        float *green      # The gamma ramp for the green channel
        float *blue       # The gamma ramp for the blue channel

    ctypedef struct libgamma_gamma_rampsd "struct libgamma_gamma_rampsd":
        # Gamma ramp structure for `double` gamma ramps
        size_t red_size   # The size of `red`
        size_t green_size # The size of `green`
        size_t blue_size  # The size of `blue`
        double *red       # The gamma ramp for the red channel
        double *green     # The gamma ramp for the green channel
        double *blue      # The gamma ramp for the blue channel

cdef extern int libgamma_gamma_ramps8_initialise(libgamma_gamma_ramps8 *this) nogil
'''
Initialise a gamma ramp in the proper way that allows all adjustment
methods to read from and write to it without causing segmentation violation

The input must have `red_size`, `green_size` and `blue_size`
set to the sizes of the gamma ramps that should be allocated

@param   this  The gamma ramps
@return        Zero on success, -1 on allocation error, `errno` will be set accordingly
'''

cdef extern void libgamma_gamma_ramps8_free(libgamma_gamma_ramps8 *this) nogil
'''
Release resources that are held by a gamma ramp strcuture that
has been allocated by `libgamma_gamma_ramps8_initialise` or
otherwise initialises in the proper manner, as well as release
the pointer to the structure

@param  this  The gamma ramps
'''

cdef extern int libgamma_gamma_ramps16_initialise(libgamma_gamma_ramps16 *this) nogil
'''
Initialise a gamma ramp in the proper way that allows all adjustment
methods to read from and write to it without causing segmentation violation

The input must have `red_size`, `green_size` and `blue_size`
set to the sizes of the gamma ramps that should be allocated

@param   this  The gamma ramps
@return        Zero on success, -1 on allocation error, `errno` will be set accordingly
'''

cdef extern void libgamma_gamma_ramps16_free(libgamma_gamma_ramps16 *this) nogil
'''
Release resources that are held by a gamma ramp strcuture that
has been allocated by `libgamma_gamma_ramps16_initialise` or
otherwise initialises in the proper manner, as well as release
the pointer to the structure

@param  this  The gamma ramps
'''

cdef extern int libgamma_gamma_ramps32_initialise(libgamma_gamma_ramps32 *this) nogil
'''
Initialise a gamma ramp in the proper way that allows all adjustment
methods to read from and write to it without causing segmentation violation

The input must have `red_size`, `green_size` and `blue_size`
set to the sizes of the gamma ramps that should be allocated

@param   this  The gamma ramps
@return        Zero on success, -1 on allocation error, `errno` will be set accordingly
'''

cdef extern void libgamma_gamma_ramps32_free(libgamma_gamma_ramps32 *this) nogil
'''
Release resources that are held by a gamma ramp strcuture that
has been allocated by `libgamma_gamma_ramps32_initialise` or
otherwise initialises in the proper manner, as well as release
the pointer to the structure

@param  this  The gamma ramps
'''

cdef extern int libgamma_gamma_ramps64_initialise(libgamma_gamma_ramps64 *this) nogil
'''
Initialise a gamma ramp in the proper way that allows all adjustment
methods to read from and write to it without causing segmentation violation

The input must have `red_size`, `green_size` and `blue_size`
set to the sizes of the gamma ramps that should be allocated

@param   this  The gamma ramps
@return        Zero on success, -1 on allocation error, `errno` will be set accordingly
'''

cdef extern void libgamma_gamma_ramps64_free(libgamma_gamma_ramps64 *this) nogil
'''
Release resources that are held by a gamma ramp strcuture that
has been allocated by `libgamma_gamma_ramps64_initialise` or
otherwise initialises in the proper manner, as well as release
the pointer to the structure

@param  this  The gamma ramps
'''

cdef extern int libgamma_gamma_rampsf_initialise(libgamma_gamma_rampsf *this) nogil
'''
Initialise a gamma ramp in the proper way that allows all adjustment
methods to read from and write to it without causing segmentation violation

The input must have `red_size`, `green_size` and `blue_size`
set to the sizes of the gamma ramps that should be allocated

@param   this  The gamma ramps
@return        Zero on success, -1 on allocation error, `errno` will be set accordingly
'''

cdef extern void libgamma_gamma_rampsf_free(libgamma_gamma_rampsf *this) nogil
'''
Release resources that are held by a gamma ramp strcuture that
has been allocated by `libgamma_gamma_rampsf_initialise` or
otherwise initialises in the proper manner, as well as release
the pointer to the structure

@param  this  The gamma ramps
'''

cdef extern int libgamma_gamma_rampsd_initialise(libgamma_gamma_rampsd *this) nogil
'''
Initialise a gamma ramp in the proper way that allows all adjustment
methods to read from and write to it without causing segmentation violation

The input must have `red_size`, `green_size` and `blue_size`
set to the sizes of the gamma ramps that should be allocated

@param   this  The gamma ramps
@return        Zero on success, -1 on allocation error, `errno` will be set accordingly
'''

cdef extern void libgamma_gamma_rampsd_free(libgamma_gamma_rampsd *this) nogil
'''
Release resources that are held by a gamma ramp strcuture that
has been allocated by `libgamma_gamma_rampsd_initialise` or
otherwise initialises in the proper manner, as well as release
the pointer to the structure

@param  this  The gamma ramps
'''


def libgamma_native_gamma_ramps8_create(red_size : int, green_size : int, blue_size : int):
    '''
    Create a gamma ramp in the proper way that allows all adjustment methods
    to read from and write to it without causing segmentation violation
    
    @param   red_size       The size of the gamma ramp for the red channel
    @param   green_size     The size of the gamma ramp for the green channel
    @param   blue_size      The size of the gamma ramp for the blue channel
    @return  :(int){4}|int  The tuple that describes the created data, `errno` on failure:
                              Element 1:  The address of the gamma ramp structure
                              Element 2:  The address of the gamma ramp for the red channel
                              Element 3:  The address of the gamma ramp for the green channel
                              Element 4:  The address of the gamma ramp for the blue channel
    '''
    cdef void *allocation = malloc(sizeof(libgamma_gamma_ramps8))
    cdef libgamma_gamma_ramps8 *item = <libgamma_gamma_ramps8 *>allocation
    cdef size_t red, green, blue
    if item is NULL:
        return int(errno)
    item.red_size   = red_size
    item.green_size = green_size
    item.blue_size  = blue_size
    if libgamma_gamma_ramps8_initialise(item) < 0:
        return int(errno)
    red   = <size_t><void *>(item.red)
    green = <size_t><void *>(item.green)
    blue  = <size_t><void *>(item.blue)
    return (int(<size_t>allocation), int(red), int(green), int(blue))


def libgamma_native_gamma_ramps8_free(this : int):
    '''
    Release resources that are held by a gamma ramp strcuture that
    has been allocated by `libgamma_native_gamma_ramps8_create` or
    otherwise created in the proper manner, as well as release the
    pointer to the structure
    
    @param  this  The gamma ramps
    '''
    cdef void *address = <void *><size_t>this
    cdef libgamma_gamma_ramps8 *item = <libgamma_gamma_ramps8 *>address
    libgamma_gamma_ramps8_free(item)


def libgamma_native_gamma_ramps8_get(this : int, index : int) -> int:
    '''
    Read a stop in a gamma ramp
    
    @param   this   The gamma ramp
    @param   index  The index of the gamma ramp stop
    @return         The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef uint8_t *ramp = <uint8_t *>address
    return int(ramp[<size_t>index])


def libgamma_native_gamma_ramps8_set(this : int, index : int, value : int):
    '''
    Modify a stop in a gamma ramp
    
    @param  this   The gamma ramp
    @param  index  The index of the gamma ramp stop
    @param  value  The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef uint8_t *ramp = <uint8_t *>address
    ramp[<size_t>index] = <uint8_t>value


def libgamma_native_gamma_ramps16_create(red_size : int, green_size : int, blue_size : int):
    '''
    Create a gamma ramp in the proper way that allows all adjustment methods
    to read from and write to it without causing segmentation violation
    
    @param   red_size       The size of the gamma ramp for the red channel
    @param   green_size     The size of the gamma ramp for the green channel
    @param   blue_size      The size of the gamma ramp for the blue channel
    @return  :(int){4}|int  The tuple that describes the created data, `errno` on failure:
                              Element 1:  The address of the gamma ramp structure
                              Element 2:  The address of the gamma ramp for the red channel
                              Element 3:  The address of the gamma ramp for the green channel
                              Element 4:  The address of the gamma ramp for the blue channel
    '''
    cdef void *allocation = malloc(sizeof(libgamma_gamma_ramps16))
    cdef libgamma_gamma_ramps16 *item = <libgamma_gamma_ramps16 *>allocation
    cdef size_t red, green, blue
    if item is NULL:
        return int(errno)
    item.red_size   = red_size
    item.green_size = green_size
    item.blue_size  = blue_size
    if libgamma_gamma_ramps16_initialise(item) < 0:
        return int(errno)
    red   = <size_t><void *>(item.red)
    green = <size_t><void *>(item.green)
    blue  = <size_t><void *>(item.blue)
    return (int(<size_t>allocation), int(red), int(green), int(blue))


def libgamma_native_gamma_ramps16_free(this : int):
    '''
    Release resources that are held by a gamma ramp strcuture that
    has been allocated by `libgamma_native_gamma_ramps16_create` or
    otherwise created in the proper manner, as well as release the
    pointer to the structure
    
    @param  this  The gamma ramps
    '''
    cdef void *address = <void*><size_t>this
    cdef libgamma_gamma_ramps16 *item = <libgamma_gamma_ramps16 *>address
    libgamma_gamma_ramps16_free(item)


def libgamma_native_gamma_ramps16_get(this : int, index : int) -> int:
    '''
    Read a stop in a gamma ramp
    
    @param   this   The gamma ramp
    @param   index  The index of the gamma ramp stop
    @return         The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef uint16_t *ramp = <uint16_t *>address
    return int(ramp[<size_t>index])


def libgamma_native_gamma_ramps16_set(this : int, index : int, value : int):
    '''
    Modify a stop in a gamma ramp
    
    @param  this   The gamma ramp
    @param  index  The index of the gamma ramp stop
    @param  value  The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef uint16_t *ramp = <uint16_t *>address
    ramp[<size_t>index] = <uint16_t>value


def libgamma_native_gamma_ramps32_create(red_size : int, green_size : int, blue_size : int):
    '''
    Create a gamma ramp in the proper way that allows all adjustment methods
    to read from and write to it without causing segmentation violation
    
    @param   red_size       The size of the gamma ramp for the red channel
    @param   green_size     The size of the gamma ramp for the green channel
    @param   blue_size      The size of the gamma ramp for the blue channel
    @return  :(int){4}|int  The tuple that describes the created data, `errno` on failure:
                              Element 1:  The address of the gamma ramp structure
                              Element 2:  The address of the gamma ramp for the red channel
                              Element 3:  The address of the gamma ramp for the green channel
                              Element 4:  The address of the gamma ramp for the blue channel
    '''
    cdef void *allocation = malloc(sizeof(libgamma_gamma_ramps32))
    cdef libgamma_gamma_ramps32 *item = <libgamma_gamma_ramps32 *>allocation
    cdef size_t red, green, blue
    if item is NULL:
        return int(errno)
    item.red_size   = red_size
    item.green_size = green_size
    item.blue_size  = blue_size
    if libgamma_gamma_ramps32_initialise(item) < 0:
        return int(errno)
    red   = <size_t><void *>(item.red)
    green = <size_t><void *>(item.green)
    blue  = <size_t><void *>(item.blue)
    return (int(<size_t>allocation), int(red), int(green), int(blue))


def libgamma_native_gamma_ramps32_free(this : int):
    '''
    Release resources that are held by a gamma ramp strcuture that
    has been allocated by `libgamma_native_gamma_ramps32_create` or
    otherwise created in the proper manner, as well as release the
    pointer to the structure
    
    @param  this  The gamma ramps
    '''
    cdef void *address = <void *><size_t>this
    cdef libgamma_gamma_ramps32 *item = <libgamma_gamma_ramps32 *>address
    libgamma_gamma_ramps32_free(item)


def libgamma_native_gamma_ramps32_get(this : int, index : int) -> int:
    '''
    Read a stop in a gamma ramp
    
    @param   this   The gamma ramp
    @param   index  The index of the gamma ramp stop
    @return         The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef uint32_t *ramp = <uint32_t *>address
    return int(ramp[<size_t>index])


def libgamma_native_gamma_ramps32_set(this : int, index : int, value : int):
    '''
    Modify a stop in a gamma ramp
    
    @param  this   The gamma ramp
    @param  index  The index of the gamma ramp stop
    @param  value  The value of the gamma ramp stop
    '''
    cdef void *address = <void*><size_t>this
    cdef uint32_t *ramp = <uint32_t *>address
    ramp[<size_t>index] = <uint32_t>value


def libgamma_native_gamma_ramps64_create(red_size : int, green_size : int, blue_size : int):
    '''
    Create a gamma ramp in the proper way that allows all adjustment methods
    to read from and write to it without causing segmentation violation
    
    @param   red_size       The size of the gamma ramp for the red channel
    @param   green_size     The size of the gamma ramp for the green channel
    @param   blue_size      The size of the gamma ramp for the blue channel
    @return  :(int){4}|int  The tuple that describes the created data, `errno` on failure:
                              Element 1:  The address of the gamma ramp structure
                              Element 2:  The address of the gamma ramp for the red channel
                              Element 3:  The address of the gamma ramp for the green channel
                              Element 4:  The address of the gamma ramp for the blue channel
    '''
    cdef void *allocation = malloc(sizeof(libgamma_gamma_ramps64))
    cdef libgamma_gamma_ramps64 *item = <libgamma_gamma_ramps64 *>allocation
    cdef size_t red, green, blue
    if item is NULL:
        return int(errno)
    item.red_size   = red_size
    item.green_size = green_size
    item.blue_size  = blue_size
    if libgamma_gamma_ramps64_initialise(item) < 0:
        return int(errno)
    red   = <size_t><void *>(item.red)
    green = <size_t><void *>(item.green)
    blue  = <size_t><void *>(item.blue)
    return (int(<size_t>allocation), int(red), int(green), int(blue))


def libgamma_native_gamma_ramps64_free(this : int):
    '''
    Release resources that are held by a gamma ramp strcuture that
    has been allocated by `libgamma_native_gamma_ramps64_create` or
    otherwise created in the proper manner, as well as release the
    pointer to the structure
    
    @param  this  The gamma ramps
    '''
    cdef void *address = <void *><size_t>this
    cdef libgamma_gamma_ramps64 *item = <libgamma_gamma_ramps64 *>address
    libgamma_gamma_ramps64_free(item)


def libgamma_native_gamma_ramps64_get(this : int, index : int) -> int:
    '''
    Read a stop in a gamma ramp
    
    @param   this   The gamma ramp
    @param   index  The index of the gamma ramp stop
    @return         The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef uint64_t *ramp = <uint64_t *>address
    return int(ramp[<size_t>index])


def libgamma_native_gamma_ramps64_set(this : int, index : int, value : int):
    '''
    Modify a stop in a gamma ramp
    
    @param  this   The gamma ramp
    @param  index  The index of the gamma ramp stop
    @param  value  The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef uint64_t *ramp = <uint64_t *>address
    ramp[<size_t>index] = <uint64_t>value


def libgamma_native_gamma_rampsf_create(red_size : int, green_size : int, blue_size : int):
    '''
    Create a gamma ramp in the proper way that allows all adjustment methods
    to read from and write to it without causing segmentation violation
    
    @param   red_size       The size of the gamma ramp for the red channel
    @param   green_size     The size of the gamma ramp for the green channel
    @param   blue_size      The size of the gamma ramp for the blue channel
    @return  :(int){4}|int  The tuple that describes the created data, `errno` on failure:
                              Element 1:  The address of the gamma ramp structure
                              Element 2:  The address of the gamma ramp for the red channel
                              Element 3:  The address of the gamma ramp for the green channel
                              Element 4:  The address of the gamma ramp for the blue channel
    '''
    cdef void *allocation = malloc(sizeof(libgamma_gamma_rampsf))
    cdef libgamma_gamma_rampsf *item = <libgamma_gamma_rampsf *>allocation
    cdef size_t red, green, blue
    if item is NULL:
        return int(errno)
    item.red_size   = red_size
    item.green_size = green_size
    item.blue_size  = blue_size
    if libgamma_gamma_rampsf_initialise(item) < 0:
        return int(errno)
    red   = <size_t><void *>(item.red)
    green = <size_t><void *>(item.green)
    blue  = <size_t><void *>(item.blue)
    return (int(<size_t>allocation), int(red), int(green), int(blue))


def libgamma_native_gamma_rampsf_free(this : int):
    '''
    Release resources that are held by a gamma ramp strcuture that
    has been allocated by `libgamma_native_gamma_rampsf_create` or
    otherwise created in the proper manner, as well as release the
    pointer to the structure
    
    @param  this  The gamma ramps
    '''
    cdef void *address = <void *><size_t>this
    cdef libgamma_gamma_rampsf *item = <libgamma_gamma_rampsf *>address
    libgamma_gamma_rampsf_free(item)


def libgamma_native_gamma_rampsf_get(this : int, index : int) -> float:
    '''
    Read a stop in a gamma ramp
    
    @param   this   The gamma ramp
    @param   index  The index of the gamma ramp stop
    @return         The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef float *ramp = <float *>address
    return float(ramp[<size_t>index])


def libgamma_native_gamma_rampsf_set(this : int, index : int, value : float):
    '''
    Modify a stop in a gamma ramp
    
    @param  this   The gamma ramp
    @param  index  The index of the gamma ramp stop
    @param  value  The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef float *ramp = <float *>address
    ramp[<size_t>index] = <float>value


def libgamma_native_gamma_rampsd_create(red_size : int, green_size : int, blue_size : int):
    '''
    Create a gamma ramp in the proper way that allows all adjustment
    methods to read from and write to it without causing segmentation violation
    
    @param   red_size       The size of the gamma ramp for the red channel
    @param   green_size     The size of the gamma ramp for the green channel
    @param   blue_size      The size of the gamma ramp for the blue channel
    @return  :(int){4}|int  The tuple that describes the created data, `errno` on failure:
                              Element 1:  The address of the gamma ramp structure
                              Element 2:  The address of the gamma ramp for the red channel
                              Element 3:  The address of the gamma ramp for the green channel
                              Element 4:  The address of the gamma ramp for the blue channel
    '''
    cdef void *allocation = malloc(sizeof(libgamma_gamma_rampsd))
    cdef libgamma_gamma_rampsd *item = <libgamma_gamma_rampsd *>allocation
    cdef size_t red, green, blue
    if item is NULL:
        return int(errno)
    item.red_size   = red_size
    item.green_size = green_size
    item.blue_size  = blue_size
    if libgamma_gamma_rampsd_initialise(item) < 0:
        return int(errno)
    red   = <size_t><void *>(item.red)
    green = <size_t><void *>(item.green)
    blue  = <size_t><void *>(item.blue)
    return (int(<size_t>allocation), int(red), int(green), int(blue))


def libgamma_native_gamma_rampsd_free(this : int):
    '''
    Release resources that are held by a gamma ramp strcuture that
    has been allocated by `libgamma_native_gamma_rampsd_create` or
    otherwise created in the proper manner, as well as release the
    pointer to the structure
    
    @param  this  The gamma ramps
    '''
    cdef void *address = <void *><size_t>this
    cdef libgamma_gamma_rampsd *item = <libgamma_gamma_rampsd *>address
    libgamma_gamma_rampsd_free(item)


def libgamma_native_gamma_rampsd_get(this : int, index : int) -> float:
    '''
    Read a stop in a gamma ramp
    
    @param   this   The gamma ramp
    @param   index  The index of the gamma ramp stop
    @return         The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef double *ramp = <double *>address
    return float(ramp[<size_t>index])


def libgamma_native_gamma_rampsd_set(this : int, index : int, value : float):
    '''
    Modify a stop in a gamma ramp
    
    @param  this   The gamma ramp
    @param  index  The index of the gamma ramp stop
    @param  value  The value of the gamma ramp stop
    '''
    cdef void *address = <void *><size_t>this
    cdef double *ramp = <double *>address
    ramp[<size_t>index] = <double>value