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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
use gl;
use std::ffi;
use std::mem;
use std::ptr;
use std::os::raw;
use context::CommandContext;
use version::Version;
use version::Api;
use uniforms::UniformType;
use utils::fnvmap::*;
use vertex::AttributeType;
use program;
use Handle;
#[derive(Debug, Copy, Clone)]
pub struct Uniform {
pub location: i32,
pub ty: UniformType,
pub size: Option<usize>,
}
#[derive(Debug, Clone)]
pub struct UniformBlock {
pub id: i32,
pub initial_binding: i32,
pub size: usize,
pub layout: BlockLayout,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum BlockLayout {
Struct {
members: Vec<(String, BlockLayout)>,
},
BasicType {
ty: UniformType,
offset_in_buffer: usize,
},
Array {
content: Box<BlockLayout>,
length: usize,
},
DynamicSizedArray {
content: Box<BlockLayout>,
},
}
#[derive(Debug, Copy, Clone)]
pub struct Attribute {
pub location: i32,
pub ty: AttributeType,
pub size: usize,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TransformFeedbackBuffer {
pub id: i32,
pub elements: Vec<TransformFeedbackVarying>,
pub stride: usize,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TransformFeedbackVarying {
pub name: String,
pub offset: usize,
pub size: usize,
pub ty: AttributeType,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum TransformFeedbackMode {
Interleaved,
Separate,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum OutputPrimitives {
Points,
Lines,
Triangles,
Quads,
}
pub unsafe fn reflect_uniforms(ctxt: &mut CommandContext, program: Handle)
-> FnvHashMap<String, Uniform>
{
let active_uniforms = {
let mut active_uniforms: gl::types::GLint = mem::uninitialized();
match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetProgramiv(program, gl::ACTIVE_UNIFORMS, &mut active_uniforms);
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_shader_objects);
ctxt.gl.GetObjectParameterivARB(program, gl::OBJECT_ACTIVE_UNIFORMS_ARB,
&mut active_uniforms);
}
};
active_uniforms
};
let mut uniforms = fnv_hash_map();
uniforms.reserve(active_uniforms as usize);
for uniform_id in 0 .. active_uniforms {
let mut uniform_name_tmp: Vec<u8> = Vec::with_capacity(64);
let mut uniform_name_tmp_len = 63;
let mut data_type: gl::types::GLenum = mem::uninitialized();
let mut data_size: gl::types::GLint = mem::uninitialized();
match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetActiveUniform(program, uniform_id as gl::types::GLuint,
uniform_name_tmp_len, &mut uniform_name_tmp_len,
&mut data_size, &mut data_type,
uniform_name_tmp.as_mut_ptr() as *mut gl::types::GLchar);
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_shader_objects);
ctxt.gl.GetActiveUniformARB(program, uniform_id as gl::types::GLuint,
uniform_name_tmp_len, &mut uniform_name_tmp_len,
&mut data_size, &mut data_type,
uniform_name_tmp.as_mut_ptr()
as *mut gl::types::GLchar);
}
};
uniform_name_tmp.set_len(uniform_name_tmp_len as usize);
let uniform_name = String::from_utf8(uniform_name_tmp).unwrap();
let location = match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetUniformLocation(program,
ffi::CString::new(uniform_name.as_bytes()).unwrap()
.as_bytes_with_nul().as_ptr() as *const raw::c_char)
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_shader_objects);
ctxt.gl.GetUniformLocationARB(program,
ffi::CString::new(uniform_name.as_bytes()).unwrap()
.as_bytes_with_nul().as_ptr() as *const raw::c_char)
}
};
uniforms.insert(uniform_name, Uniform {
location: location as i32,
ty: glenum_to_uniform_type(data_type),
size: if data_size == 1 { None } else { Some(data_size as usize) },
});
}
let mut uniforms_flattened = fnv_hash_map();
for uniform in uniforms {
if !uniform.0.ends_with("[0]") {
assert!(uniform.1.size.is_none());
uniforms_flattened.insert(uniform.0, uniform.1);
continue;
}
let name_base = uniform.0.split('[').next().unwrap();
let uniform_base = uniform.1;
for i in 0..uniform_base.size.unwrap() {
let uniform = Uniform {
size: None,
location: uniform_base.location + (i as i32),
.. uniform_base
};
uniforms_flattened.insert(format!("{}[{}]", name_base, i), uniform);
}
}
uniforms_flattened
}
pub unsafe fn reflect_attributes(ctxt: &mut CommandContext, program: Handle)
-> FnvHashMap<String, Attribute>
{
let active_attributes = {
let mut active_attributes: gl::types::GLint = mem::uninitialized();
match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetProgramiv(program, gl::ACTIVE_ATTRIBUTES, &mut active_attributes);
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_vertex_shader);
ctxt.gl.GetObjectParameterivARB(program, gl::OBJECT_ACTIVE_ATTRIBUTES_ARB,
&mut active_attributes);
}
};
active_attributes
};
let mut attributes = fnv_hash_map();
attributes.reserve(active_attributes as usize);
for attribute_id in 0 .. active_attributes {
let mut attr_name_tmp: Vec<u8> = Vec::with_capacity(64);
let mut attr_name_tmp_len = 63;
let mut data_type: gl::types::GLenum = mem::uninitialized();
let mut data_size: gl::types::GLint = mem::uninitialized();
match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetActiveAttrib(program, attribute_id as gl::types::GLuint,
attr_name_tmp_len, &mut attr_name_tmp_len, &mut data_size,
&mut data_type, attr_name_tmp.as_mut_ptr()
as *mut gl::types::GLchar);
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_vertex_shader);
ctxt.gl.GetActiveAttribARB(program, attribute_id as gl::types::GLuint,
attr_name_tmp_len, &mut attr_name_tmp_len, &mut data_size,
&mut data_type, attr_name_tmp.as_mut_ptr()
as *mut gl::types::GLchar);
}
};
attr_name_tmp.set_len(attr_name_tmp_len as usize);
let attr_name = String::from_utf8(attr_name_tmp).unwrap();
if attr_name.starts_with("gl_") {
continue;
}
let location = match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetAttribLocation(program,
ffi::CString::new(attr_name.as_bytes()).unwrap()
.as_bytes_with_nul().as_ptr() as *const raw::c_char)
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_vertex_shader);
ctxt.gl.GetAttribLocationARB(program,
ffi::CString::new(attr_name.as_bytes()).unwrap()
.as_bytes_with_nul().as_ptr() as *const raw::c_char)
}
};
attributes.insert(attr_name, Attribute {
location: location,
ty: glenum_to_attribute_type(data_type),
size: data_size as usize,
});
}
attributes
}
pub unsafe fn reflect_uniform_blocks(ctxt: &mut CommandContext, program: Handle)
-> FnvHashMap<String, UniformBlock>
{
if !(ctxt.version >= &Version(Api::Gl, 3, 1) || ctxt.version >= &Version(Api::GlEs, 3, 0)) {
return fnv_hash_map();
}
let program = match program {
Handle::Id(id) => id,
_ => unreachable!()
};
let mut active_blocks: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetProgramiv(program, gl::ACTIVE_UNIFORM_BLOCKS, &mut active_blocks);
if active_blocks == 0 {
return fnv_hash_map();
}
let mut active_blocks_max_name_len: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetProgramiv(program, gl::ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH,
&mut active_blocks_max_name_len);
let mut blocks = fnv_hash_map();
blocks.reserve(active_blocks as usize);
for block_id in 0 .. active_blocks {
let name = {
let mut name_tmp: Vec<u8> = Vec::with_capacity(1 + active_blocks_max_name_len
as usize);
let mut name_tmp_len = active_blocks_max_name_len;
ctxt.gl.GetActiveUniformBlockName(program, block_id as gl::types::GLuint,
name_tmp_len, &mut name_tmp_len,
name_tmp.as_mut_ptr() as *mut gl::types::GLchar);
name_tmp.set_len(name_tmp_len as usize);
String::from_utf8(name_tmp).unwrap()
};
let mut binding: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetActiveUniformBlockiv(program, block_id as gl::types::GLuint,
gl::UNIFORM_BLOCK_BINDING, &mut binding);
let mut block_size: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetActiveUniformBlockiv(program, block_id as gl::types::GLuint,
gl::UNIFORM_BLOCK_DATA_SIZE, &mut block_size);
let mut num_members: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetActiveUniformBlockiv(program, block_id as gl::types::GLuint,
gl::UNIFORM_BLOCK_ACTIVE_UNIFORMS, &mut num_members);
let mut members_indices = ::std::iter::repeat(0).take(num_members as usize)
.collect::<Vec<gl::types::GLuint>>();
ctxt.gl.GetActiveUniformBlockiv(program, block_id as gl::types::GLuint,
gl::UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES,
members_indices.as_mut_ptr() as *mut gl::types::GLint);
let mut member_offsets = ::std::iter::repeat(0).take(num_members as usize)
.collect::<Vec<gl::types::GLint>>();
ctxt.gl.GetActiveUniformsiv(program, num_members, members_indices.as_ptr(),
gl::UNIFORM_OFFSET, member_offsets.as_mut_ptr());
let mut member_types = ::std::iter::repeat(0).take(num_members as usize)
.collect::<Vec<gl::types::GLint>>();
ctxt.gl.GetActiveUniformsiv(program, num_members, members_indices.as_ptr(),
gl::UNIFORM_TYPE, member_types.as_mut_ptr());
let mut member_size = ::std::iter::repeat(0).take(num_members as usize)
.collect::<Vec<gl::types::GLint>>();
ctxt.gl.GetActiveUniformsiv(program, num_members, members_indices.as_ptr(),
gl::UNIFORM_SIZE, member_size.as_mut_ptr());
let mut member_name_len = ::std::iter::repeat(0).take(num_members as usize)
.collect::<Vec<gl::types::GLint>>();
ctxt.gl.GetActiveUniformsiv(program, num_members, members_indices.as_ptr(),
gl::UNIFORM_NAME_LENGTH, member_name_len.as_mut_ptr());
let member_names = member_name_len.iter().zip(members_indices.iter())
.map(|(&name_len, &index)|
{
let mut name_tmp: Vec<u8> = Vec::with_capacity(1 + name_len as usize);
let mut name_len_tmp = name_len;
ctxt.gl.GetActiveUniformName(program, index, name_len, &mut name_len_tmp,
name_tmp.as_mut_ptr() as *mut gl::types::GLchar);
name_tmp.set_len(name_len_tmp as usize);
String::from_utf8(name_tmp).unwrap()
}).collect::<Vec<_>>();
let members = member_names.into_iter().enumerate().map(|(index, name)| {
(name, member_offsets[index] as usize,
glenum_to_uniform_type(member_types[index] as gl::types::GLenum),
member_size[index] as usize, None)
});
blocks.insert(name, UniformBlock {
id: block_id as i32,
initial_binding: binding as i32,
size: block_size as usize,
layout: introspection_output_to_layout(members),
});
}
blocks
}
pub unsafe fn reflect_transform_feedback(ctxt: &mut CommandContext, program: Handle)
-> Vec<TransformFeedbackBuffer>
{
let program = match program {
Handle::Handle(_) => return Vec::with_capacity(0),
Handle::Id(id) => id
};
if !(ctxt.version >= &Version(Api::Gl, 3, 0)) && !ctxt.extensions.gl_ext_transform_feedback {
return Vec::with_capacity(0);
}
let num_varyings = {
let mut num_varyings: gl::types::GLint = mem::uninitialized();
if ctxt.version >= &Version(Api::Gl, 3, 0) {
ctxt.gl.GetProgramiv(program, gl::TRANSFORM_FEEDBACK_VARYINGS, &mut num_varyings);
} else if ctxt.extensions.gl_ext_transform_feedback {
ctxt.gl.GetProgramiv(program, gl::TRANSFORM_FEEDBACK_VARYINGS_EXT, &mut num_varyings);
} else {
unreachable!();
}
num_varyings
};
if num_varyings == 0 {
return Vec::with_capacity(0);
}
let buffer_mode = {
let mut buffer_mode: gl::types::GLint = mem::uninitialized();
if ctxt.version >= &Version(Api::Gl, 3, 0) {
ctxt.gl.GetProgramiv(program, gl::TRANSFORM_FEEDBACK_BUFFER_MODE, &mut buffer_mode);
} else if ctxt.extensions.gl_ext_transform_feedback {
ctxt.gl.GetProgramiv(program, gl::TRANSFORM_FEEDBACK_BUFFER_MODE_EXT, &mut buffer_mode);
} else {
unreachable!();
}
glenum_to_transform_feedback_mode(buffer_mode as gl::types::GLenum)
};
let mut max_buffer_len: gl::types::GLint = mem::uninitialized();
if ctxt.version >= &Version(Api::Gl, 3, 0) {
ctxt.gl.GetProgramiv(program, gl::TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH,
&mut max_buffer_len);
} else if ctxt.extensions.gl_ext_transform_feedback {
ctxt.gl.GetProgramiv(program, gl::TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT,
&mut max_buffer_len);
} else {
unreachable!();
}
let mut result = Vec::with_capacity(num_varyings as usize);
for index in 0 .. num_varyings as gl::types::GLuint {
let mut name_tmp: Vec<u8> = Vec::with_capacity(max_buffer_len as usize);
let mut name_tmp_len = max_buffer_len;
let mut size = mem::uninitialized();
let mut ty = mem::uninitialized();
if ctxt.version >= &Version(Api::Gl, 3, 0) {
ctxt.gl.GetTransformFeedbackVarying(program, index, name_tmp_len, &mut name_tmp_len,
&mut size, &mut ty, name_tmp.as_mut_ptr()
as *mut gl::types::GLchar);
} else if ctxt.extensions.gl_ext_transform_feedback {
ctxt.gl.GetTransformFeedbackVaryingEXT(program, index, name_tmp_len,
&mut name_tmp_len, &mut size, &mut ty,
name_tmp.as_mut_ptr()
as *mut gl::types::GLchar);
} else {
unreachable!();
}
name_tmp.set_len(name_tmp_len as usize);
let name = String::from_utf8(name_tmp).unwrap();
if buffer_mode == TransformFeedbackMode::Interleaved {
if result.len() == 0 {
result.push(TransformFeedbackBuffer {
id: 0,
elements: vec![],
stride: 0,
});
}
let ty = glenum_to_attribute_type(ty as gl::types::GLenum);
let prev_size = result[0].stride;
result[0].stride += size as usize * ty.get_size_bytes();
result[0].elements.push(TransformFeedbackVarying {
name: name,
size: size as usize * ty.get_size_bytes(),
offset: prev_size,
ty: ty,
});
} else if buffer_mode == TransformFeedbackMode::Separate {
let id = result.len();
let ty = glenum_to_attribute_type(ty as gl::types::GLenum);
result.push(TransformFeedbackBuffer {
id: id as i32,
elements: vec![
TransformFeedbackVarying {
name: name,
size: size as usize * ty.get_size_bytes(),
offset: 0,
ty: ty,
}
],
stride: size as usize * ty.get_size_bytes(),
});
} else {
unreachable!();
}
}
result
}
pub unsafe fn reflect_geometry_output_type(ctxt: &mut CommandContext, program: Handle)
-> OutputPrimitives
{
let mut value = mem::uninitialized();
match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetProgramiv(program, gl::GEOMETRY_OUTPUT_TYPE, &mut value);
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_vertex_shader);
ctxt.gl.GetObjectParameterivARB(program, gl::GEOMETRY_OUTPUT_TYPE, &mut value);
}
};
match value as gl::types::GLenum {
gl::POINTS => OutputPrimitives::Points,
gl::LINE_STRIP => OutputPrimitives::Lines,
gl::TRIANGLE_STRIP => OutputPrimitives::Triangles,
_ => unreachable!()
}
}
pub unsafe fn reflect_tess_eval_output_type(ctxt: &mut CommandContext, program: Handle)
-> OutputPrimitives
{
let mut value = mem::uninitialized();
match program {
Handle::Id(program) => {
assert!(ctxt.version >= &Version(Api::Gl, 2, 0) ||
ctxt.version >= &Version(Api::GlEs, 2, 0));
ctxt.gl.GetProgramiv(program, gl::TESS_GEN_MODE, &mut value);
},
Handle::Handle(program) => {
assert!(ctxt.extensions.gl_arb_vertex_shader);
ctxt.gl.GetObjectParameterivARB(program, gl::TESS_GEN_MODE, &mut value);
}
};
match value as gl::types::GLenum {
gl::TRIANGLES => OutputPrimitives::Triangles,
gl::ISOLINES => OutputPrimitives::Lines,
gl::QUADS => OutputPrimitives::Quads,
_ => unreachable!()
}
}
pub unsafe fn reflect_shader_storage_blocks(ctxt: &mut CommandContext, program: Handle)
-> FnvHashMap<String, UniformBlock>
{
if !(ctxt.version >= &Version(Api::Gl, 4, 3) || ctxt.version >= &Version(Api::GlEs, 3, 1) ||
(ctxt.extensions.gl_arb_program_interface_query && ctxt.extensions.gl_arb_shader_storage_buffer_object))
{
return fnv_hash_map();
}
let program = match program {
Handle::Id(program) => program,
Handle::Handle(program) => return fnv_hash_map()
};
let active_blocks = {
let mut active_blocks: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetProgramInterfaceiv(program, gl::SHADER_STORAGE_BLOCK,
gl::ACTIVE_RESOURCES, &mut active_blocks);
active_blocks as gl::types::GLuint
};
let mut blocks = fnv_hash_map();
blocks.reserve(active_blocks as usize);
for block_id in 0 .. active_blocks {
let (name_len, num_variables, binding, total_size) = {
let mut output: [gl::types::GLint; 4] = mem::uninitialized();
ctxt.gl.GetProgramResourceiv(program, gl::SHADER_STORAGE_BLOCK, block_id, 4,
[gl::NAME_LENGTH, gl::NUM_ACTIVE_VARIABLES,
gl::BUFFER_BINDING, gl::BUFFER_DATA_SIZE].as_ptr(), 4,
ptr::null_mut(), output.as_mut_ptr() as *mut _);
(output[0] as usize, output[1] as usize, output[2], output[3] as usize)
};
let name = {
let mut name_tmp: Vec<u8> = Vec::with_capacity(1 + name_len);
let mut name_tmp_len = name_len as gl::types::GLsizei;
ctxt.gl.GetProgramResourceName(program, gl::SHADER_STORAGE_BLOCK, block_id,
name_tmp_len, &mut name_tmp_len,
name_tmp.as_mut_ptr() as *mut _);
name_tmp.set_len(name_tmp_len as usize);
String::from_utf8(name_tmp).unwrap()
};
let active_variables: Vec<gl::types::GLint> = {
let mut variables = Vec::with_capacity(num_variables);
ctxt.gl.GetProgramResourceiv(program, gl::SHADER_STORAGE_BLOCK, block_id, 1,
[gl::ACTIVE_VARIABLES].as_ptr(),
num_variables as gl::types::GLsizei,
ptr::null_mut(), variables.as_mut_ptr() as *mut _);
variables.set_len(num_variables);
variables
};
let members = active_variables.into_iter().map(|variable| {
let (ty, array_size, offset, _array_stride, name_len, top_level_array_size) = {
let mut output: [gl::types::GLint; 6] = mem::uninitialized();
ctxt.gl.GetProgramResourceiv(program, gl::BUFFER_VARIABLE,
variable as gl::types::GLuint, 6,
[gl::TYPE, gl::ARRAY_SIZE, gl::OFFSET,
gl::ARRAY_STRIDE, gl::NAME_LENGTH,
gl::TOP_LEVEL_ARRAY_SIZE].as_ptr(), 6,
ptr::null_mut(), output.as_mut_ptr() as *mut _);
(glenum_to_uniform_type(output[0] as gl::types::GLenum), output[1] as usize,
output[2] as usize, output[3] as usize, output[4] as usize, output[5] as usize)
};
let name = {
let mut name_tmp: Vec<u8> = Vec::with_capacity(1 + name_len);
let mut name_tmp_len = name_len as gl::types::GLsizei;
ctxt.gl.GetProgramResourceName(program, gl::BUFFER_VARIABLE,
variable as gl::types::GLuint,
name_tmp_len, &mut name_tmp_len,
name_tmp.as_mut_ptr() as *mut _);
name_tmp.set_len(name_tmp_len as usize);
String::from_utf8(name_tmp).unwrap()
};
(name, offset, ty, array_size, Some(top_level_array_size))
});
blocks.insert(name, UniformBlock {
id: block_id as i32,
initial_binding: binding as i32,
size: total_size,
layout: introspection_output_to_layout(members),
});
}
blocks
}
fn introspection_output_to_layout<I>(elements: I) -> BlockLayout
where I: Iterator<Item = (String, usize, UniformType,
usize, Option<usize>)>
{
fn process(output: &mut BlockLayout, name: &str, offset: usize, ty: UniformType,
array_size: usize, top_level_array_size: Option<usize>)
{
let mut components = name.splitn(2, '.');
let current_component = components.next().unwrap();
let name_rest = components.next();
let member = if let &mut BlockLayout::Struct { ref mut members } = output {
let (current_component, array) = if current_component.ends_with(']') {
let open_bracket_pos = current_component.rfind('[').unwrap();
let array = current_component[open_bracket_pos + 1 .. current_component.len() - 1]
.parse().unwrap();
(¤t_component[.. open_bracket_pos], Some(array))
} else {
(¤t_component[..], None)
};
let existing = members.iter_mut().find(|m| m.0 == current_component).is_some();
if existing {
let member = &mut members.iter_mut().find(|m| m.0 == current_component)
.unwrap().1;
if let Some(array) = array {
match member {
&mut BlockLayout::Array { ref mut content, ref mut length } => {
if *length <= array { *length = array + 1; }
&mut **content
},
&mut BlockLayout::DynamicSizedArray { ref mut content } => {
&mut **content
},
_ => unreachable!()
}
} else {
member
}
} else {
if let Some(array) = array {
if top_level_array_size == Some(0) {
members.push((current_component.to_owned(), BlockLayout::DynamicSizedArray {
content: Box::new(BlockLayout::Struct { members: Vec::new() }),
}));
} else {
members.push((current_component.to_owned(), BlockLayout::Array {
content: Box::new(BlockLayout::Struct { members: Vec::new() }),
length: if name_rest.is_some() { array } else { array_size },
}));
}
match &mut members.last_mut().unwrap().1 {
&mut BlockLayout::Array { ref mut content, .. } => &mut **content,
&mut BlockLayout::DynamicSizedArray { ref mut content } => &mut **content,
_ => unreachable!()
}
} else {
members.push((current_component.to_owned(), BlockLayout::Struct {
members: Vec::new()
}));
&mut members.last_mut().unwrap().1
}
}
} else {
unreachable!();
};
if let Some(name_rest) = name_rest {
process(member, name_rest, offset, ty, array_size, None);
} else {
match member {
&mut BlockLayout::BasicType { ty: ty_ex, .. } if ty_ex == ty => (),
_ => {
*member = BlockLayout::BasicType {
offset_in_buffer: offset,
ty: ty,
};
}
}
}
}
let mut layout = BlockLayout::Struct { members: Vec::new() };
for (name, offset, ty, array_size, top_level_array_size) in elements {
process(&mut layout, &name, offset, ty, array_size, top_level_array_size);
}
layout
}
#[inline]
fn glenum_to_uniform_type(ty: gl::types::GLenum) -> UniformType {
match ty {
gl::FLOAT => UniformType::Float,
gl::FLOAT_VEC2 => UniformType::FloatVec2,
gl::FLOAT_VEC3 => UniformType::FloatVec3,
gl::FLOAT_VEC4 => UniformType::FloatVec4,
gl::DOUBLE => UniformType::Double,
gl::DOUBLE_VEC2 => UniformType::DoubleVec2,
gl::DOUBLE_VEC3 => UniformType::DoubleVec3,
gl::DOUBLE_VEC4 => UniformType::DoubleVec4,
gl::INT => UniformType::Int,
gl::INT_VEC2 => UniformType::IntVec2,
gl::INT_VEC3 => UniformType::IntVec3,
gl::INT_VEC4 => UniformType::IntVec4,
gl::UNSIGNED_INT => UniformType::UnsignedInt,
gl::UNSIGNED_INT_VEC2 => UniformType::UnsignedIntVec2,
gl::UNSIGNED_INT_VEC3 => UniformType::UnsignedIntVec3,
gl::UNSIGNED_INT_VEC4 => UniformType::UnsignedIntVec4,
gl::BOOL => UniformType::Bool,
gl::BOOL_VEC2 => UniformType::BoolVec2,
gl::BOOL_VEC3 => UniformType::BoolVec3,
gl::BOOL_VEC4 => UniformType::BoolVec4,
gl::FLOAT_MAT2 => UniformType::FloatMat2,
gl::FLOAT_MAT3 => UniformType::FloatMat3,
gl::FLOAT_MAT4 => UniformType::FloatMat4,
gl::FLOAT_MAT2x3 => UniformType::FloatMat2x3,
gl::FLOAT_MAT2x4 => UniformType::FloatMat2x4,
gl::FLOAT_MAT3x2 => UniformType::FloatMat3x2,
gl::FLOAT_MAT3x4 => UniformType::FloatMat3x4,
gl::FLOAT_MAT4x2 => UniformType::FloatMat4x2,
gl::FLOAT_MAT4x3 => UniformType::FloatMat4x3,
gl::DOUBLE_MAT2 => UniformType::DoubleMat2,
gl::DOUBLE_MAT3 => UniformType::DoubleMat3,
gl::DOUBLE_MAT4 => UniformType::DoubleMat4,
gl::DOUBLE_MAT2x3 => UniformType::DoubleMat2x3,
gl::DOUBLE_MAT2x4 => UniformType::DoubleMat2x4,
gl::DOUBLE_MAT3x2 => UniformType::DoubleMat3x2,
gl::DOUBLE_MAT3x4 => UniformType::DoubleMat3x4,
gl::DOUBLE_MAT4x2 => UniformType::DoubleMat4x2,
gl::DOUBLE_MAT4x3 => UniformType::DoubleMat4x3,
gl::SAMPLER_1D => UniformType::Sampler1d,
gl::SAMPLER_2D => UniformType::Sampler2d,
gl::SAMPLER_3D => UniformType::Sampler3d,
gl::SAMPLER_CUBE => UniformType::SamplerCube,
gl::SAMPLER_1D_SHADOW => UniformType::Sampler1dShadow,
gl::SAMPLER_2D_SHADOW => UniformType::Sampler2dShadow,
gl::SAMPLER_1D_ARRAY => UniformType::Sampler1dArray,
gl::SAMPLER_2D_ARRAY => UniformType::Sampler2dArray,
gl::SAMPLER_1D_ARRAY_SHADOW => UniformType::Sampler1dArrayShadow,
gl::SAMPLER_2D_ARRAY_SHADOW => UniformType::Sampler2dArrayShadow,
gl::SAMPLER_2D_MULTISAMPLE => UniformType::Sampler2dMultisample,
gl::SAMPLER_2D_MULTISAMPLE_ARRAY => UniformType::Sampler2dMultisampleArray,
gl::SAMPLER_CUBE_SHADOW => UniformType::SamplerCubeShadow,
gl::SAMPLER_BUFFER => UniformType::SamplerBuffer,
gl::SAMPLER_2D_RECT => UniformType::Sampler2dRect,
gl::SAMPLER_2D_RECT_SHADOW => UniformType::Sampler2dRectShadow,
gl::INT_SAMPLER_1D => UniformType::ISampler1d,
gl::INT_SAMPLER_2D => UniformType::ISampler2d,
gl::INT_SAMPLER_3D => UniformType::ISampler3d,
gl::INT_SAMPLER_CUBE => UniformType::ISamplerCube,
gl::INT_SAMPLER_1D_ARRAY => UniformType::ISampler1dArray,
gl::INT_SAMPLER_2D_ARRAY => UniformType::ISampler2dArray,
gl::INT_SAMPLER_2D_MULTISAMPLE => UniformType::ISampler2dMultisample,
gl::INT_SAMPLER_2D_MULTISAMPLE_ARRAY => UniformType::ISampler2dMultisampleArray,
gl::INT_SAMPLER_BUFFER => UniformType::ISamplerBuffer,
gl::INT_SAMPLER_2D_RECT => UniformType::ISampler2dRect,
gl::UNSIGNED_INT_SAMPLER_1D => UniformType::USampler1d,
gl::UNSIGNED_INT_SAMPLER_2D => UniformType::USampler2d,
gl::UNSIGNED_INT_SAMPLER_3D => UniformType::USampler3d,
gl::UNSIGNED_INT_SAMPLER_CUBE => UniformType::USamplerCube,
gl::UNSIGNED_INT_SAMPLER_1D_ARRAY => UniformType::USampler2dArray,
gl::UNSIGNED_INT_SAMPLER_2D_ARRAY => UniformType::USampler2dArray,
gl::UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE => UniformType::USampler2dMultisample,
gl::UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY => UniformType::USampler2dMultisampleArray,
gl::UNSIGNED_INT_SAMPLER_BUFFER => UniformType::USamplerBuffer,
gl::UNSIGNED_INT_SAMPLER_2D_RECT => UniformType::USampler2dRect,
gl::IMAGE_1D => UniformType::Image1d,
gl::IMAGE_2D => UniformType::Image2d,
gl::IMAGE_3D => UniformType::Image3d,
gl::IMAGE_2D_RECT => UniformType::Image2dRect,
gl::IMAGE_CUBE => UniformType::ImageCube,
gl::IMAGE_BUFFER => UniformType::ImageBuffer,
gl::IMAGE_1D_ARRAY => UniformType::Image1dArray,
gl::IMAGE_2D_ARRAY => UniformType::Image2dArray,
gl::IMAGE_2D_MULTISAMPLE => UniformType::Image2dMultisample,
gl::IMAGE_2D_MULTISAMPLE_ARRAY => UniformType::Image2dMultisampleArray,
gl::INT_IMAGE_1D => UniformType::IImage1d,
gl::INT_IMAGE_2D => UniformType::IImage2d,
gl::INT_IMAGE_3D => UniformType::IImage3d,
gl::INT_IMAGE_2D_RECT => UniformType::IImage2dRect,
gl::INT_IMAGE_CUBE => UniformType::IImageCube,
gl::INT_IMAGE_BUFFER => UniformType::IImageBuffer,
gl::INT_IMAGE_1D_ARRAY => UniformType::IImage1dArray,
gl::INT_IMAGE_2D_ARRAY => UniformType::IImage2dArray,
gl::INT_IMAGE_2D_MULTISAMPLE => UniformType::IImage2dMultisample,
gl::INT_IMAGE_2D_MULTISAMPLE_ARRAY => UniformType::IImage2dMultisampleArray,
gl::UNSIGNED_INT_IMAGE_1D => UniformType::UImage1d,
gl::UNSIGNED_INT_IMAGE_2D => UniformType::UImage2d,
gl::UNSIGNED_INT_IMAGE_3D => UniformType::UImage3d,
gl::UNSIGNED_INT_IMAGE_2D_RECT => UniformType::UImage2dRect,
gl::UNSIGNED_INT_IMAGE_CUBE => UniformType::UImageCube,
gl::UNSIGNED_INT_IMAGE_BUFFER => UniformType::UImageBuffer,
gl::UNSIGNED_INT_IMAGE_1D_ARRAY => UniformType::UImage1dArray,
gl::UNSIGNED_INT_IMAGE_2D_ARRAY => UniformType::UImage2dArray,
gl::UNSIGNED_INT_IMAGE_2D_MULTISAMPLE => UniformType::UImage2dMultisample,
gl::UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY => UniformType::UImage2dMultisampleArray,
gl::UNSIGNED_INT_ATOMIC_COUNTER => UniformType::AtomicCounterUint,
v => panic!("Unknown value returned by OpenGL uniform type: {}", v)
}
}
#[inline]
fn glenum_to_attribute_type(value: gl::types::GLenum) -> AttributeType {
match value {
gl::FLOAT => AttributeType::F32,
gl::FLOAT_VEC2 => AttributeType::F32F32,
gl::FLOAT_VEC3 => AttributeType::F32F32F32,
gl::FLOAT_VEC4 => AttributeType::F32F32F32F32,
gl::INT => AttributeType::I32,
gl::INT_VEC2 => AttributeType::I32I32,
gl::INT_VEC3 => AttributeType::I32I32I32,
gl::INT_VEC4 => AttributeType::I32I32I32I32,
gl::UNSIGNED_INT => AttributeType::U32,
gl::UNSIGNED_INT_VEC2 => AttributeType::U32U32,
gl::UNSIGNED_INT_VEC3 => AttributeType::U32U32U32,
gl::UNSIGNED_INT_VEC4 => AttributeType::U32U32U32U32,
gl::FLOAT_MAT2 => AttributeType::F32x2x2,
gl::FLOAT_MAT3 => AttributeType::F32x3x3,
gl::FLOAT_MAT4 => AttributeType::F32x4x4,
gl::FLOAT_MAT2x3 => AttributeType::F32x2x3,
gl::FLOAT_MAT2x4 => AttributeType::F32x2x4,
gl::FLOAT_MAT3x2 => AttributeType::F32x3x2,
gl::FLOAT_MAT3x4 => AttributeType::F32x3x4,
gl::FLOAT_MAT4x2 => AttributeType::F32x4x2,
gl::FLOAT_MAT4x3 => AttributeType::F32x4x3,
v => panic!("Unknown value returned by OpenGL attribute type: {}", v)
}
}
#[inline]
fn glenum_to_transform_feedback_mode(value: gl::types::GLenum) -> TransformFeedbackMode {
match value {
gl::INTERLEAVED_ATTRIBS => {
TransformFeedbackMode::Interleaved
},
gl::SEPARATE_ATTRIBS => {
TransformFeedbackMode::Separate
},
v => panic!("Unknown value returned by OpenGL varying mode: {}", v)
}
}
#[derive(Debug, Clone)]
pub struct SubroutineData {
pub location_counts: FnvHashMap<ShaderStage, usize>,
pub subroutine_uniforms: FnvHashMap<(String, ShaderStage), SubroutineUniform>,
}
#[derive(Debug, Clone)]
pub struct SubroutineUniform {
pub index: u32,
pub location: i32,
pub size: Option<usize>,
pub compatible_subroutines: Vec<Subroutine>,
}
#[derive(Debug, Clone)]
pub struct Subroutine {
pub index: u32,
pub name: String,
}
#[allow(missing_docs)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum ShaderStage {
Vertex,
Fragment,
TessellationControl,
TessellationEvaluation,
Geometry,
}
impl ShaderStage {
pub fn to_gl_enum(&self) -> gl::types::GLenum {
match *self {
ShaderStage::Vertex => gl::VERTEX_SHADER,
ShaderStage::Fragment => gl::FRAGMENT_SHADER,
ShaderStage::TessellationControl => gl::TESS_CONTROL_SHADER,
ShaderStage::TessellationEvaluation => gl::TESS_EVALUATION_SHADER,
ShaderStage::Geometry => gl::GEOMETRY_SHADER,
}
}
}
fn get_shader_stages(has_geometry_shader: bool,
has_tessellation_control_shader: bool,
has_tessellation_evaluation_shader: bool)
-> Vec<ShaderStage> {
let mut stages = vec![ShaderStage::Vertex, ShaderStage::Fragment];
if has_tessellation_evaluation_shader {
stages.push(ShaderStage::TessellationEvaluation);
}
if has_tessellation_control_shader {
stages.push(ShaderStage::TessellationControl);
}
if has_geometry_shader {
stages.push(ShaderStage::Geometry);
}
stages
}
pub unsafe fn reflect_subroutine_data(ctxt: &mut CommandContext, program: Handle,
has_geometry_shader: bool,
has_tessellation_control_shader: bool,
has_tessellation_evaluation_shader: bool)
-> SubroutineData
{
if !program::is_subroutine_supported(ctxt) {
return SubroutineData {
location_counts: fnv_hash_map(),
subroutine_uniforms: fnv_hash_map(),
}
}
let program = match program {
Handle::Handle(_) => return SubroutineData {
location_counts: fnv_hash_map(),
subroutine_uniforms: fnv_hash_map(),
},
Handle::Id(id) => id
};
let shader_stages = get_shader_stages(has_geometry_shader,
has_tessellation_control_shader,
has_tessellation_evaluation_shader);
let mut subroutine_uniforms = fnv_hash_map();
let mut location_counts = fnv_hash_map();
for stage in shader_stages.iter() {
let mut location_count: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetProgramStageiv(program, stage.to_gl_enum(),
gl::ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS,
&mut location_count);
location_counts.insert(*stage, location_count as usize);
let mut subroutine_count: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetProgramStageiv(program, stage.to_gl_enum(),
gl::ACTIVE_SUBROUTINE_UNIFORMS,
&mut subroutine_count);
for i in 0..subroutine_count {
let mut uniform_name_tmp: Vec<u8> = vec![0; 64];
let mut name_len: gl::types::GLsizei = mem::uninitialized();
ctxt.gl.GetActiveSubroutineUniformName(program, stage.to_gl_enum(),
i as gl::types::GLuint,
(uniform_name_tmp.len() - 1) as gl::types::GLint,
&mut name_len,
uniform_name_tmp.as_mut_ptr() as *mut gl::types::GLchar);
let location = ctxt.gl.GetSubroutineUniformLocation(program, stage.to_gl_enum(),
uniform_name_tmp.as_ptr() as *const gl::types::GLchar);
uniform_name_tmp.set_len(name_len as usize);
let uniform_name = String::from_utf8(uniform_name_tmp).unwrap();
let mut size: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetActiveSubroutineUniformiv(program, stage.to_gl_enum(), i as u32,
gl::UNIFORM_SIZE, &mut size);
let size = if size == 1 {
None
} else {
Some(size as usize)
};
let mut compatible_count: gl::types::GLint = mem::uninitialized();
ctxt.gl.GetActiveSubroutineUniformiv(program, stage.to_gl_enum(), i as u32,
gl::NUM_COMPATIBLE_SUBROUTINES, &mut compatible_count);
let mut compatible_sr_indices: Vec<gl::types::GLuint> = Vec::with_capacity(compatible_count as usize);
ctxt.gl.GetActiveSubroutineUniformiv(program, stage.to_gl_enum(),
i as gl::types::GLuint, gl::COMPATIBLE_SUBROUTINES,
compatible_sr_indices.as_mut_ptr() as *mut gl::types::GLint);
compatible_sr_indices.set_len(compatible_count as usize);
let mut compatible_subroutines: Vec<Subroutine> = Vec::new();
for j in 0..compatible_count {
let mut subroutine_name_tmp: Vec<u8> = vec![0; 64];;
let mut name_len: gl::types::GLsizei = mem::uninitialized();
ctxt.gl.GetActiveSubroutineName(program, stage.to_gl_enum(), compatible_sr_indices[j as usize],
subroutine_name_tmp.len() as gl::types::GLint,
&mut name_len,
subroutine_name_tmp.as_mut_ptr() as *mut gl::types::GLchar);
subroutine_name_tmp.set_len(name_len as usize);
let subroutine_name = String::from_utf8(subroutine_name_tmp).unwrap();
compatible_subroutines.push(
Subroutine {
index: compatible_sr_indices[j as usize],
name: subroutine_name,
}
);
}
let subroutine_uniform = SubroutineUniform {
index: i as u32,
location: location,
size: size,
compatible_subroutines: compatible_subroutines,
};
subroutine_uniforms.insert((uniform_name, *stage), subroutine_uniform);
}
}
SubroutineData {
location_counts: location_counts,
subroutine_uniforms: subroutine_uniforms
}
}