-
Notifications
You must be signed in to change notification settings - Fork 294
/
AndroidKhronosCTSGen.bp
1985 lines (1956 loc) · 133 KB
/
AndroidKhronosCTSGen.bp
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
// WARNING: This is auto-generated file. Do not modify, since changes will
// be lost! Modify scripts/gen_khronos_cts_bp.py instead.
cc_defaults {
name: "khronosctscompilationflag_default",
cppflags: [
"-fexceptions",
"-Wno-non-virtual-dtor",
"-Wno-delete-non-virtual-dtor",
"-Wno-implicit-int-conversion",
"-Wno-implicit-float-conversion",
"-Wno-unused-function",
"-Wno-enum-float-conversion",
"-Wno-missing-field-initializers",
"-Wno-switch",
"-Wno-unused-parameter",
"-Wno-unused-variable",
"-Wno-macro-redefined",
],
cpp_std: "c++17",
cflags: [
// Amber defines.
"-DAMBER_CTS_VULKAN_HEADER=1",
"-DAMBER_ENABLE_CLSPV=0",
"-DAMBER_ENABLE_DXC=0",
"-DAMBER_ENABLE_LODEPNG=1", // This has no effect.
"-DAMBER_ENABLE_RTTI=1",
"-DAMBER_ENABLE_SHADERC=0",
"-DAMBER_ENABLE_SPIRV_TOOLS=0",
"-DAMBER_ENABLE_VK_DEBUGGING=0",
"-DAMBER_ENGINE_DAWN=0",
"-DAMBER_ENGINE_VULKAN=1",
// glslang defines:
"-DENABLE_HLSL",
"-DENABLE_OPT=0",
"-DGLSLANG_OSINCLUDE_UNIX",
// SPIRV-Tools defines:
"-DSPIRV_ANDROID",
"-DSPIRV_CHECK_CONTEXT",
"-DSPIRV_COLOR_TERMINAL",
"-DSPIRV_TIMER_ENABLED",
// Android/Clang defines (not needed):
// -D_FORTIFY_SOURCE=2
// -DANDROID
// -DNDEBUG
// dEQP defines that we don't want/need:
// -DDE_DEBUG
// -DDEQP_USE_RELEASE_INFO_FILE
// -DPNG_DEBUG
// dEQP defines that are worked out in deDefs.h, without needing
// explicit defs:
// -DDE_PTR_SIZE=8
// -DDE_CPU=DE_CPU_ARM_64
//"-DDE_FENV_ACCESS_ON=_Pragma("STDC FENV_ACCESS ON")",
// dEQP defines:
"-D_XOPEN_SOURCE=600",
"-DDE_ANDROID_API=28",
"-DDE_ASSERT_FAILURE_CALLBACK",
"-DDE_COMPILER=DE_COMPILER_CLANG",
"-DDE_MINGW=0",
"-DDE_OS=DE_OS_ANDROID",
"-DDEQP_GLES2_DIRECT_LINK=1",
"-DDEQP_HAVE_RENDERDOC_HEADER=0", // Needs to be 0.
"-DDEQP_EXCLUDE_VK_VIDEO_TESTS",
"-DDEQP_SUPPORT_DRM=0",
"-DDEQP_SUPPORT_GLES1=1",
"-DDEQP_TARGET_NAME=\"Android\"",
"-DQP_SUPPORT_PNG",
"-DCTS_USES_VULKAN",
"-Wall",
"-Werror",
"-Wconversion",
"-fwrapv",
"-Wno-implicit-fallthrough",
"-Wno-sign-conversion",
"-Wno-unused-private-field",
"-Wno-shorten-64-to-32",
],
include_dirs: [
"external/deqp-deps/SPIRV-Headers/include",
],
header_libs: ["jni_headers"],
shared_libs: ["libandroid"],
sdk_version: "current",
rtti: true,
stl: "c++_static",
}
cc_library_static {
name: "libkhronoscts_common",
defaults: ["khronosctscompilationflag_default"],
srcs: [
"execserver/xsDefs.cpp",
"execserver/xsExecutionServer.cpp",
"execserver/xsPosixFileReader.cpp",
"execserver/xsPosixTestProcess.cpp",
"execserver/xsProtocol.cpp",
"execserver/xsTcpServer.cpp",
"execserver/xsTestDriver.cpp",
"execserver/xsTestProcess.cpp",
"executor/xeBatchExecutor.cpp",
"executor/xeBatchResult.cpp",
"executor/xeCallQueue.cpp",
"executor/xeCommLink.cpp",
"executor/xeContainerFormatParser.cpp",
"executor/xeLocalTcpIpLink.cpp",
"executor/xeTcpIpLink.cpp",
"executor/xeTestCase.cpp",
"executor/xeTestCaseListParser.cpp",
"executor/xeTestCaseResult.cpp",
"executor/xeTestLogParser.cpp",
"executor/xeTestLogWriter.cpp",
"executor/xeTestResultParser.cpp",
"executor/xeXMLWriter.cpp",
"framework/common/tcuApp.cpp",
"framework/common/tcuArray.cpp",
"framework/common/tcuAstcUtil.cpp",
"framework/common/tcuBilinearImageCompare.cpp",
"framework/common/tcuCPUWarmup.cpp",
"framework/common/tcuCommandLine.cpp",
"framework/common/tcuCompressedTexture.cpp",
"framework/common/tcuDefs.cpp",
"framework/common/tcuEither.cpp",
"framework/common/tcuFactoryRegistry.cpp",
"framework/common/tcuFloat.cpp",
"framework/common/tcuFloatFormat.cpp",
"framework/common/tcuFunctionLibrary.cpp",
"framework/common/tcuFuzzyImageCompare.cpp",
"framework/common/tcuImageCompare.cpp",
"framework/common/tcuImageIO.cpp",
"framework/common/tcuInterval.cpp",
"framework/common/tcuLibDrm.cpp",
"framework/common/tcuMatrix.cpp",
"framework/common/tcuMaybe.cpp",
"framework/common/tcuPlatform.cpp",
"framework/common/tcuRGBA.cpp",
"framework/common/tcuRandomValueIterator.cpp",
"framework/common/tcuRasterizationVerifier.cpp",
"framework/common/tcuRenderTarget.cpp",
"framework/common/tcuResource.cpp",
"framework/common/tcuResultCollector.cpp",
"framework/common/tcuSeedBuilder.cpp",
"framework/common/tcuStringTemplate.cpp",
"framework/common/tcuSurface.cpp",
"framework/common/tcuSurfaceAccess.cpp",
"framework/common/tcuTestCase.cpp",
"framework/common/tcuTestContext.cpp",
"framework/common/tcuTestHierarchyIterator.cpp",
"framework/common/tcuTestHierarchyUtil.cpp",
"framework/common/tcuTestLog.cpp",
"framework/common/tcuTestPackage.cpp",
"framework/common/tcuTestSessionExecutor.cpp",
"framework/common/tcuTexCompareVerifier.cpp",
"framework/common/tcuTexLookupVerifier.cpp",
"framework/common/tcuTexVerifierUtil.cpp",
"framework/common/tcuTexture.cpp",
"framework/common/tcuTextureUtil.cpp",
"framework/common/tcuThreadUtil.cpp",
"framework/common/tcuWaiverUtil.cpp",
"framework/delibs/debase/deDefs.c",
"framework/delibs/debase/deFloat16.c",
"framework/delibs/debase/deFloat16Test.c",
"framework/delibs/debase/deInt32.c",
"framework/delibs/debase/deInt32Test.c",
"framework/delibs/debase/deMath.c",
"framework/delibs/debase/deMathTest.c",
"framework/delibs/debase/deMemory.c",
"framework/delibs/debase/deRandom.c",
"framework/delibs/debase/deSha1.c",
"framework/delibs/debase/deString.c",
"framework/delibs/decpp/deAppendList.cpp",
"framework/delibs/decpp/deArrayBuffer.cpp",
"framework/delibs/decpp/deArrayUtil.cpp",
"framework/delibs/decpp/deBlockBuffer.cpp",
"framework/delibs/decpp/deCommandLine.cpp",
"framework/delibs/decpp/deDefs.cpp",
"framework/delibs/decpp/deDirectoryIterator.cpp",
"framework/delibs/decpp/deDynamicLibrary.cpp",
"framework/delibs/decpp/deFilePath.cpp",
"framework/delibs/decpp/deMemPool.cpp",
"framework/delibs/decpp/deMeta.cpp",
"framework/delibs/decpp/deMutex.cpp",
"framework/delibs/decpp/dePoolArray.cpp",
"framework/delibs/decpp/dePoolString.cpp",
"framework/delibs/decpp/deProcess.cpp",
"framework/delibs/decpp/deRandom.cpp",
"framework/delibs/decpp/deRingBuffer.cpp",
"framework/delibs/decpp/deSTLUtil.cpp",
"framework/delibs/decpp/deSemaphore.cpp",
"framework/delibs/decpp/deSha1.cpp",
"framework/delibs/decpp/deSharedPtr.cpp",
"framework/delibs/decpp/deSocket.cpp",
"framework/delibs/decpp/deSpinBarrier.cpp",
"framework/delibs/decpp/deStringUtil.cpp",
"framework/delibs/decpp/deThread.cpp",
"framework/delibs/decpp/deThreadLocal.cpp",
"framework/delibs/decpp/deThreadSafeRingBuffer.cpp",
"framework/delibs/decpp/deUniquePtr.cpp",
"framework/delibs/decpp/pch.cpp",
"framework/delibs/deimage/deImage.c",
"framework/delibs/deimage/deTarga.c",
"framework/delibs/depool/deMemPool.c",
"framework/delibs/depool/dePoolArray.c",
"framework/delibs/depool/dePoolHash.c",
"framework/delibs/depool/dePoolHashArray.c",
"framework/delibs/depool/dePoolHashSet.c",
"framework/delibs/depool/dePoolHeap.c",
"framework/delibs/depool/dePoolMultiSet.c",
"framework/delibs/depool/dePoolSet.c",
"framework/delibs/depool/dePoolStringBuilder.c",
"framework/delibs/depool/dePoolTest.c",
"framework/delibs/destream/deFileStream.c",
"framework/delibs/destream/deRingbuffer.c",
"framework/delibs/destream/deStreamCpyThread.c",
"framework/delibs/destream/deThreadStream.c",
"framework/delibs/dethread/deAtomic.c",
"framework/delibs/dethread/deSingleton.c",
"framework/delibs/dethread/deThreadTest.c",
"framework/delibs/dethread/unix/deMutexUnix.c",
"framework/delibs/dethread/unix/deSemaphoreMach.c",
"framework/delibs/dethread/unix/deSemaphoreUnix.c",
"framework/delibs/dethread/unix/deThreadLocalUnix.c",
"framework/delibs/dethread/unix/deThreadUnix.c",
"framework/delibs/dethread/win32/deMutexWin32.c",
"framework/delibs/dethread/win32/deSemaphoreWin32.c",
"framework/delibs/dethread/win32/deThreadLocalWin32.c",
"framework/delibs/dethread/win32/deThreadWin32.c",
"framework/delibs/deutil/deClock.c",
"framework/delibs/deutil/deCommandLine.c",
"framework/delibs/deutil/deDynamicLibrary.c",
"framework/delibs/deutil/deFile.c",
"framework/delibs/deutil/deProcess.c",
"framework/delibs/deutil/deSocket.c",
"framework/delibs/deutil/deTimer.c",
"framework/delibs/deutil/deTimerTest.c",
"framework/egl/egluCallLogWrapper.cpp",
"framework/egl/egluConfigFilter.cpp",
"framework/egl/egluConfigInfo.cpp",
"framework/egl/egluDefs.cpp",
"framework/egl/egluGLContextFactory.cpp",
"framework/egl/egluGLFunctionLoader.cpp",
"framework/egl/egluGLUtil.cpp",
"framework/egl/egluNativeDisplay.cpp",
"framework/egl/egluNativePixmap.cpp",
"framework/egl/egluNativeWindow.cpp",
"framework/egl/egluPlatform.cpp",
"framework/egl/egluStaticESLibrary.cpp",
"framework/egl/egluStrUtil.cpp",
"framework/egl/egluUnique.cpp",
"framework/egl/egluUtil.cpp",
"framework/egl/wrapper/eglwDefs.cpp",
"framework/egl/wrapper/eglwFunctions.cpp",
"framework/egl/wrapper/eglwLibrary.cpp",
"framework/egl/wrapper/eglwWrapper.cpp",
"framework/opengl/gluCallLogWrapper.cpp",
"framework/opengl/gluContextFactory.cpp",
"framework/opengl/gluContextInfo.cpp",
"framework/opengl/gluDefs.cpp",
"framework/opengl/gluDrawUtil.cpp",
"framework/opengl/gluDummyRenderContext.cpp",
"framework/opengl/gluFboRenderContext.cpp",
"framework/opengl/gluObjectWrapper.cpp",
"framework/opengl/gluPixelTransfer.cpp",
"framework/opengl/gluPlatform.cpp",
"framework/opengl/gluProgramInterfaceQuery.cpp",
"framework/opengl/gluRenderConfig.cpp",
"framework/opengl/gluRenderContext.cpp",
"framework/opengl/gluShaderLibrary.cpp",
"framework/opengl/gluShaderProgram.cpp",
"framework/opengl/gluShaderUtil.cpp",
"framework/opengl/gluStateReset.cpp",
"framework/opengl/gluStrUtil.cpp",
"framework/opengl/gluTexture.cpp",
"framework/opengl/gluTextureTestUtil.cpp",
"framework/opengl/gluTextureUtil.cpp",
"framework/opengl/gluVarType.cpp",
"framework/opengl/gluVarTypeUtil.cpp",
"framework/opengl/simplereference/sglrContext.cpp",
"framework/opengl/simplereference/sglrContextUtil.cpp",
"framework/opengl/simplereference/sglrContextWrapper.cpp",
"framework/opengl/simplereference/sglrGLContext.cpp",
"framework/opengl/simplereference/sglrReferenceContext.cpp",
"framework/opengl/simplereference/sglrReferenceUtils.cpp",
"framework/opengl/simplereference/sglrShaderProgram.cpp",
"framework/opengl/wrapper/glwDefs.cpp",
"framework/opengl/wrapper/glwFunctions.cpp",
"framework/opengl/wrapper/glwInitES20Direct.cpp",
"framework/opengl/wrapper/glwInitES30Direct.cpp",
"framework/opengl/wrapper/glwInitES31Direct.cpp",
"framework/opengl/wrapper/glwInitES32Direct.cpp",
"framework/opengl/wrapper/glwInitFunctions.cpp",
"framework/opengl/wrapper/glwWrapper.cpp",
"framework/qphelper/qpCrashHandler.c",
"framework/qphelper/qpDebugOut.c",
"framework/qphelper/qpInfo.c",
"framework/qphelper/qpTestLog.c",
"framework/qphelper/qpWatchDog.c",
"framework/qphelper/qpXmlWriter.c",
"framework/randomshaders/rsgBinaryOps.cpp",
"framework/randomshaders/rsgBuiltinFunctions.cpp",
"framework/randomshaders/rsgDefs.cpp",
"framework/randomshaders/rsgExecutionContext.cpp",
"framework/randomshaders/rsgExpression.cpp",
"framework/randomshaders/rsgExpressionGenerator.cpp",
"framework/randomshaders/rsgFunctionGenerator.cpp",
"framework/randomshaders/rsgGeneratorState.cpp",
"framework/randomshaders/rsgNameAllocator.cpp",
"framework/randomshaders/rsgParameters.cpp",
"framework/randomshaders/rsgPrettyPrinter.cpp",
"framework/randomshaders/rsgProgramExecutor.cpp",
"framework/randomshaders/rsgProgramGenerator.cpp",
"framework/randomshaders/rsgSamplers.cpp",
"framework/randomshaders/rsgShader.cpp",
"framework/randomshaders/rsgShaderGenerator.cpp",
"framework/randomshaders/rsgStatement.cpp",
"framework/randomshaders/rsgToken.cpp",
"framework/randomshaders/rsgUtils.cpp",
"framework/randomshaders/rsgVariable.cpp",
"framework/randomshaders/rsgVariableManager.cpp",
"framework/randomshaders/rsgVariableType.cpp",
"framework/randomshaders/rsgVariableValue.cpp",
"framework/referencerenderer/rrDefs.cpp",
"framework/referencerenderer/rrFragmentOperations.cpp",
"framework/referencerenderer/rrMultisamplePixelBufferAccess.cpp",
"framework/referencerenderer/rrPrimitivePacket.cpp",
"framework/referencerenderer/rrRasterizer.cpp",
"framework/referencerenderer/rrRenderer.cpp",
"framework/referencerenderer/rrShaders.cpp",
"framework/referencerenderer/rrShadingContext.cpp",
"framework/referencerenderer/rrVertexAttrib.cpp",
"framework/referencerenderer/rrVertexPacket.cpp",
"framework/xexml/xeDefs.cpp",
"framework/xexml/xeXMLParser.cpp",
],
export_include_dirs: [
"execserver",
"executor",
"framework/common",
"framework/delibs/debase",
"framework/delibs/decpp",
"framework/delibs/deimage",
"framework/delibs/depool",
"framework/delibs/destream",
"framework/delibs/dethread",
"framework/delibs/dethread/unix",
"framework/delibs/dethread/win32",
"framework/delibs/deutil",
"framework/egl",
"framework/egl/wrapper",
"framework/opengl",
"framework/opengl/simplereference",
"framework/opengl/wrapper",
"framework/qphelper",
"framework/randomshaders",
"framework/referencerenderer",
"framework/xexml",
],
static_libs: [
"libpng_ndk",
],
}
cc_library_static {
name: "libkhronoscts_modules_gles",
defaults: ["khronosctscompilationflag_default"],
srcs: [
"modules/egl/teglAndroidUtil.cpp",
"modules/egl/teglApiCase.cpp",
"modules/egl/teglBufferAgeTests.cpp",
"modules/egl/teglChooseConfigReference.cpp",
"modules/egl/teglChooseConfigTests.cpp",
"modules/egl/teglClientExtensionTests.cpp",
"modules/egl/teglColorClearCase.cpp",
"modules/egl/teglColorClearTests.cpp",
"modules/egl/teglConfigList.cpp",
"modules/egl/teglCreateContextExtTests.cpp",
"modules/egl/teglCreateContextTests.cpp",
"modules/egl/teglCreateSurfaceTests.cpp",
"modules/egl/teglGLES1RenderUtil.cpp",
"modules/egl/teglGLES2RenderUtil.cpp",
"modules/egl/teglGLES2SharedRenderingPerfTests.cpp",
"modules/egl/teglGLES2SharingTests.cpp",
"modules/egl/teglGLES2SharingThreadedTests.cpp",
"modules/egl/teglGetFrameTimestampsTests.cpp",
"modules/egl/teglGetProcAddressTests.cpp",
"modules/egl/teglImageFormatTests.cpp",
"modules/egl/teglImageTests.cpp",
"modules/egl/teglImageUtil.cpp",
"modules/egl/teglInfoTests.cpp",
"modules/egl/teglMakeCurrentPerfTests.cpp",
"modules/egl/teglMemoryStressTests.cpp",
"modules/egl/teglMultiContextTests.cpp",
"modules/egl/teglMultiThreadTests.cpp",
"modules/egl/teglMutableRenderBufferTests.cpp",
"modules/egl/teglNativeColorMappingTests.cpp",
"modules/egl/teglNativeCoordMappingTests.cpp",
"modules/egl/teglNegativeApiTests.cpp",
"modules/egl/teglNegativePartialUpdateTests.cpp",
"modules/egl/teglPartialUpdateTests.cpp",
"modules/egl/teglPreservingSwapTests.cpp",
"modules/egl/teglQueryConfigTests.cpp",
"modules/egl/teglQueryContextTests.cpp",
"modules/egl/teglQuerySurfaceTests.cpp",
"modules/egl/teglRenderCase.cpp",
"modules/egl/teglRenderTests.cpp",
"modules/egl/teglResizeTests.cpp",
"modules/egl/teglRobustnessTests.cpp",
"modules/egl/teglSimpleConfigCase.cpp",
"modules/egl/teglSurfacelessContextTests.cpp",
"modules/egl/teglSwapBuffersTests.cpp",
"modules/egl/teglSwapBuffersWithDamageTests.cpp",
"modules/egl/teglSyncTests.cpp",
"modules/egl/teglTestCase.cpp",
"modules/egl/teglTestPackage.cpp",
"modules/egl/teglThreadCleanUpTests.cpp",
"modules/egl/teglVGRenderUtil.cpp",
"modules/egl/teglWideColorTests.cpp",
"modules/gles2/accuracy/es2aAccuracyTests.cpp",
"modules/gles2/accuracy/es2aTextureFilteringTests.cpp",
"modules/gles2/accuracy/es2aTextureMipmapTests.cpp",
"modules/gles2/accuracy/es2aVaryingInterpolationTests.cpp",
"modules/gles2/functional/es2fApiCase.cpp",
"modules/gles2/functional/es2fAttribLocationTests.cpp",
"modules/gles2/functional/es2fBlendTests.cpp",
"modules/gles2/functional/es2fBooleanStateQueryTests.cpp",
"modules/gles2/functional/es2fBufferObjectQueryTests.cpp",
"modules/gles2/functional/es2fBufferTestUtil.cpp",
"modules/gles2/functional/es2fBufferWriteTests.cpp",
"modules/gles2/functional/es2fClipControlTests.cpp",
"modules/gles2/functional/es2fClippingTests.cpp",
"modules/gles2/functional/es2fColorClearTest.cpp",
"modules/gles2/functional/es2fDebugMarkerTests.cpp",
"modules/gles2/functional/es2fDefaultVertexAttributeTests.cpp",
"modules/gles2/functional/es2fDepthRangeTests.cpp",
"modules/gles2/functional/es2fDepthStencilClearTests.cpp",
"modules/gles2/functional/es2fDepthStencilTests.cpp",
"modules/gles2/functional/es2fDepthTests.cpp",
"modules/gles2/functional/es2fDitheringTests.cpp",
"modules/gles2/functional/es2fDrawTests.cpp",
"modules/gles2/functional/es2fFboApiTest.cpp",
"modules/gles2/functional/es2fFboCompletenessTests.cpp",
"modules/gles2/functional/es2fFboRenderTest.cpp",
"modules/gles2/functional/es2fFboStateQueryTests.cpp",
"modules/gles2/functional/es2fFloatStateQueryTests.cpp",
"modules/gles2/functional/es2fFlushFinishTests.cpp",
"modules/gles2/functional/es2fFragOpInteractionTests.cpp",
"modules/gles2/functional/es2fFunctionalTests.cpp",
"modules/gles2/functional/es2fImplementationLimitTests.cpp",
"modules/gles2/functional/es2fIntegerStateQueryTests.cpp",
"modules/gles2/functional/es2fLifetimeTests.cpp",
"modules/gles2/functional/es2fLightAmountTest.cpp",
"modules/gles2/functional/es2fMultisampleTests.cpp",
"modules/gles2/functional/es2fMultisampledRenderToTextureTests.cpp",
"modules/gles2/functional/es2fNegativeBufferApiTests.cpp",
"modules/gles2/functional/es2fNegativeFragmentApiTests.cpp",
"modules/gles2/functional/es2fNegativeShaderApiTests.cpp",
"modules/gles2/functional/es2fNegativeStateApiTests.cpp",
"modules/gles2/functional/es2fNegativeTextureApiTests.cpp",
"modules/gles2/functional/es2fNegativeVertexArrayApiTests.cpp",
"modules/gles2/functional/es2fPolygonOffsetTests.cpp",
"modules/gles2/functional/es2fPrerequisiteTests.cpp",
"modules/gles2/functional/es2fRandomFragmentOpTests.cpp",
"modules/gles2/functional/es2fRandomShaderTests.cpp",
"modules/gles2/functional/es2fRasterizationTests.cpp",
"modules/gles2/functional/es2fRboStateQueryTests.cpp",
"modules/gles2/functional/es2fReadPixelsTests.cpp",
"modules/gles2/functional/es2fScissorTests.cpp",
"modules/gles2/functional/es2fShaderAlgorithmTests.cpp",
"modules/gles2/functional/es2fShaderApiTests.cpp",
"modules/gles2/functional/es2fShaderBuiltinVarTests.cpp",
"modules/gles2/functional/es2fShaderConstExprTests.cpp",
"modules/gles2/functional/es2fShaderDiscardTests.cpp",
"modules/gles2/functional/es2fShaderExecuteTest.cpp",
"modules/gles2/functional/es2fShaderFragDataTests.cpp",
"modules/gles2/functional/es2fShaderFunctionTests.cpp",
"modules/gles2/functional/es2fShaderIndexingTests.cpp",
"modules/gles2/functional/es2fShaderInvarianceTests.cpp",
"modules/gles2/functional/es2fShaderLoopTests.cpp",
"modules/gles2/functional/es2fShaderMatrixTests.cpp",
"modules/gles2/functional/es2fShaderOperatorTests.cpp",
"modules/gles2/functional/es2fShaderReturnTests.cpp",
"modules/gles2/functional/es2fShaderStateQueryTests.cpp",
"modules/gles2/functional/es2fShaderStructTests.cpp",
"modules/gles2/functional/es2fShaderTextureFunctionTests.cpp",
"modules/gles2/functional/es2fStencilTests.cpp",
"modules/gles2/functional/es2fStringQueryTests.cpp",
"modules/gles2/functional/es2fTextureCompletenessTests.cpp",
"modules/gles2/functional/es2fTextureFilteringTests.cpp",
"modules/gles2/functional/es2fTextureFormatTests.cpp",
"modules/gles2/functional/es2fTextureMipmapTests.cpp",
"modules/gles2/functional/es2fTextureSizeTests.cpp",
"modules/gles2/functional/es2fTextureSpecificationTests.cpp",
"modules/gles2/functional/es2fTextureStateQueryTests.cpp",
"modules/gles2/functional/es2fTextureUnitTests.cpp",
"modules/gles2/functional/es2fTextureWrapTests.cpp",
"modules/gles2/functional/es2fUniformApiTests.cpp",
"modules/gles2/functional/es2fVertexArrayTest.cpp",
"modules/gles2/functional/es2fVertexTextureTests.cpp",
"modules/gles2/performance/es2pBlendTests.cpp",
"modules/gles2/performance/es2pDrawCallBatchingTests.cpp",
"modules/gles2/performance/es2pPerformanceTests.cpp",
"modules/gles2/performance/es2pRedundantStateChangeTests.cpp",
"modules/gles2/performance/es2pShaderCompilationCases.cpp",
"modules/gles2/performance/es2pShaderCompilerTests.cpp",
"modules/gles2/performance/es2pShaderControlStatementTests.cpp",
"modules/gles2/performance/es2pShaderOperatorTests.cpp",
"modules/gles2/performance/es2pShaderOptimizationTests.cpp",
"modules/gles2/performance/es2pStateChangeCallTests.cpp",
"modules/gles2/performance/es2pStateChangeTests.cpp",
"modules/gles2/performance/es2pTextureCases.cpp",
"modules/gles2/performance/es2pTextureCountTests.cpp",
"modules/gles2/performance/es2pTextureFilteringTests.cpp",
"modules/gles2/performance/es2pTextureFormatTests.cpp",
"modules/gles2/performance/es2pTextureUploadTests.cpp",
"modules/gles2/stress/es2sDrawTests.cpp",
"modules/gles2/stress/es2sLongRunningTests.cpp",
"modules/gles2/stress/es2sMemoryTests.cpp",
"modules/gles2/stress/es2sSpecialFloatTests.cpp",
"modules/gles2/stress/es2sStressTests.cpp",
"modules/gles2/stress/es2sVertexArrayTests.cpp",
"modules/gles2/tes2CapabilityTests.cpp",
"modules/gles2/tes2Context.cpp",
"modules/gles2/tes2InfoTests.cpp",
"modules/gles2/tes2TestCase.cpp",
"modules/gles2/tes2TestPackage.cpp",
"modules/gles3/accuracy/es3aAccuracyTests.cpp",
"modules/gles3/accuracy/es3aTextureFilteringTests.cpp",
"modules/gles3/accuracy/es3aTextureMipmapTests.cpp",
"modules/gles3/accuracy/es3aVaryingInterpolationTests.cpp",
"modules/gles3/functional/es3fASTCDecompressionCases.cpp",
"modules/gles3/functional/es3fApiCase.cpp",
"modules/gles3/functional/es3fAttribLocationTests.cpp",
"modules/gles3/functional/es3fBlendTests.cpp",
"modules/gles3/functional/es3fBooleanStateQueryTests.cpp",
"modules/gles3/functional/es3fBufferCopyTests.cpp",
"modules/gles3/functional/es3fBufferMapTests.cpp",
"modules/gles3/functional/es3fBufferObjectQueryTests.cpp",
"modules/gles3/functional/es3fBufferWriteTests.cpp",
"modules/gles3/functional/es3fBuiltinPrecisionTests.cpp",
"modules/gles3/functional/es3fClippingTests.cpp",
"modules/gles3/functional/es3fColorClearTest.cpp",
"modules/gles3/functional/es3fCompressedTextureTests.cpp",
"modules/gles3/functional/es3fDefaultVertexArrayObjectTests.cpp",
"modules/gles3/functional/es3fDefaultVertexAttributeTests.cpp",
"modules/gles3/functional/es3fDepthStencilClearTests.cpp",
"modules/gles3/functional/es3fDepthStencilTests.cpp",
"modules/gles3/functional/es3fDepthTests.cpp",
"modules/gles3/functional/es3fDitheringTests.cpp",
"modules/gles3/functional/es3fDrawBuffersIndexedTests.cpp",
"modules/gles3/functional/es3fDrawTests.cpp",
"modules/gles3/functional/es3fFboApiTests.cpp",
"modules/gles3/functional/es3fFboColorbufferTests.cpp",
"modules/gles3/functional/es3fFboCompletenessTests.cpp",
"modules/gles3/functional/es3fFboDepthbufferTests.cpp",
"modules/gles3/functional/es3fFboInvalidateTests.cpp",
"modules/gles3/functional/es3fFboMultisampleTests.cpp",
"modules/gles3/functional/es3fFboRenderTest.cpp",
"modules/gles3/functional/es3fFboStateQueryTests.cpp",
"modules/gles3/functional/es3fFboStencilbufferTests.cpp",
"modules/gles3/functional/es3fFboTestCase.cpp",
"modules/gles3/functional/es3fFboTestUtil.cpp",
"modules/gles3/functional/es3fFloatStateQueryTests.cpp",
"modules/gles3/functional/es3fFlushFinishTests.cpp",
"modules/gles3/functional/es3fFragDepthTests.cpp",
"modules/gles3/functional/es3fFragOpInteractionTests.cpp",
"modules/gles3/functional/es3fFragmentOutputTests.cpp",
"modules/gles3/functional/es3fFramebufferBlitTests.cpp",
"modules/gles3/functional/es3fFunctionalTests.cpp",
"modules/gles3/functional/es3fImplementationLimitTests.cpp",
"modules/gles3/functional/es3fIndexedStateQueryTests.cpp",
"modules/gles3/functional/es3fInstancedRenderingTests.cpp",
"modules/gles3/functional/es3fInteger64StateQueryTests.cpp",
"modules/gles3/functional/es3fIntegerStateQueryTests.cpp",
"modules/gles3/functional/es3fInternalFormatQueryTests.cpp",
"modules/gles3/functional/es3fLifetimeTests.cpp",
"modules/gles3/functional/es3fMultisampleTests.cpp",
"modules/gles3/functional/es3fMultiviewTests.cpp",
"modules/gles3/functional/es3fNegativeBufferApiTests.cpp",
"modules/gles3/functional/es3fNegativeFragmentApiTests.cpp",
"modules/gles3/functional/es3fNegativeShaderApiTests.cpp",
"modules/gles3/functional/es3fNegativeStateApiTests.cpp",
"modules/gles3/functional/es3fNegativeTextureApiTests.cpp",
"modules/gles3/functional/es3fNegativeVertexArrayApiTests.cpp",
"modules/gles3/functional/es3fOcclusionQueryTests.cpp",
"modules/gles3/functional/es3fPixelBufferObjectTests.cpp",
"modules/gles3/functional/es3fPolygonOffsetTests.cpp",
"modules/gles3/functional/es3fPrerequisiteTests.cpp",
"modules/gles3/functional/es3fPrimitiveRestartTests.cpp",
"modules/gles3/functional/es3fRandomFragmentOpTests.cpp",
"modules/gles3/functional/es3fRandomShaderTests.cpp",
"modules/gles3/functional/es3fRasterizationTests.cpp",
"modules/gles3/functional/es3fRasterizerDiscardTests.cpp",
"modules/gles3/functional/es3fRboStateQueryTests.cpp",
"modules/gles3/functional/es3fReadPixelsTests.cpp",
"modules/gles3/functional/es3fSamplerObjectTests.cpp",
"modules/gles3/functional/es3fSamplerStateQueryTests.cpp",
"modules/gles3/functional/es3fScissorTests.cpp",
"modules/gles3/functional/es3fShaderApiTests.cpp",
"modules/gles3/functional/es3fShaderBuiltinVarTests.cpp",
"modules/gles3/functional/es3fShaderCommonFunctionTests.cpp",
"modules/gles3/functional/es3fShaderConstExprTests.cpp",
"modules/gles3/functional/es3fShaderDerivateTests.cpp",
"modules/gles3/functional/es3fShaderDiscardTests.cpp",
"modules/gles3/functional/es3fShaderFragDataTests.cpp",
"modules/gles3/functional/es3fShaderFunctionTests.cpp",
"modules/gles3/functional/es3fShaderIndexingTests.cpp",
"modules/gles3/functional/es3fShaderInvarianceTests.cpp",
"modules/gles3/functional/es3fShaderLoopTests.cpp",
"modules/gles3/functional/es3fShaderMatrixTests.cpp",
"modules/gles3/functional/es3fShaderMetamorphicTests.cpp",
"modules/gles3/functional/es3fShaderOperatorTests.cpp",
"modules/gles3/functional/es3fShaderPackingFunctionTests.cpp",
"modules/gles3/functional/es3fShaderPrecisionTests.cpp",
"modules/gles3/functional/es3fShaderReturnTests.cpp",
"modules/gles3/functional/es3fShaderStateQueryTests.cpp",
"modules/gles3/functional/es3fShaderStructTests.cpp",
"modules/gles3/functional/es3fShaderSwitchTests.cpp",
"modules/gles3/functional/es3fShaderTextureFunctionTests.cpp",
"modules/gles3/functional/es3fStencilTests.cpp",
"modules/gles3/functional/es3fStringQueryTests.cpp",
"modules/gles3/functional/es3fSyncTests.cpp",
"modules/gles3/functional/es3fTextureFilteringTests.cpp",
"modules/gles3/functional/es3fTextureFormatTests.cpp",
"modules/gles3/functional/es3fTextureMipmapTests.cpp",
"modules/gles3/functional/es3fTextureShadowTests.cpp",
"modules/gles3/functional/es3fTextureSizeTests.cpp",
"modules/gles3/functional/es3fTextureSpecificationTests.cpp",
"modules/gles3/functional/es3fTextureStateQueryTests.cpp",
"modules/gles3/functional/es3fTextureSwizzleTests.cpp",
"modules/gles3/functional/es3fTextureUnitTests.cpp",
"modules/gles3/functional/es3fTextureWrapTests.cpp",
"modules/gles3/functional/es3fTransformFeedbackTests.cpp",
"modules/gles3/functional/es3fUniformApiTests.cpp",
"modules/gles3/functional/es3fUniformBlockTests.cpp",
"modules/gles3/functional/es3fVertexArrayObjectTests.cpp",
"modules/gles3/functional/es3fVertexArrayTest.cpp",
"modules/gles3/functional/es3fVertexTextureTests.cpp",
"modules/gles3/performance/es3pBlendTests.cpp",
"modules/gles3/performance/es3pBufferDataUploadTests.cpp",
"modules/gles3/performance/es3pDepthTests.cpp",
"modules/gles3/performance/es3pPerformanceTests.cpp",
"modules/gles3/performance/es3pRedundantStateChangeTests.cpp",
"modules/gles3/performance/es3pShaderCompilationCases.cpp",
"modules/gles3/performance/es3pShaderCompilerTests.cpp",
"modules/gles3/performance/es3pShaderControlStatementTests.cpp",
"modules/gles3/performance/es3pShaderOperatorTests.cpp",
"modules/gles3/performance/es3pShaderOptimizationTests.cpp",
"modules/gles3/performance/es3pStateChangeCallTests.cpp",
"modules/gles3/performance/es3pStateChangeTests.cpp",
"modules/gles3/performance/es3pTextureCases.cpp",
"modules/gles3/performance/es3pTextureCountTests.cpp",
"modules/gles3/performance/es3pTextureFilteringTests.cpp",
"modules/gles3/performance/es3pTextureFormatTests.cpp",
"modules/gles3/stress/es3sDrawTests.cpp",
"modules/gles3/stress/es3sLongRunningShaderTests.cpp",
"modules/gles3/stress/es3sLongRunningTests.cpp",
"modules/gles3/stress/es3sLongShaderTests.cpp",
"modules/gles3/stress/es3sMemoryTests.cpp",
"modules/gles3/stress/es3sOcclusionQueryTests.cpp",
"modules/gles3/stress/es3sSpecialFloatTests.cpp",
"modules/gles3/stress/es3sStressTests.cpp",
"modules/gles3/stress/es3sSyncTests.cpp",
"modules/gles3/stress/es3sVertexArrayTests.cpp",
"modules/gles3/tes3Context.cpp",
"modules/gles3/tes3InfoTests.cpp",
"modules/gles3/tes3TestCase.cpp",
"modules/gles3/tes3TestPackage.cpp",
"modules/gles3/tgl45es3TestPackage.cpp",
"modules/gles31/functional/es31fAdvancedBlendTests.cpp",
"modules/gles31/functional/es31fAndroidExtensionPackES31ATests.cpp",
"modules/gles31/functional/es31fAtomicCounterTests.cpp",
"modules/gles31/functional/es31fBasicComputeShaderTests.cpp",
"modules/gles31/functional/es31fBooleanStateQueryTests.cpp",
"modules/gles31/functional/es31fBuiltinPrecisionTests.cpp",
"modules/gles31/functional/es31fComputeShaderBuiltinVarTests.cpp",
"modules/gles31/functional/es31fCopyImageTests.cpp",
"modules/gles31/functional/es31fDebugTests.cpp",
"modules/gles31/functional/es31fDefaultVertexArrayObjectTests.cpp",
"modules/gles31/functional/es31fDrawElementsBaseVertexTests.cpp",
"modules/gles31/functional/es31fDrawTests.cpp",
"modules/gles31/functional/es31fFboColorbufferTests.cpp",
"modules/gles31/functional/es31fFboNoAttachmentTests.cpp",
"modules/gles31/functional/es31fFboSRGBWriteControlTests.cpp",
"modules/gles31/functional/es31fFboTestCase.cpp",
"modules/gles31/functional/es31fFboTestUtil.cpp",
"modules/gles31/functional/es31fFramebufferDefaultStateQueryTests.cpp",
"modules/gles31/functional/es31fFunctionalTests.cpp",
"modules/gles31/functional/es31fGeometryShaderTests.cpp",
"modules/gles31/functional/es31fIndexedStateQueryTests.cpp",
"modules/gles31/functional/es31fIndirectComputeDispatchTests.cpp",
"modules/gles31/functional/es31fInfoLogQueryShared.cpp",
"modules/gles31/functional/es31fIntegerStateQueryTests.cpp",
"modules/gles31/functional/es31fInternalFormatQueryTests.cpp",
"modules/gles31/functional/es31fLayoutBindingTests.cpp",
"modules/gles31/functional/es31fMultisampleShaderRenderCase.cpp",
"modules/gles31/functional/es31fMultisampleTests.cpp",
"modules/gles31/functional/es31fNegativeAdvancedBlendEquationTests.cpp",
"modules/gles31/functional/es31fNegativeAtomicCounterTests.cpp",
"modules/gles31/functional/es31fNegativeBufferApiTests.cpp",
"modules/gles31/functional/es31fNegativeComputeTests.cpp",
"modules/gles31/functional/es31fNegativeFragmentApiTests.cpp",
"modules/gles31/functional/es31fNegativePreciseTests.cpp",
"modules/gles31/functional/es31fNegativeSSBOBlockTests.cpp",
"modules/gles31/functional/es31fNegativeSampleVariablesTests.cpp",
"modules/gles31/functional/es31fNegativeShaderApiTests.cpp",
"modules/gles31/functional/es31fNegativeShaderDirectiveTests.cpp",
"modules/gles31/functional/es31fNegativeShaderFramebufferFetchTests.cpp",
"modules/gles31/functional/es31fNegativeShaderFunctionTests.cpp",
"modules/gles31/functional/es31fNegativeShaderImageLoadStoreTests.cpp",
"modules/gles31/functional/es31fNegativeShaderStorageTests.cpp",
"modules/gles31/functional/es31fNegativeStateApiTests.cpp",
"modules/gles31/functional/es31fNegativeTessellationTests.cpp",
"modules/gles31/functional/es31fNegativeTestShared.cpp",
"modules/gles31/functional/es31fNegativeTextureApiTests.cpp",
"modules/gles31/functional/es31fNegativeVertexArrayApiTests.cpp",
"modules/gles31/functional/es31fOpaqueTypeIndexingTests.cpp",
"modules/gles31/functional/es31fPrimitiveBoundingBoxTests.cpp",
"modules/gles31/functional/es31fProgramInterfaceDefinition.cpp",
"modules/gles31/functional/es31fProgramInterfaceDefinitionUtil.cpp",
"modules/gles31/functional/es31fProgramInterfaceQueryTestCase.cpp",
"modules/gles31/functional/es31fProgramInterfaceQueryTests.cpp",
"modules/gles31/functional/es31fProgramPipelineStateQueryTests.cpp",
"modules/gles31/functional/es31fProgramStateQueryTests.cpp",
"modules/gles31/functional/es31fProgramUniformTests.cpp",
"modules/gles31/functional/es31fSRGBDecodeTests.cpp",
"modules/gles31/functional/es31fSSBOArrayLengthTests.cpp",
"modules/gles31/functional/es31fSSBOLayoutCase.cpp",
"modules/gles31/functional/es31fSSBOLayoutTests.cpp",
"modules/gles31/functional/es31fSampleShadingTests.cpp",
"modules/gles31/functional/es31fSampleVariableTests.cpp",
"modules/gles31/functional/es31fSamplerStateQueryTests.cpp",
"modules/gles31/functional/es31fSeparateShaderTests.cpp",
"modules/gles31/functional/es31fShaderAtomicOpTests.cpp",
"modules/gles31/functional/es31fShaderBuiltinConstantTests.cpp",
"modules/gles31/functional/es31fShaderCommonFunctionTests.cpp",
"modules/gles31/functional/es31fShaderFramebufferFetchTests.cpp",
"modules/gles31/functional/es31fShaderHelperInvocationTests.cpp",
"modules/gles31/functional/es31fShaderImageLoadStoreTests.cpp",
"modules/gles31/functional/es31fShaderIntegerFunctionTests.cpp",
"modules/gles31/functional/es31fShaderMultisampleInterpolationStateQueryTests.cpp",
"modules/gles31/functional/es31fShaderMultisampleInterpolationTests.cpp",
"modules/gles31/functional/es31fShaderPackingFunctionTests.cpp",
"modules/gles31/functional/es31fShaderSharedVarTests.cpp",
"modules/gles31/functional/es31fShaderStateQueryTests.cpp",
"modules/gles31/functional/es31fShaderTextureSizeTests.cpp",
"modules/gles31/functional/es31fShaderUniformIntegerFunctionTests.cpp",
"modules/gles31/functional/es31fStencilTexturingTests.cpp",
"modules/gles31/functional/es31fSynchronizationTests.cpp",
"modules/gles31/functional/es31fTessellationGeometryInteractionTests.cpp",
"modules/gles31/functional/es31fTessellationTests.cpp",
"modules/gles31/functional/es31fTextureBorderClampTests.cpp",
"modules/gles31/functional/es31fTextureBufferTests.cpp",
"modules/gles31/functional/es31fTextureFilteringTests.cpp",
"modules/gles31/functional/es31fTextureFormatTests.cpp",
"modules/gles31/functional/es31fTextureGatherTests.cpp",
"modules/gles31/functional/es31fTextureLevelStateQueryTests.cpp",
"modules/gles31/functional/es31fTextureMultisampleTests.cpp",
"modules/gles31/functional/es31fTextureSpecificationTests.cpp",
"modules/gles31/functional/es31fTextureStateQueryTests.cpp",
"modules/gles31/functional/es31fUniformBlockTests.cpp",
"modules/gles31/functional/es31fUniformLocationTests.cpp",
"modules/gles31/functional/es31fVertexAttributeBindingStateQueryTests.cpp",
"modules/gles31/functional/es31fVertexAttributeBindingTests.cpp",
"modules/gles31/stress/es31sDrawTests.cpp",
"modules/gles31/stress/es31sStressTests.cpp",
"modules/gles31/stress/es31sTessellationGeometryInteractionTests.cpp",
"modules/gles31/stress/es31sVertexAttributeBindingTests.cpp",
"modules/gles31/tes31Context.cpp",
"modules/gles31/tes31InfoTests.cpp",
"modules/gles31/tes31TestCase.cpp",
"modules/gles31/tes31TestPackage.cpp",
"modules/gles31/tgl45es31TestPackage.cpp",
"modules/glshared/glsAttributeLocationTests.cpp",
"modules/glshared/glsBufferTestUtil.cpp",
"modules/glshared/glsBuiltinPrecisionTests.cpp",
"modules/glshared/glsCalibration.cpp",
"modules/glshared/glsDrawTest.cpp",
"modules/glshared/glsFboCompletenessTests.cpp",
"modules/glshared/glsFboUtil.cpp",
"modules/glshared/glsFragOpInteractionCase.cpp",
"modules/glshared/glsFragmentOpUtil.cpp",
"modules/glshared/glsInteractionTestUtil.cpp",
"modules/glshared/glsLifetimeTests.cpp",
"modules/glshared/glsLongStressCase.cpp",
"modules/glshared/glsLongStressTestUtil.cpp",
"modules/glshared/glsMemoryStressCase.cpp",
"modules/glshared/glsRandomShaderCase.cpp",
"modules/glshared/glsRandomShaderProgram.cpp",
"modules/glshared/glsRandomUniformBlockCase.cpp",
"modules/glshared/glsSamplerObjectTest.cpp",
"modules/glshared/glsScissorTests.cpp",
"modules/glshared/glsShaderConstExprTests.cpp",
"modules/glshared/glsShaderExecUtil.cpp",
"modules/glshared/glsShaderLibrary.cpp",
"modules/glshared/glsShaderLibraryCase.cpp",
"modules/glshared/glsShaderPerformanceCase.cpp",
"modules/glshared/glsShaderPerformanceMeasurer.cpp",
"modules/glshared/glsShaderRenderCase.cpp",
"modules/glshared/glsStateChangePerfTestCases.cpp",
"modules/glshared/glsStateQueryUtil.cpp",
"modules/glshared/glsTextureBufferCase.cpp",
"modules/glshared/glsTextureStateQueryTests.cpp",
"modules/glshared/glsTextureTestUtil.cpp",
"modules/glshared/glsUniformBlockCase.cpp",
"modules/glshared/glsVertexArrayTests.cpp",
"modules/internal/ditAstcTests.cpp",
"modules/internal/ditBuildInfoTests.cpp",
"modules/internal/ditDelibsTests.cpp",
"modules/internal/ditFrameworkTests.cpp",
"modules/internal/ditImageCompareTests.cpp",
"modules/internal/ditImageIOTests.cpp",
"modules/internal/ditSRGB8ConversionTest.cpp",
"modules/internal/ditSeedBuilderTests.cpp",
"modules/internal/ditTestCase.cpp",
"modules/internal/ditTestLogTests.cpp",
"modules/internal/ditTestPackage.cpp",
"modules/internal/ditTextureFormatTests.cpp",
"modules/internal/ditVulkanTests.cpp",
"modules/pch.cpp",
],
export_include_dirs: [
"external/vulkancts/framework/vulkan",
"external/vulkancts/framework/vulkan/generated/vulkan",
"modules",
"modules/egl",
"modules/gles2",
"modules/gles2/accuracy",
"modules/gles2/functional",
"modules/gles2/performance",
"modules/gles2/stress",
"modules/gles3",
"modules/gles3/accuracy",
"modules/gles3/functional",
"modules/gles3/performance",
"modules/gles3/stress",
"modules/gles31",
"modules/gles31/functional",
"modules/gles31/stress",
"modules/glshared",
"modules/internal",
],
static_libs: [
"libkhronoscts_common",
],
}
cc_library_static {
name: "libkhronoscts_openglcts",
defaults: ["khronosctscompilationflag_default"],
srcs: [
"external/openglcts/modules/common/glcAggressiveShaderOptimizationsTests.cpp",
"external/openglcts/modules/common/glcApiCoverageTests.cpp",
"external/openglcts/modules/common/glcBlendEquationAdvancedTests.cpp",
"external/openglcts/modules/common/glcBufferObjectsTests.cpp",
"external/openglcts/modules/common/glcClipDistance.cpp",
"external/openglcts/modules/common/glcCompressedFormatTests.cpp",
"external/openglcts/modules/common/glcConfigList.cpp",
"external/openglcts/modules/common/glcConfigListCase.cpp",
"external/openglcts/modules/common/glcConfigListEGL.cpp",
"external/openglcts/modules/common/glcConfigListWGL.cpp",
"external/openglcts/modules/common/glcConfigPackage.cpp",
"external/openglcts/modules/common/glcContext.cpp",
"external/openglcts/modules/common/glcContextFlagsTests.cpp",
"external/openglcts/modules/common/glcCullDistance.cpp",
"external/openglcts/modules/common/glcExposedExtensionsTests.cpp",
"external/openglcts/modules/common/glcExtTokens.cpp",
"external/openglcts/modules/common/glcFragCoordConventionsTests.cpp",
"external/openglcts/modules/common/glcFragDepthTests.cpp",
"external/openglcts/modules/common/glcFramebufferBlitTests.cpp",
"external/openglcts/modules/common/glcFramebufferCompleteness.cpp",
"external/openglcts/modules/common/glcGLSLVectorConstructorTests.cpp",
"external/openglcts/modules/common/glcInfoTests.cpp",
"external/openglcts/modules/common/glcInternalformatTests.cpp",
"external/openglcts/modules/common/glcKHRDebugTests.cpp",
"external/openglcts/modules/common/glcLayoutLocationTests.cpp",
"external/openglcts/modules/common/glcMisc.cpp",
"external/openglcts/modules/common/glcMultipleContextsTests.cpp",
"external/openglcts/modules/common/glcNearestEdgeTests.cpp",
"external/openglcts/modules/common/glcNoDefaultContextPackage.cpp",
"external/openglcts/modules/common/glcNoErrorTests.cpp",
"external/openglcts/modules/common/glcPackedDepthStencilTests.cpp",
"external/openglcts/modules/common/glcPackedPixelsTests.cpp",
"external/openglcts/modules/common/glcParallelShaderCompileTests.cpp",
"external/openglcts/modules/common/glcPixelStorageModesTests.cpp",
"external/openglcts/modules/common/glcPolygonOffsetClampTests.cpp",
"external/openglcts/modules/common/glcRobustBufferAccessBehaviorTests.cpp",
"external/openglcts/modules/common/glcRobustnessTests.cpp",
"external/openglcts/modules/common/glcSampleVariablesTests.cpp",
"external/openglcts/modules/common/glcSeparableProgramsTransformFeedbackTests.cpp",
"external/openglcts/modules/common/glcShaderConstExprTests.cpp",
"external/openglcts/modules/common/glcShaderFunctionTests.cpp",
"external/openglcts/modules/common/glcShaderGroupVoteTests.cpp",
"external/openglcts/modules/common/glcShaderIndexingTests.cpp",
"external/openglcts/modules/common/glcShaderIntegerMixTests.cpp",
"external/openglcts/modules/common/glcShaderLibrary.cpp",
"external/openglcts/modules/common/glcShaderLibraryCase.cpp",
"external/openglcts/modules/common/glcShaderLoopTests.cpp",
"external/openglcts/modules/common/glcShaderMacroTests.cpp",
"external/openglcts/modules/common/glcShaderMultisampleInterpolationTests.cpp",
"external/openglcts/modules/common/glcShaderNegativeTests.cpp",
"external/openglcts/modules/common/glcShaderRenderCase.cpp",
"external/openglcts/modules/common/glcShaderStructTests.cpp",
"external/openglcts/modules/common/glcSingleConfigTestPackage.cpp",
"external/openglcts/modules/common/glcSpirvUtils.cpp",
"external/openglcts/modules/common/glcTestCase.cpp",
"external/openglcts/modules/common/glcTestCaseWrapper.cpp",
"external/openglcts/modules/common/glcTestPackage.cpp",
"external/openglcts/modules/common/glcTestSubcase.cpp",
"external/openglcts/modules/common/glcTextureCompatibilityTests.cpp",
"external/openglcts/modules/common/glcTextureFilterAnisotropicTests.cpp",
"external/openglcts/modules/common/glcTextureLodBasicTests.cpp",
"external/openglcts/modules/common/glcTextureLodBiasTests.cpp",
"external/openglcts/modules/common/glcTextureRepeatModeTests.cpp",
"external/openglcts/modules/common/glcTextureStencil8Tests.cpp",
"external/openglcts/modules/common/glcTextureStorageTests.cpp",
"external/openglcts/modules/common/glcTransformFeedbackTests.cpp",
"external/openglcts/modules/common/glcUniformBlockCase.cpp",
"external/openglcts/modules/common/glcUniformBlockNegativeTests.cpp",
"external/openglcts/modules/common/glcUniformBlockTests.cpp",
"external/openglcts/modules/common/glcViewportArrayTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsArithmeticTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsBallotBroadcastTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsBallotOtherTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsBallotTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsBasicTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsBuiltinMaskVarTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsBuiltinVarTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsClusteredTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsPartitionedTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsQuadTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsShapeTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsShuffleTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsTests.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsTestsUtils.cpp",
"external/openglcts/modules/common/subgroups/glcSubgroupsVoteTests.cpp",
"external/openglcts/modules/gl/gl3cCommonBugsTests.cpp",
"external/openglcts/modules/gl/gl3cDrawBuffers.cpp",
"external/openglcts/modules/gl/gl3cGLSLnoperspectiveTests.cpp",
"external/openglcts/modules/gl/gl3cGPUShader5Tests.cpp",
"external/openglcts/modules/gl/gl3cGetUniform.cpp",
"external/openglcts/modules/gl/gl3cPrimitiveRestart.cpp",
"external/openglcts/modules/gl/gl3cTestPackages.cpp",
"external/openglcts/modules/gl/gl3cTextureSizePromotion.cpp",
"external/openglcts/modules/gl/gl3cTextureSwizzleTests.cpp",
"external/openglcts/modules/gl/gl3cTransformFeedback3Tests.cpp",
"external/openglcts/modules/gl/gl3cTransformFeedbackOverflowQueryTests.cpp",
"external/openglcts/modules/gl/gl3cTransformFeedbackTests.cpp",
"external/openglcts/modules/gl/gl4cBufferStorageTests.cpp",
"external/openglcts/modules/gl/gl4cClipControlTests.cpp",
"external/openglcts/modules/gl/gl4cComputeShaderTests.cpp",
"external/openglcts/modules/gl/gl4cConditionalRenderInvertedTests.cpp",
"external/openglcts/modules/gl/gl4cCopyImageTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessBuffersTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessFramebuffersAndRenderbuffersTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessProgramPipelinesTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessQueriesTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessSamplersTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessTexturesTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessVertexArraysTests.cpp",
"external/openglcts/modules/gl/gl4cDirectStateAccessXFBTests.cpp",
"external/openglcts/modules/gl/gl4cES31CompatibilitySampleVariablesTests.cpp",
"external/openglcts/modules/gl/gl4cES31CompatibilityShaderImageLoadStoreTests.cpp",
"external/openglcts/modules/gl/gl4cES31CompatibilityShaderStorageBufferObjectTests.cpp",
"external/openglcts/modules/gl/gl4cES31CompatibilityTests.cpp",
"external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp",
"external/openglcts/modules/gl/gl4cGPUShaderFP64Tests.cpp",
"external/openglcts/modules/gl/gl4cGetTextureSubImageTests.cpp",
"external/openglcts/modules/gl/gl4cGlSpirvTests.cpp",
"external/openglcts/modules/gl/gl4cIncompleteTextureAccessTests.cpp",
"external/openglcts/modules/gl/gl4cIndirectParametersTests.cpp",
"external/openglcts/modules/gl/gl4cLimitsTests.cpp",
"external/openglcts/modules/gl/gl4cMapBufferAlignmentTests.cpp",
"external/openglcts/modules/gl/gl4cMultiBindTests.cpp",
"external/openglcts/modules/gl/gl4cPipelineStatisticsQueryTests.cpp",
"external/openglcts/modules/gl/gl4cPostDepthCoverageTests.cpp",
"external/openglcts/modules/gl/gl4cProgramInterfaceQueryTests.cpp",
"external/openglcts/modules/gl/gl4cShaderAtomicCounterOpsTests.cpp",
"external/openglcts/modules/gl/gl4cShaderAtomicCountersTests.cpp",
"external/openglcts/modules/gl/gl4cShaderBallotTests.cpp",
"external/openglcts/modules/gl/gl4cShaderDrawParametersTests.cpp",