-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathrender.go
1271 lines (1098 loc) · 42 KB
/
render.go
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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package sdl
/*
#include "sdl_wrapper.h"
#if !(SDL_VERSION_ATLEAST(2,0,1))
#if defined(WARN_OUTDATED)
#pragma message("SDL_UpdateYUVTexture is not supported before SDL 2.0.1")
#endif
static inline int SDL_UpdateYUVTexture(SDL_Texture* texture, const SDL_Rect* rect, const Uint8* Yplane, int Ypitch, const Uint8* Uplane, int Upitch, const Uint8* Vplane, int Vpitch)
{
return -1;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,4))
#if defined(WARN_OUTDATED)
#pragma message("SDL_RenderIsClipEnabled is not supported before SDL 2.0.4")
#endif
static inline SDL_bool SDLCALL SDL_RenderIsClipEnabled(SDL_Renderer * renderer)
{
return SDL_FALSE;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,5))
#if defined(WARN_OUTDATED)
#pragma message("SDL_RenderSetIntegerScale is not supported before SDL 2.0.5")
#pragma message("SDL_RenderGetIntegerScale is not supported before SDL 2.0.5")
#endif
static inline int SDL_RenderSetIntegerScale(SDL_Renderer* renderer, SDL_bool enable)
{
SDL_Unsupported();
return -1;
}
static inline SDL_bool SDL_RenderGetIntegerScale(SDL_Renderer* renderer)
{
SDL_Unsupported();
return -1;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,8))
#if defined(WARN_OUTDATED)
#pragma message("SDL_RenderGetMetalLayer is not supported before SDL 2.0.8")
#pragma message("SDL_RenderGetMetalCommandEncoder is not supported before SDL 2.0.8")
#endif
static inline void * SDL_RenderGetMetalLayer(SDL_Renderer *renderer)
{
return NULL;
}
static inline void * SDL_RenderGetMetalCommandEncoder(SDL_Renderer *renderer)
{
return NULL;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,10))
#if defined(WARN_OUTDATED)
#pragma message("SDL_RenderDrawPointF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderDrawPointsF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderDrawLineF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderDrawLinesF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderDrawRectF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderDrawRectsF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderFillRectF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderFillRectsF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderCopyF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderCopyExF is not supported before SDL 2.0.10")
#pragma message("SDL_RenderFlush is not supported before SDL 2.0.10")
#endif
static inline int SDL_RenderDrawPointF(SDL_Renderer * renderer, float x, float y)
{
return SDL_RenderDrawPoint(renderer, (int) x, (int) y);
}
static inline int SDL_RenderDrawPointsF(SDL_Renderer * renderer, const SDL_FPoint * points, int count)
{
return SDL_RenderDrawPoints(renderer, (const SDL_Point *) points, count);
}
static inline int SDL_RenderDrawLineF(SDL_Renderer * renderer, float x1, float y1, float x2, float y2)
{
return SDL_RenderDrawLine(renderer, (int) x1, (int) y1, (int) x2, (int) y2);
}
static inline int SDL_RenderDrawLinesF(SDL_Renderer * renderer, const SDL_FPoint * points, int count)
{
return SDL_RenderDrawLines(renderer, (const SDL_Point *) points, count);
}
static inline int SDL_RenderDrawRectF(SDL_Renderer * renderer, const SDL_FRect * rect)
{
return SDL_RenderDrawRect(renderer, (const SDL_Rect *) rect);
}
static inline int SDL_RenderDrawRectsF(SDL_Renderer * renderer, const SDL_FRect *rects, int count)
{
return SDL_RenderDrawRects(renderer, (const SDL_Rect *) rects, count);
}
static inline int SDL_RenderFillRectF(SDL_Renderer * renderer, const SDL_FRect * rect)
{
return SDL_RenderFillRect(renderer, (const SDL_Rect *) rect);
}
static inline int SDL_RenderFillRectsF(SDL_Renderer * renderer, const SDL_FRect * rects, int count)
{
return SDL_RenderFillRects(renderer, (const SDL_Rect *) rects, count);
}
static inline int SDL_RenderCopyF(SDL_Renderer * renderer, SDL_Texture * texture, const SDL_Rect * srcrect, const SDL_FRect * dstrect)
{
return SDL_RenderCopy(renderer, texture, srcrect, (const SDL_Rect *) dstrect);
}
static inline int SDL_RenderCopyExF(SDL_Renderer * renderer, SDL_Texture * texture, const SDL_Rect * srcrect, const SDL_FRect * dstrect, const double angle, const SDL_FPoint * center, const SDL_RendererFlip flip)
{
return SDL_RenderCopyEx(renderer, texture, srcrect, (const SDL_Rect *) dstrect, angle, (const SDL_Point *) center, flip);
}
static inline int SDL_RenderFlush(SDL_Renderer * renderer)
{
return 0;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,12))
typedef enum
{
SDL_ScaleModeNearest,
SDL_ScaleModeLinear,
SDL_ScaleModeBest
} SDL_ScaleMode;
#if defined(WARN_OUTDATED)
#pragma message("SDL_SetTextureScaleMode is not supported before SDL 2.0.12")
#pragma message("SDL_GetTextureScaleMode is not supported before SDL 2.0.12")
#pragma message("SDL_LockTextureToSurface is not supported before SDL 2.0.12")
#endif
static int SDL_SetTextureScaleMode(SDL_Texture * texture, SDL_ScaleMode scaleMode)
{
return -1;
}
static int SDLCALL SDL_GetTextureScaleMode(SDL_Texture * texture, SDL_ScaleMode *scaleMode)
{
return -1;
}
static int SDL_LockTextureToSurface(SDL_Texture *texture, const SDL_Rect *rect, SDL_Surface **surface)
{
return -1;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,16))
#if defined(WARN_OUTDATED)
#pragma message("SDL_UpdateNVTexture is not supported before SDL 2.0.16")
#endif
static int SDL_UpdateNVTexture(SDL_Texture * texture, const SDL_Rect * rect, const Uint8 *Yplane, int Ypitch, const Uint8 *UVplane, int UVpitch)
{
return -1;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,18))
#if defined(WARN_OUTDATED)
#pragma message("SDL_RenderGeometry is not supported before SDL 2.0.18")
#pragma message("SDL_RenderGeometryRaw is not supported before SDL 2.0.18")
#pragma message("SDL_SetTextureUserData is not supported before SDL 2.0.18")
#pragma message("SDL_GetTextureUserData is not supported before SDL 2.0.18")
#pragma message("SDL_RenderWindowToLogical is not supported before SDL 2.0.18")
#pragma message("SDL_RenderLogicalToWindow is not supported before SDL 2.0.18")
#pragma message("SDL_RenderSetVSync is not supported before SDL 2.0.18")
#endif
// Vertex structure
typedef struct SDL_Vertex
{
SDL_FPoint position; // Vertex position, in SDL_Renderer coordinates
SDL_Color color; // Vertex color
SDL_FPoint tex_coord; // Normalized texture coordinates, if needed
} SDL_Vertex;
static int SDL_RenderGeometry(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_Vertex *vertices, int num_vertices, const int *indices, int num_indices)
{
return -1;
}
static int SDL_RenderGeometryRaw(SDL_Renderer *renderer, SDL_Texture *texture, const float *xy, int xy_stride, const SDL_Color *color, int color_stride, const float *uv, int uv_stride, int num_vertices, const void *indices, int num_indices, int size_indices)
{
return -1;
}
static int SDL_SetTextureUserData(SDL_Texture * texture, void *userdata)
{
return -1;
}
static void * SDLCALL SDL_GetTextureUserData(SDL_Texture * texture)
{
return NULL;
}
static void SDL_RenderWindowToLogical(SDL_Renderer * renderer, int windowX, int windowY, float *logicalX, float *logicalY)
{
}
static void SDL_RenderLogicalToWindow(SDL_Renderer * renderer, float logicalX, float logicalY, int *windowX, int *windowY)
{
}
static int SDL_RenderSetVSync(SDL_Renderer* renderer, int vsync)
{
return -1;
}
#endif
#if SDL_COMPILEDVERSION == SDL_VERSIONNUM(2,0,18)
static inline int RenderGeometryRaw(SDL_Renderer *renderer, SDL_Texture *texture, const float *xy, int xy_stride, const SDL_Color *color, int color_stride, const float *uv, int uv_stride, int num_vertices, const void *indices, int num_indices, int size_indices)
{
return SDL_RenderGeometryRaw(renderer, texture, xy, xy_stride, (int*) color, color_stride, uv, uv_stride, num_vertices, indices, num_indices, size_indices);
}
#else
static inline int RenderGeometryRaw(SDL_Renderer *renderer, SDL_Texture *texture, const float *xy, int xy_stride, const SDL_Color *color, int color_stride, const float *uv, int uv_stride, int num_vertices, const void *indices, int num_indices, int size_indices)
{
return SDL_RenderGeometryRaw(renderer, texture, xy, xy_stride, color, color_stride, uv, uv_stride, num_vertices, indices, num_indices, size_indices);
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,22))
#if defined(WARN_OUTDATED)
#pragma message("SDL_RenderGetWindow is not supported before SDL 2.0.22")
#endif
static inline SDL_Window * SDLCALL SDL_RenderGetWindow(SDL_Renderer *renderer)
{
return NULL;
}
#endif
// WORKAROUND: This prevents audio from seemingly going corrupt when drawing outside the screen bounding box?
// It does that by allocating SDL_Rect in the C context instead of Go context.
static inline int RenderCopy(SDL_Renderer *renderer, SDL_Texture *texture, SDL_Rect *src, int dst_x, int dst_y, int dst_w, int dst_h)
{
SDL_Rect dst = {dst_x, dst_y, dst_w, dst_h};
return SDL_RenderCopy(renderer, texture, src, &dst);
}
*/
import "C"
import (
"reflect"
"unsafe"
)
// An enumeration of flags used when creating a rendering context.
// (https://wiki.libsdl.org/SDL2/SDL_RendererFlags)
type RendererFlags uint32
const (
RENDERER_SOFTWARE RendererFlags = C.SDL_RENDERER_SOFTWARE // the renderer is a software fallback
RENDERER_ACCELERATED RendererFlags = C.SDL_RENDERER_ACCELERATED // the renderer uses hardware acceleration
RENDERER_PRESENTVSYNC RendererFlags = C.SDL_RENDERER_PRESENTVSYNC // present is synchronized with the refresh rate
RENDERER_TARGETTEXTURE RendererFlags = C.SDL_RENDERER_TARGETTEXTURE // the renderer supports rendering to texture
)
type ScaleMode uint32
// The scaling mode for a texture.
const (
ScaleModeNearest ScaleMode = C.SDL_ScaleModeNearest // nearest pixel sampling
ScaleModeLinear ScaleMode = C.SDL_ScaleModeLinear // linear filtering
ScaleModeBest ScaleMode = C.SDL_ScaleModeBest // anisotropic filtering
)
func (sm ScaleMode) c() C.SDL_ScaleMode {
return C.SDL_ScaleMode(C.Uint32(sm))
}
func (sm *ScaleMode) cptr() *C.SDL_ScaleMode {
return (*C.SDL_ScaleMode)(unsafe.Pointer(sm))
}
// An enumeration of texture access patterns..
// (https://wiki.libsdl.org/SDL2/SDL_TextureAccess)
type TextureAccess int
const (
TEXTUREACCESS_STATIC TextureAccess = C.SDL_TEXTUREACCESS_STATIC // changes rarely, not lockable
TEXTUREACCESS_STREAMING TextureAccess = C.SDL_TEXTUREACCESS_STREAMING // changes frequently, lockable
TEXTUREACCESS_TARGET TextureAccess = C.SDL_TEXTUREACCESS_TARGET // can be used as a render target
)
// An enumeration of the texture channel modulation used in Renderer.Copy().
// (https://wiki.libsdl.org/SDL2/SDL_TextureModulate)
type TextureModulate C.SDL_TextureModulate
const (
TEXTUREMODULATE_NONE TextureModulate = C.SDL_TEXTUREMODULATE_NONE // no modulation
TEXTUREMODULATE_COLOR TextureModulate = C.SDL_TEXTUREMODULATE_COLOR // srcC = srcC * color
TEXTUREMODULATE_ALPHA TextureModulate = C.SDL_TEXTUREMODULATE_ALPHA // srcA = srcA * alpha
)
// An enumeration of flags that can be used in the flip parameter for Renderer.CopyEx().
// (https://wiki.libsdl.org/SDL2/SDL_RendererFlip)
type RendererFlip C.SDL_RendererFlip
const (
FLIP_NONE RendererFlip = C.SDL_FLIP_NONE // do not flip
FLIP_HORIZONTAL RendererFlip = C.SDL_FLIP_HORIZONTAL // flip horizontally
FLIP_VERTICAL RendererFlip = C.SDL_FLIP_VERTICAL // flip vertically
)
func (flip RendererFlip) c() C.SDL_RendererFlip {
return C.SDL_RendererFlip(flip)
}
// RendererInfo contains information on the capabilities of a render driver or the current render context.
// (https://wiki.libsdl.org/SDL2/SDL_RendererInfo)
type RendererInfo struct {
Name string // the name of the renderer
RendererInfoData
}
type cRendererInfo struct {
Name *C.char
RendererInfoData
}
// RendererInfoData contains information on the capabilities of a render driver or the current render context.
// (https://wiki.libsdl.org/SDL2/SDL_RendererInfo)
type RendererInfoData struct {
Flags uint32 // a mask of supported renderer flags
NumTextureFormats uint32 // the number of available texture formats
TextureFormats [16]int32 // the available texture formats
MaxTextureWidth int32 // the maximum texture width
MaxTextureHeight int32 // the maximum texture height
}
func (info *RendererInfo) cptr() *C.SDL_RendererInfo {
return (*C.SDL_RendererInfo)(unsafe.Pointer(info))
}
func (info *cRendererInfo) cptr() *C.SDL_RendererInfo {
return (*C.SDL_RendererInfo)(unsafe.Pointer(info))
}
// Vertex structure
type Vertex struct {
Position FPoint // Vertex position, in SDL_Renderer coordinates
Color Color // Vertex color
TexCoord FPoint // Normalized texture coordinates, if needed
}
// GetNumRenderDrivers returns the number of 2D rendering drivers available for the current display.
// (https://wiki.libsdl.org/SDL2/SDL_GetNumRenderDrivers)
func GetNumRenderDrivers() (int, error) {
i := int(C.SDL_GetNumRenderDrivers())
return i, errorFromInt(i)
}
// GetRenderDriverInfo returns information about a specific 2D rendering driver for the current display.
// (https://wiki.libsdl.org/SDL2/SDL_GetRenderDriverInfo)
func GetRenderDriverInfo(index int, info *RendererInfo) (int, error) {
var cinfo cRendererInfo
ret := int(C.SDL_GetRenderDriverInfo(C.int(index), cinfo.cptr()))
if ret < 0 {
return ret, GetError()
}
info.RendererInfoData = cinfo.RendererInfoData
// No need to free, it's done by DestroyRenderer
info.Name = C.GoString(cinfo.Name)
return ret, nil
}
// CreateWindowAndRenderer returns a new window and default renderer.
// (https://wiki.libsdl.org/SDL2/SDL_CreateWindowAndRenderer)
func CreateWindowAndRenderer(w, h int32, flags WindowFlags) (*Window, *Renderer, error) {
var window *C.SDL_Window
var renderer *C.SDL_Renderer
ret := C.SDL_CreateWindowAndRenderer(
C.int(w),
C.int(h),
C.Uint32(flags),
&window,
&renderer)
if ret == -1 {
return nil, nil, GetError()
}
return (*Window)(unsafe.Pointer(window)), (*Renderer)(unsafe.Pointer(renderer)), nil
}
// CreateRenderer returns a new 2D rendering context for a window.
// (https://wiki.libsdl.org/SDL2/SDL_CreateRenderer)
func CreateRenderer(window *Window, index int, flags RendererFlags) (*Renderer, error) {
renderer := C.SDL_CreateRenderer(window.cptr(), C.int(index), C.Uint32(flags))
if renderer == nil {
return nil, GetError()
}
return (*Renderer)(unsafe.Pointer(renderer)), nil
}
// CreateSoftwareRenderer returns a new 2D software rendering context for a surface.
// (https://wiki.libsdl.org/SDL2/SDL_CreateSoftwareRenderer)
func CreateSoftwareRenderer(surface *Surface) (*Renderer, error) {
renderer := C.SDL_CreateSoftwareRenderer(surface.cptr())
if renderer == nil {
return nil, GetError()
}
return (*Renderer)(unsafe.Pointer(renderer)), nil
}
// GetRenderer returns the renderer associated with a window.
// (https://wiki.libsdl.org/SDL2/SDL_GetRenderer)
func (window *Window) GetRenderer() (*Renderer, error) {
renderer := C.SDL_GetRenderer(window.cptr())
if renderer == nil {
return nil, GetError()
}
return (*Renderer)(unsafe.Pointer(renderer)), nil
}
// GetInfo returns information about a rendering context.
// (https://wiki.libsdl.org/SDL2/SDL_GetRendererInfo)
func (renderer *Renderer) GetInfo() (RendererInfo, error) {
var cinfo cRendererInfo
var info RendererInfo
ret := int(C.SDL_GetRendererInfo(renderer.cptr(), cinfo.cptr()))
if ret < 0 {
return info, GetError()
}
info.RendererInfoData = cinfo.RendererInfoData
// No need to free, it's done by DestroyRenderer
info.Name = C.GoString(cinfo.Name)
return info, nil
}
// GetOutputSize returns the output size in pixels of a rendering context.
// (https://wiki.libsdl.org/SDL2/SDL_GetRendererOutputSize)
func (renderer *Renderer) GetOutputSize() (w, h int32, err error) {
ret := C.SDL_GetRendererOutputSize(
renderer.cptr(),
(*C.int)(unsafe.Pointer(&w)),
(*C.int)(unsafe.Pointer(&h)))
err = errorFromInt(int(ret))
return
}
// CreateTexture returns a new texture for a rendering context.
// (https://wiki.libsdl.org/SDL2/SDL_CreateTexture)
func (renderer *Renderer) CreateTexture(format PixelFormatConstant, access TextureAccess, w, h int32) (*Texture, error) {
texture := C.SDL_CreateTexture(
renderer.cptr(),
C.Uint32(format),
C.int(access),
C.int(w),
C.int(h))
if texture == nil {
return nil, GetError()
}
return (*Texture)(unsafe.Pointer(texture)), nil
}
// CreateTextureFromSurface returns a new texture from an existing surface.
// (https://wiki.libsdl.org/SDL2/SDL_CreateTextureFromSurface)
func (renderer *Renderer) CreateTextureFromSurface(surface *Surface) (*Texture, error) {
texture := C.SDL_CreateTextureFromSurface(renderer.cptr(), surface.cptr())
if texture == nil {
return nil, GetError()
}
return (*Texture)(unsafe.Pointer(texture)), nil
}
// Query returns the attributes of a texture.
// (https://wiki.libsdl.org/SDL2/SDL_QueryTexture)
func (texture *Texture) Query() (format uint32, access int, width int32, height int32, err error) {
var _format C.Uint32
var _access C.int
var _width C.int
var _height C.int
ret := int(C.SDL_QueryTexture(texture.cptr(), &_format, &_access, &_width, &_height))
format = uint32(_format)
access = int(_access)
width = int32(_width)
height = int32(_height)
err = errorFromInt(ret)
return
}
// SetColorMod sets an additional color value multiplied into render copy operations.
// (https://wiki.libsdl.org/SDL2/SDL_SetTextureColorMod)
func (texture *Texture) SetColorMod(r uint8, g uint8, b uint8) error {
return errorFromInt(int(
C.SDL_SetTextureColorMod(
texture.cptr(),
C.Uint8(r),
C.Uint8(g),
C.Uint8(b))))
}
// SetAlphaMod sets an additional alpha value multiplied into render copy operations.
// (https://wiki.libsdl.org/SDL2/SDL_SetTextureAlphaMod)
func (texture *Texture) SetAlphaMod(alpha uint8) error {
return errorFromInt(int(
C.SDL_SetTextureAlphaMod(texture.cptr(), C.Uint8(alpha))))
}
// GetAlphaMod returns the additional alpha value multiplied into render copy operations.
// (https://wiki.libsdl.org/SDL2/SDL_GetTextureAlphaMod)
func (texture *Texture) GetAlphaMod() (alpha uint8, err error) {
ret := C.SDL_GetTextureAlphaMod(texture.cptr(), (*C.Uint8)(unsafe.Pointer(&alpha)))
return alpha, errorFromInt(int(ret))
}
// SetBlendMode sets the blend mode for a texture, used by Renderer.Copy().
// (https://wiki.libsdl.org/SDL2/SDL_SetTextureBlendMode)
func (texture *Texture) SetBlendMode(bm BlendMode) error {
return errorFromInt(int(
C.SDL_SetTextureBlendMode(texture.cptr(), bm.c())))
}
// GetBlendMode returns the blend mode used for texture copy operations.
// (https://wiki.libsdl.org/SDL2/SDL_GetTextureBlendMode)
func (texture *Texture) GetBlendMode() (bm BlendMode, err error) {
ret := C.SDL_GetTextureBlendMode(texture.cptr(), bm.cptr())
return bm, errorFromInt(int(ret))
}
// SetScaleMode Set the scale mode used for texture scale operations.
// (https://wiki.libsdl.org/SDL2/SDL_SetTextureScaleMode)
func (texture *Texture) SetScaleMode(sm ScaleMode) error {
return errorFromInt(int(
C.SDL_SetTextureScaleMode(texture.cptr(), sm.c())))
}
// GetScaleMode returns the scale mode used for texture scale operations.
// (https://wiki.libsdl.org/SDL2/SDL_GetTextureScaleMode)
func (texture *Texture) GetScaleMode() (sm ScaleMode, err error) {
ret := C.SDL_GetTextureScaleMode(texture.cptr(), sm.cptr())
return sm, errorFromInt(int(ret))
}
// Update updates the given texture rectangle with new pixel data.
// (https://wiki.libsdl.org/SDL2/SDL_UpdateTexture)
func (texture *Texture) Update(rect *Rect, pixels unsafe.Pointer, pitch int) error {
if pixels == nil {
return nil
}
return errorFromInt(int(
C.SDL_UpdateTexture(
texture.cptr(),
rect.cptr(),
pixels,
C.int(pitch))))
}
// UpdateRGBA updates the given texture rectangle with new uint32 pixel data.
// (https://wiki.libsdl.org/SDL2/SDL_UpdateTexture)
func (texture *Texture) UpdateRGBA(rect *Rect, pixels []uint32, pitch int) error {
if pixels == nil {
return nil
}
return errorFromInt(int(
C.SDL_UpdateTexture(
texture.cptr(),
rect.cptr(),
unsafe.Pointer(&pixels[0]),
C.int(4*pitch)))) // 4 bytes in one uint32
}
// UpdateYUV updates a rectangle within a planar YV12 or IYUV texture with new pixel data.
// (https://wiki.libsdl.org/SDL2/SDL_UpdateYUVTexture)
func (texture *Texture) UpdateYUV(rect *Rect, yPlane []byte, yPitch int, uPlane []byte, uPitch int, vPlane []byte, vPitch int) error {
var yPlanePtr, uPlanePtr, vPlanePtr *byte
if yPlane != nil {
yPlanePtr = &yPlane[0]
}
if uPlane != nil {
uPlanePtr = &uPlane[0]
}
if vPlane != nil {
vPlanePtr = &vPlane[0]
}
return errorFromInt(int(
C.SDL_UpdateYUVTexture(
texture.cptr(),
rect.cptr(),
(*C.Uint8)(unsafe.Pointer(yPlanePtr)),
C.int(yPitch),
(*C.Uint8)(unsafe.Pointer(uPlanePtr)),
C.int(uPitch),
(*C.Uint8)(unsafe.Pointer(vPlanePtr)),
C.int(vPitch))))
}
// Lock locks a portion of the texture for write-only pixel access.
// (https://wiki.libsdl.org/SDL2/SDL_LockTexture)
func (texture *Texture) Lock(rect *Rect) ([]byte, int, error) {
var _pitch C.int
var _pixels unsafe.Pointer
var b []byte
var length int
ret := C.SDL_LockTexture(texture.cptr(), rect.cptr(), &_pixels, &_pitch)
if ret < 0 {
return b, int(_pitch), GetError()
}
_, _, w, h, err := texture.Query()
if err != nil {
return b, int(_pitch), GetError()
}
pitch := int32(_pitch)
if rect != nil {
bytesPerPixel := pitch / w
length = int(bytesPerPixel * (w*rect.H - rect.X - (w - rect.X - rect.W)))
} else {
length = int(pitch * h)
}
sliceHeader := (*reflect.SliceHeader)(unsafe.Pointer(&b))
sliceHeader.Cap = int(length)
sliceHeader.Len = int(length)
sliceHeader.Data = uintptr(_pixels)
return b, int(pitch), nil
}
// LockToSurface locks a portion of the texture for write-only pixel access.
// Expose it as a SDL surface.
// (https://wiki.libsdl.org/SDL2/SDL_LockTextureToSurface)
func (texture *Texture) LockToSurface(rect *Rect) (surface *Surface, err error) {
_surface := surface.cptr()
ret := C.SDL_LockTextureToSurface(texture.cptr(), rect.cptr(), (**C.SDL_Surface)(&_surface))
err = errorFromInt(int(ret))
return
}
// Unlock unlocks a texture, uploading the changes to video memory, if needed.
// (https://wiki.libsdl.org/SDL2/SDL_UnlockTexture)
func (texture *Texture) Unlock() {
C.SDL_UnlockTexture(texture.cptr())
}
// RenderTargetSupported reports whether a window supports the use of render targets.
// (https://wiki.libsdl.org/SDL2/SDL_RenderTargetSupported)
func (renderer *Renderer) RenderTargetSupported() bool {
return C.SDL_RenderTargetSupported(renderer.cptr()) != 0
}
// SetRenderTarget sets a texture as the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_SetRenderTarget)
func (renderer *Renderer) SetRenderTarget(texture *Texture) error {
return errorFromInt(int(
C.SDL_SetRenderTarget(renderer.cptr(), texture.cptr())))
}
// GetRenderTarget returns the current render target.
// (https://wiki.libsdl.org/SDL2/SDL_GetRenderTarget)
func (renderer *Renderer) GetRenderTarget() *Texture {
return (*Texture)(unsafe.Pointer(C.SDL_GetRenderTarget(renderer.cptr())))
}
// SetLogicalSize sets a device independent resolution for rendering.
// (https://wiki.libsdl.org/SDL2/SDL_RenderSetLogicalSize)
func (renderer *Renderer) SetLogicalSize(w, h int32) error {
return errorFromInt(int(
C.SDL_RenderSetLogicalSize(renderer.cptr(), C.int(w), C.int(h))))
}
// GetLogicalSize returns device independent resolution for rendering.
// (https://wiki.libsdl.org/SDL2/SDL_RenderGetLogicalSize)
func (renderer *Renderer) GetLogicalSize() (w, h int32) {
C.SDL_RenderGetLogicalSize(
renderer.cptr(),
(*C.int)(unsafe.Pointer(&w)),
(*C.int)(unsafe.Pointer(&h)))
return
}
// SetViewport sets the drawing area for rendering on the current target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderSetViewport)
func (renderer *Renderer) SetViewport(rect *Rect) error {
return errorFromInt(int(
C.SDL_RenderSetViewport(renderer.cptr(), rect.cptr())))
}
// GetViewport returns the drawing area for the current target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderGetViewport)
func (renderer *Renderer) GetViewport() (rect Rect) {
C.SDL_RenderGetViewport(renderer.cptr(), rect.cptr())
return
}
// IsClipEnabled returns whether clipping is enabled on the given renderer.
// (https://wiki.libsdl.org/SDL2/SDL_RenderIsClipEnabled)
func (renderer *Renderer) IsClipEnabled() bool {
return C.SDL_RenderIsClipEnabled(renderer.cptr()) == C.SDL_TRUE
}
// SetClipRect sets the clip rectangle for rendering on the specified target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderSetClipRect)
func (renderer *Renderer) SetClipRect(rect *Rect) error {
return errorFromInt(int(
C.SDL_RenderSetClipRect(renderer.cptr(), rect.cptr())))
}
// GetClipRect returns the clip rectangle for the current target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderGetClipRect)
func (renderer *Renderer) GetClipRect() (rect Rect) {
C.SDL_RenderGetClipRect(renderer.cptr(), rect.cptr())
return
}
// SetScale sets the drawing scale for rendering on the current target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderSetScale)
func (renderer *Renderer) SetScale(scaleX, scaleY float32) error {
return errorFromInt(int(
C.SDL_RenderSetScale(
renderer.cptr(),
C.float(scaleX),
C.float(scaleY))))
}
// GetScale returns the drawing scale for the current target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderGetScale)
func (renderer *Renderer) GetScale() (scaleX, scaleY float32) {
C.SDL_RenderGetScale(
renderer.cptr(),
(*C.float)(unsafe.Pointer(&scaleX)),
(*C.float)(unsafe.Pointer(&scaleY)))
return
}
// SetIntegerScale sets whether to force integer scales for
// resolution-independent rendering.
//
// This function restricts the logical viewport to integer values - that is,
// when a resolution is between two multiples of a logical size, the viewport
// size is rounded down to the lower multiple.
//
// (https://wiki.libsdl.org/SDL2/SDL_RenderSetIntegerScale)
func (renderer *Renderer) SetIntegerScale(v bool) error {
var cv C.SDL_bool = C.SDL_FALSE
if v {
cv = C.SDL_TRUE
}
return errorFromInt(int(C.SDL_RenderSetIntegerScale(renderer.cptr(), cv)))
}
// GetIntegerScale reports whether integer scales are forced for
// resolution-independent rendering.
//
// (https://wiki.libsdl.org/SDL2/SDL_RenderGetIntegerScale)
func (renderer *Renderer) GetIntegerScale() (bool, error) {
ClearError()
if C.SDL_RenderGetIntegerScale(renderer.cptr()) == C.SDL_TRUE {
return true, nil
}
return false, GetError()
}
// SetDrawColor sets the color used for drawing operations (Rect, Line and Clear).
// (https://wiki.libsdl.org/SDL2/SDL_SetRenderDrawColor)
func (renderer *Renderer) SetDrawColor(r, g, b, a uint8) error {
return errorFromInt(int(
C.SDL_SetRenderDrawColor(
renderer.cptr(),
C.Uint8(r),
C.Uint8(g),
C.Uint8(b),
C.Uint8(a))))
}
// SetDrawColorArray is a custom variant of SetDrawColor.
func (renderer *Renderer) SetDrawColorArray(bs ...uint8) error {
_bs := []C.Uint8{0, 0, 0, 255}
for i := 0; i < len(_bs) && i < len(bs); i++ {
_bs[i] = C.Uint8(bs[i])
}
return errorFromInt(int(
C.SDL_SetRenderDrawColor(
renderer.cptr(),
_bs[0],
_bs[1],
_bs[2],
_bs[3])))
}
// GetDrawColor returns the color used for drawing operations (Rect, Line and Clear).
// (https://wiki.libsdl.org/SDL2/SDL_GetRenderDrawColor)
func (renderer *Renderer) GetDrawColor() (r, g, b, a uint8, err error) {
ret := C.SDL_GetRenderDrawColor(
renderer.cptr(),
(*C.Uint8)(unsafe.Pointer(&r)),
(*C.Uint8)(unsafe.Pointer(&g)),
(*C.Uint8)(unsafe.Pointer(&b)),
(*C.Uint8)(unsafe.Pointer(&a)))
return r, g, b, a, errorFromInt(int(ret))
}
// SetDrawBlendMode sets the blend mode used for drawing operations (Fill and Line).
// (https://wiki.libsdl.org/SDL2/SDL_SetRenderDrawBlendMode)
func (renderer *Renderer) SetDrawBlendMode(bm BlendMode) error {
return errorFromInt(int(
C.SDL_SetRenderDrawBlendMode(renderer.cptr(), bm.c())))
}
// GetDrawBlendMode returns the blend mode used for drawing operations.
// (https://wiki.libsdl.org/SDL2/SDL_GetRenderDrawBlendMode)
func (renderer *Renderer) GetDrawBlendMode(bm *BlendMode) error {
return errorFromInt(int(
C.SDL_GetRenderDrawBlendMode(renderer.cptr(), bm.cptr())))
}
// Clear clears the current rendering target with the drawing color.
// (https://wiki.libsdl.org/SDL2/SDL_RenderClear)
func (renderer *Renderer) Clear() error {
return errorFromInt(int(
C.SDL_RenderClear(renderer.cptr())))
}
// DrawPoint draws a point on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawPoint)
func (renderer *Renderer) DrawPoint(x, y int32) error {
return errorFromInt(int(
C.SDL_RenderDrawPoint(renderer.cptr(), C.int(x), C.int(y))))
}
// DrawPoints draws multiple points on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawPoints)
func (renderer *Renderer) DrawPoints(points []Point) error {
return errorFromInt(int(
C.SDL_RenderDrawPoints(
renderer.cptr(),
points[0].cptr(),
C.int(len(points)))))
}
// DrawLine draws a line on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawLine)
func (renderer *Renderer) DrawLine(x1, y1, x2, y2 int32) error {
return errorFromInt(int(
C.SDL_RenderDrawLine(
renderer.cptr(),
C.int(x1),
C.int(y1),
C.int(x2),
C.int(y2))))
}
// DrawLines draws a series of connected lines on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawLines)
func (renderer *Renderer) DrawLines(points []Point) error {
return errorFromInt(int(
C.SDL_RenderDrawLines(
renderer.cptr(),
points[0].cptr(),
C.int(len(points)))))
}
// DrawRect draws a rectangle on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawRect)
func (renderer *Renderer) DrawRect(rect *Rect) error {
return errorFromInt(int(
C.SDL_RenderDrawRect(renderer.cptr(), rect.cptr())))
}
// DrawRects draws some number of rectangles on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawRects)
func (renderer *Renderer) DrawRects(rects []Rect) error {
return errorFromInt(int(
C.SDL_RenderDrawRects(
renderer.cptr(),
rects[0].cptr(),
C.int(len(rects)))))
}
// FillRect fills a rectangle on the current rendering target with the drawing color.
// (https://wiki.libsdl.org/SDL2/SDL_RenderFillRect)
func (renderer *Renderer) FillRect(rect *Rect) error {
return errorFromInt(int(
C.SDL_RenderFillRect(renderer.cptr(), rect.cptr())))
}
// FillRects fills some number of rectangles on the current rendering target with the drawing color.
// (https://wiki.libsdl.org/SDL2/SDL_RenderFillRects)
func (renderer *Renderer) FillRects(rects []Rect) error {
return errorFromInt(int(
C.SDL_RenderFillRects(
renderer.cptr(),
rects[0].cptr(),
C.int(len(rects)))))
}
// Copy copies a portion of the texture to the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderCopy)
func (renderer *Renderer) Copy(texture *Texture, src, dst *Rect) error {
if dst == nil {
return errorFromInt(int(
C.SDL_RenderCopy(
renderer.cptr(),
texture.cptr(),
src.cptr(),
dst.cptr())))
}
return errorFromInt(int(
C.RenderCopy(
renderer.cptr(),
texture.cptr(),
src.cptr(),
C.int(dst.X), C.int(dst.Y), C.int(dst.W), C.int(dst.H))))
}
// CopyEx copies a portion of the texture to the current rendering target, optionally rotating it by angle around the given center and also flipping it top-bottom and/or left-right.
// (https://wiki.libsdl.org/SDL2/SDL_RenderCopyEx)
func (renderer *Renderer) CopyEx(texture *Texture, src, dst *Rect, angle float64, center *Point, flip RendererFlip) error {
return errorFromInt(int(
C.SDL_RenderCopyEx(
renderer.cptr(),
texture.cptr(),
src.cptr(),
dst.cptr(),
C.double(angle),
center.cptr(),
flip.c())))
}
// DrawPointF draws a point on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawPointF)
func (renderer *Renderer) DrawPointF(x, y float32) error {
return errorFromInt(int(
C.SDL_RenderDrawPointF(renderer.cptr(), C.float(x), C.float(y))))
}
// DrawPointsF draws multiple points on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawPointsF)
func (renderer *Renderer) DrawPointsF(points []FPoint) error {
return errorFromInt(int(
C.SDL_RenderDrawPointsF(
renderer.cptr(),
points[0].cptr(),
C.int(len(points)))))
}
// DrawLineF draws a line on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawLineF)
func (renderer *Renderer) DrawLineF(x1, y1, x2, y2 float32) error {
return errorFromInt(int(
C.SDL_RenderDrawLineF(
renderer.cptr(),
C.float(x1),
C.float(y1),
C.float(x2),
C.float(y2))))
}
// DrawLinesF draws a series of connected lines on the current rendering target.
// (https://wiki.libsdl.org/SDL2/SDL_RenderDrawLinesF)
func (renderer *Renderer) DrawLinesF(points []FPoint) error {
return errorFromInt(int(
C.SDL_RenderDrawLinesF(
renderer.cptr(),
points[0].cptr(),
C.int(len(points)))))
}