-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ogre.log
1943 lines (1943 loc) · 288 KB
/
Ogre.log
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
15:40:19: Creating resource group General
15:40:19: Creating resource group Internal
15:40:19: Creating resource group Autodetect
15:40:19: SceneManagerFactory for type 'DefaultSceneManager' registered.
15:40:19: Registering ResourceManager for type Material
15:40:19: Registering ResourceManager for type Mesh
15:40:19: Registering ResourceManager for type Skeleton
15:40:19: MovableObjectFactory for type 'ParticleSystem' registered.
15:40:19: ArchiveFactory for archive type FileSystem registered.
15:40:19: ArchiveFactory for archive type Zip registered.
15:40:19: ArchiveFactory for archive type EmbeddedZip registered.
15:40:19: DDS codec registering
15:40:19: FreeImage version: 3.15.3
15:40:19: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
15:40:19: Supported formats: bmp,ico,jpg,jif,jpeg,jpe,jng,koa,iff,lbm,mng,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,cut,xbm,xpm,gif,hdr,g3,sgi,exr,j2k,j2c,jp2,pfm,pct,pict,pic,3fr,arw,bay,bmq,cap,cine,cr2,crw,cs1,dc2,dcr,drf,dsc,dng,erf,fff,ia,iiq,k25,kc2,kdc,mdc,mef,mos,mrw,nef,nrw,orf,pef,ptx,pxn,qtk,raf,raw,rdc,rw2,rwl,rwz,sr2,srf,srw,sti
15:40:19: Registering ResourceManager for type HighLevelGpuProgram
15:40:19: Registering ResourceManager for type Compositor
15:40:19: MovableObjectFactory for type 'Entity' registered.
15:40:19: MovableObjectFactory for type 'Light' registered.
15:40:19: MovableObjectFactory for type 'BillboardSet' registered.
15:40:19: MovableObjectFactory for type 'ManualObject' registered.
15:40:19: MovableObjectFactory for type 'BillboardChain' registered.
15:40:19: MovableObjectFactory for type 'RibbonTrail' registered.
15:40:19: Loading library ..\Config\Plugins\RenderSystem_Direct3D9
15:40:19: Installing plugin: D3D9 RenderSystem
15:40:19: D3D9 : Direct3D9 Rendering Subsystem created.
15:40:20: D3D9: Driver Detection Starts
15:40:20: D3D9: Driver Detection Ends
15:40:20: Plugin successfully installed
15:40:20: Loading library ..\Config\Plugins\RenderSystem_Direct3D11
15:40:20: Installing plugin: D3D11 RenderSystem
15:40:20: D3D11 : Direct3D11 Rendering Subsystem created.
15:40:20: D3D11: Driver Detection Starts
15:40:20: D3D11: Driver Detection Ends
15:40:20: Plugin successfully installed
15:40:20: Loading library ..\Config\Plugins\RenderSystem_GL
15:40:20: Installing plugin: GL RenderSystem
15:40:20: OpenGL Rendering Subsystem created.
15:40:21: Plugin successfully installed
15:40:21: Loading library ..\Config\Plugins\Plugin_ParticleFX
15:40:21: Installing plugin: ParticleFX
15:40:21: Particle Emitter Type 'Point' registered
15:40:21: Particle Emitter Type 'Box' registered
15:40:21: Particle Emitter Type 'Ellipsoid' registered
15:40:21: Particle Emitter Type 'Cylinder' registered
15:40:21: Particle Emitter Type 'Ring' registered
15:40:21: Particle Emitter Type 'HollowEllipsoid' registered
15:40:21: Particle Affector Type 'LinearForce' registered
15:40:21: Particle Affector Type 'ColourFader' registered
15:40:21: Particle Affector Type 'ColourFader2' registered
15:40:21: Particle Affector Type 'ColourImage' registered
15:40:21: Particle Affector Type 'ColourInterpolator' registered
15:40:21: Particle Affector Type 'Scaler' registered
15:40:21: Particle Affector Type 'Rotator' registered
15:40:21: Particle Affector Type 'DirectionRandomiser' registered
15:40:21: Particle Affector Type 'DeflectorPlane' registered
15:40:21: Plugin successfully installed
15:40:21: Loading library ..\Config\Plugins\Plugin_BSPSceneManager
15:40:21: Installing plugin: BSP Scene Manager
15:40:21: Plugin successfully installed
15:40:21: Loading library ..\Config\Plugins\Plugin_CgProgramManager
15:40:21: Installing plugin: Cg Program Manager
15:40:21: Plugin successfully installed
15:40:21: Loading library ..\Config\Plugins\Plugin_PCZSceneManager
15:40:21: Installing plugin: Portal Connected Zone Scene Manager
15:40:21: PCZone Factory Type 'ZoneType_Default' registered
15:40:21: Plugin successfully installed
15:40:21: Loading library ..\Config\Plugins\Plugin_OctreeZone
15:40:21: Installing plugin: Octree Zone Factory
15:40:21: Plugin successfully installed
15:40:21: Loading library ..\Config\Plugins\Plugin_OctreeSceneManager
15:40:21: Installing plugin: Octree Scene Manager
15:40:21: Plugin successfully installed
15:40:21: *-*-* OGRE Initialising
15:40:21: *-*-* Version 1.9.0 (Ghadamon)
15:40:21: Creating resource group Essential
15:40:21: Added resource location 'Media/thumbnails' of type 'FileSystem' to resource group 'Essential'
15:40:21: Added resource location 'Media/packs/SdkTrays.zip' of type 'Zip' to resource group 'Essential'
15:40:21: Added resource location 'Media/packs/profiler.zip' of type 'Zip' to resource group 'Essential'
15:40:21: Added resource location 'Media' of type 'FileSystem' to resource group 'General'
15:40:21: Creating resource group Popular
15:40:21: Added resource location 'Media/fonts' of type 'FileSystem' to resource group 'Popular'
15:40:21: Added resource location 'Media/materials/programs' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/materials/scripts' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/materials/textures' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/materials/textures/nvidia' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/models' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/particle' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/DeferredShadingMedia' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/PCZAppMedia' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/RTShaderLib' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/RTShaderLib/materials' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/materials/scripts/SSAO' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/materials/textures/SSAO' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/volumeTerrain' of type 'FileSystem' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/cubemap.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/dragon.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/fresneldemo.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/ogretestmap.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/ogredance.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/Sinbad.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/packs/skybox.zip' of type 'Zip' to resource group 'Popular'
15:40:22: Added resource location 'Media/volumeTerrain/volumeTerrainBig.zip' of type 'Zip' to resource group 'Popular'
15:40:22: D3D11 : RenderSystem Option: Allow NVPerfHUD = No
15:40:22: D3D11 : RenderSystem Option: Driver type = Hardware
15:40:22: D3D11 : RenderSystem Option: FSAA = 0
15:40:22: D3D11 : RenderSystem Option: Floating-point mode = Fastest
15:40:22: D3D11 : RenderSystem Option: Full Screen = Yes
15:40:22: D3D11 : RenderSystem Option: Information Queue Exceptions Bottom Level = No information queue exceptions
15:40:22: D3D11 : RenderSystem Option: Max Requested Feature Levels = 11.0
15:40:22: D3D11 : RenderSystem Option: Min Requested Feature Levels = 9.1
15:40:22: D3D11 : RenderSystem Option: Rendering Device = NVIDIA GeForce 8600 GT
15:40:22: D3D11 : RenderSystem Option: VSync = No
15:40:22: D3D11 : RenderSystem Option: VSync Interval = 1
15:40:22: D3D11 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour
15:40:22: D3D11 : RenderSystem Option: sRGB Gamma Conversion = No
15:40:22: D3D9 : RenderSystem Option: Allow DirectX9Ex = No
15:40:22: D3D9 : RenderSystem Option: Allow NVPerfHUD = No
15:40:22: D3D9 : RenderSystem Option: FSAA = 0
15:40:22: D3D9 : RenderSystem Option: Fixed Pipeline Enabled = Yes
15:40:22: D3D9 : RenderSystem Option: Floating-point mode = Fastest
15:40:22: D3D9 : RenderSystem Option: Full Screen = No
15:40:22: D3D9 : RenderSystem Option: Multi device memory hint = Use minimum system memory
15:40:22: D3D9 : RenderSystem Option: Rendering Device = Monitor-1-NVIDIA GeForce 8600 GT
15:40:22: D3D9 : RenderSystem Option: Resource Creation Policy = Create on all devices
15:40:22: D3D9 : RenderSystem Option: Use Multihead = Auto
15:40:22: D3D9 : RenderSystem Option: VSync = No
15:40:22: D3D9 : RenderSystem Option: VSync Interval = 1
15:40:22: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour
15:40:22: D3D9 : RenderSystem Option: sRGB Gamma Conversion = No
15:40:24: CPU Identifier & Features
15:40:24: -------------------------
15:40:24: * CPU ID: GenuineIntel: Intel(R) Core(TM)2 Quad CPU Q9550 @ 2.83GHz
15:40:24: * SSE: yes
15:40:24: * SSE2: yes
15:40:24: * SSE3: yes
15:40:24: * MMX: yes
15:40:24: * MMXEXT: yes
15:40:24: * 3DNOW: no
15:40:24: * 3DNOWEXT: no
15:40:24: * CMOV: yes
15:40:24: * TSC: yes
15:40:24: * FPU: yes
15:40:24: * PRO: yes
15:40:24: * HT: no
15:40:24: -------------------------
15:40:24: D3D9 : Subsystem Initialising
15:40:24: Registering ResourceManager for type Texture
15:40:24: Registering ResourceManager for type GpuProgram
15:40:24: D3D9RenderSystem::_createRenderWindow "TutorialApplication Render Window", 800x600 windowed miscParams: FSAA=0 FSAAHint= colourDepth=32 gamma=false monitorIndex=0 useNVPerfHUD=false vsync=false vsyncInterval=1
15:40:24: D3D9 : Created D3D9 Rendering Window 'TutorialApplication Render Window' : 800x600, 32bpp
15:40:24: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT16_RGB
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT16_RGBA
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT32_RGB
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT32_RGBA
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT16_R
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT32_R
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT16_GR
15:40:25: D3D9: Vertex texture format supported - PF_FLOAT32_GR
15:40:25: RenderSystem capabilities
15:40:25: -------------------------
15:40:25: RenderSystem Name: Direct3D9 Rendering Subsystem
15:40:25: GPU Vendor: nvidia
15:40:25: Device Name: Monitor-1-NVIDIA GeForce 8600 GT
15:40:25: Driver Version: 9.18.13.4052
15:40:25: * Fixed function pipeline: yes
15:40:25: * Hardware generation of mipmaps: yes
15:40:25: * Texture blending: yes
15:40:25: * Anisotropic texture filtering: yes
15:40:25: * Dot product texture operation: yes
15:40:25: * Cube mapping: yes
15:40:25: * Hardware stencil buffer: yes
15:40:25: - Stencil depth: 8
15:40:25: - Two sided stencil support: yes
15:40:25: - Wrap stencil values: yes
15:40:25: * Hardware vertex / index buffers: yes
15:40:25: * Vertex programs: yes
15:40:25: * Number of floating-point constants for vertex programs: 256
15:40:25: * Number of integer constants for vertex programs: 16
15:40:25: * Number of boolean constants for vertex programs: 16
15:40:25: * Fragment programs: yes
15:40:25: * Number of floating-point constants for fragment programs: 224
15:40:25: * Number of integer constants for fragment programs: 16
15:40:25: * Number of boolean constants for fragment programs: 16
15:40:25: * Geometry programs: no
15:40:25: * Number of floating-point constants for geometry programs: 0
15:40:25: * Number of integer constants for geometry programs: 15
15:40:25: * Number of boolean constants for geometry programs: 0
15:40:25: * Tesselation Hull programs: no
15:40:25: * Number of floating-point constants for tesselation hull programs: 0
15:40:25: * Number of integer constants for tesselation hull programs: 0
15:40:25: * Number of boolean constants for tesselation hull programs: 15
15:40:25: * Tesselation Domain programs: no
15:40:25: * Number of floating-point constants for tesselation domain programs: 0
15:40:25: * Number of integer constants for tesselation domain programs: 18925
15:40:25: * Number of boolean constants for tesselation domain programs: 0
15:40:25: * Compute programs: no
15:40:25: * Number of floating-point constants for compute programs: 19007
15:40:25: * Number of integer constants for compute programs: 0
15:40:25: * Number of boolean constants for compute programs: 0
15:40:25: * Supported Shader Profiles: hlsl ps_1_1 ps_1_2 ps_1_3 ps_1_4 ps_2_0 ps_2_a ps_2_b ps_2_x ps_3_0 vs_1_1 vs_2_0 vs_2_a vs_2_x vs_3_0
15:40:25: * Texture Compression: yes
15:40:25: - DXT: yes
15:40:25: - VTC: no
15:40:25: - PVRTC: no
15:40:25: - ATC: no
15:40:25: - ETC1: no
15:40:25: - ETC2: no
15:40:25: - BC4/BC5: no
15:40:25: - BC6H/BC7: no
15:40:25: * Scissor Rectangle: yes
15:40:25: * Hardware Occlusion Query: yes
15:40:25: * User clip planes: yes
15:40:25: * VET_UBYTE4 vertex element type: yes
15:40:25: * Infinite far plane projection: yes
15:40:25: * Hardware render-to-texture: yes
15:40:25: * Floating point textures: yes
15:40:25: * Non-power-of-two textures: yes
15:40:25: * 1d textures: yes
15:40:25: * Volume textures: yes
15:40:25: * Multiple Render Targets: 4
15:40:25: - With different bit depths: yes
15:40:25: * Point Sprites: yes
15:40:25: * Extended point parameters: yes
15:40:25: * Max Point Size: 8192
15:40:25: * Vertex texture fetch: yes
15:40:25: * Number of world matrices: 0
15:40:25: * Number of texture units: 8
15:40:25: * Stencil buffer depth: 8
15:40:25: * Number of vertex blend matrices: 0
15:40:25: - Max vertex textures: 4
15:40:25: - Vertex textures shared: no
15:40:25: * Render to Vertex Buffer : no
15:40:25: * Hardware Atomic Counters: no
15:40:25: * DirectX per stage constants: yes
15:40:25: ***************************************
15:40:25: *** D3D9 : Subsystem Initialised OK ***
15:40:25: ***************************************
15:40:25: DefaultWorkQueue('Root') initialising on thread d80.
15:40:25: DefaultWorkQueue('Root')::WorkerFunc - thread d74 starting.
15:40:25: DefaultWorkQueue('Root')::WorkerFunc - thread 1228 starting.
15:40:25: DefaultWorkQueue('Root')::WorkerFunc - thread e38 starting.
15:40:25: DefaultWorkQueue('Root')::WorkerFunc - thread 11f8 starting.
15:40:25: Particle Renderer Type 'billboard' registered
15:40:26: SceneManagerFactory for type 'BspSceneManager' registered.
15:40:26: Registering ResourceManager for type BspLevel
15:40:26: SceneManagerFactory for type 'PCZSceneManager' registered.
15:40:26: MovableObjectFactory for type 'PCZLight' registered.
15:40:26: MovableObjectFactory for type 'Portal' registered.
15:40:26: MovableObjectFactory for type 'AntiPortal' registered.
15:40:26: PCZone Factory Type 'ZoneType_Octree' registered
15:40:26: SceneManagerFactory for type 'OctreeSceneManager' registered.
15:40:26: OverlayElementFactory for type Panel registered.
15:40:26: OverlayElementFactory for type BorderPanel registered.
15:40:26: OverlayElementFactory for type TextArea registered.
15:40:26: Registering ResourceManager for type Font
15:40:26: Parsing scripts for resource group Autodetect
15:40:26: Finished parsing scripts for resource group Autodetect
15:40:26: Creating resources for group Autodetect
15:40:26: All done
15:40:26: Parsing scripts for resource group Essential
15:40:26: Parsing script SdkTrays.material
15:40:26: Parsing script OgreProfiler.material
15:40:26: Parsing script SdkTrays.fontdef
15:40:26: Parsing script SdkTrays.overlay
15:40:26: Texture: sdk_cursor.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) Internal format is PF_A8R8G8B8,32x32x1.
15:40:26: Texture: sdk_tray.png: Loading 1 faces(PF_A8R8G8B8,64x64x1) Internal format is PF_A8R8G8B8,64x64x1.
15:40:26: Texture: sdk_button_up.png: Loading 1 faces(PF_A8R8G8B8,128x32x1) Internal format is PF_A8R8G8B8,128x32x1.
15:40:26: Texture: sdk_text_box.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) Internal format is PF_A8R8G8B8,32x32x1.
15:40:26: Texture: sdk_mini_tray.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) Internal format is PF_A8R8G8B8,32x32x1.
15:40:26: Texture: sdk_track.png: Loading 1 faces(PF_A8R8G8B8,16x32x1) Internal format is PF_A8R8G8B8,16x32x1.
15:40:26: Texture: sdk_handle.png: Loading 1 faces(PF_A8R8G8B8,16x16x1) Internal format is PF_A8R8G8B8,16x16x1.
15:40:26: Texture: sdk_mini_text_box.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) Internal format is PF_A8R8G8B8,32x32x1.
15:40:26: Texture: sdk_label.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) Internal format is PF_A8R8G8B8,32x32x1.
15:40:26: Texture: sdk_separator.png: Loading 1 faces(PF_A8R8G8B8,64x16x1) Internal format is PF_A8R8G8B8,64x16x1.
15:40:26: Texture: sdk_logo.png: Loading 1 faces(PF_A8R8G8B8,128x64x1) Internal format is PF_A8R8G8B8,128x64x1.
15:40:26: Texture: sdk_shade.png: Loading 1 faces(PF_A8R8G8B8,64x48x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x48x1.
15:40:26: Texture: sdk_frame.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) Internal format is PF_A8R8G8B8,32x32x1.
15:40:26: Texture: sdk_mini_text_box_over.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) Internal format is PF_A8R8G8B8,32x32x1.
15:40:26: Texture: sdk_pulse.png: Loading 1 faces(PF_R8G8B8,8x1x1) Internal format is PF_X8R8G8B8,8x1x1.
15:40:26: Finished parsing scripts for resource group Essential
15:40:26: Creating resources for group Essential
15:40:26: All done
15:40:26: Parsing scripts for resource group General
15:40:26: Finished parsing scripts for resource group General
15:40:26: Creating resources for group General
15:40:26: All done
15:40:26: Parsing scripts for resource group Internal
15:40:26: Finished parsing scripts for resource group Internal
15:40:26: Creating resources for group Internal
15:40:26: All done
15:40:26: Parsing scripts for resource group Popular
15:40:26: Parsing script DualQuaternion.program
15:40:26: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:26: High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:26: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:26: Compiler error: invalid parameters in DualQuaternion.program(14): setting of constant failed
15:40:26: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:26: High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsTwoPhaseCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:26: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:26: Compiler error: invalid parameters in DualQuaternion.program(28): setting of constant failed
15:40:26: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:26: High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:26: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:26: Compiler error: invalid parameters in DualQuaternion.program(123): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in DualQuaternion.program(124): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in DualQuaternion.program(125): setting of constant failed
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsTwoPhaseShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in DualQuaternion.program(154): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in DualQuaternion.program(155): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in DualQuaternion.program(156): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in DualQuaternion.program(157): setting of constant failed
15:40:27: Parsing script Examples.program
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/BasicVertexPrograms/AmbientOneTextureCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(16): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(17): setting of constant failed
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/HardwareSkinningTwoWeightsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(293): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(294): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(295): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(296): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(297): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(298): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(299): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(300): setting of constant failed
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/HardwareSkinningFourWeights encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(314): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(315): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(316): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(317): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(318): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(319): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(320): setting of constant failed
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/HardwareMorphAnimationCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(334): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(335): setting of constant failed
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/HardwarePoseAnimationCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(383): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(384): setting of constant failed
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/HardwareMorphAnimationWithNormalsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(431): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(432): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(433): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(434): setting of constant failed
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/HardwarePoseAnimationWithNormalsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(484): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(485): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(486): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Examples.program(487): setting of constant failed
15:40:27: Parsing script Instancing.program
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource depthshadowobject.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/Instancing/shadow_caster_cg_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource depthshadowobject.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Instancing_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: High-level program Ogre/Instancing_cg_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Instancing_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Instancing.program(125): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Instancing.program(126): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:27: Compiler error: invalid parameters in Instancing.program(127): setting of constant failed
15:40:27: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in Instancing.program(128): setting of constant failed
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in Instancing.program(129): setting of constant failed
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in Instancing.program(130): setting of constant failed
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in Instancing.program(132): setting of constant failed
15:40:28: Parsing script StdQuad_vp.program
15:40:28: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: High-level program Ogre/Compositor/StdQuad_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in StdQuad_vp.program(9): setting of constant failed
15:40:28: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: High-level program Ogre/Compositor/StdQuad_Tex2_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in StdQuad_vp.program(21): setting of constant failed
15:40:28: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: High-level program Ogre/Compositor/StdQuad_Tex2a_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in StdQuad_vp.program(33): setting of constant failed
15:40:28: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: High-level program Ogre/Compositor/StdQuad_Tex3_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in StdQuad_vp.program(45): setting of constant failed
15:40:28: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: High-level program Ogre/Compositor/StdQuad_Tex4_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:28: Compiler error: invalid parameters in StdQuad_vp.program(57): setting of constant failed
15:40:28: Parsing script deferred_post.program
15:40:28: Parsing script ShadowCaster.program
15:40:28: Parsing script GBuffer.program
15:40:28: Parsing script triplanarReference.program
15:40:28: Parsing script AdaptivePNTrianglesTessellation.material
15:40:28: Parsing script ASCII.material
15:40:28: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ASCIIFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:28: High-level program Ogre/Compositor/ASCIIFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ASCIIFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in ASCII.material(9): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in ASCII.material(10): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in ASCII.material(11): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in ASCII.material(12): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in ASCII.material(13): setting of constant failed
15:40:29: Parsing script ASMSwizzle.material
15:40:29: Compiler error: object unsupported by render system in ASMSwizzle.material(1): , Shader name: Ogre/GPTest/Swizzle_GP_ASM
15:40:29: Parsing script BlackAndWhite.material
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GrayScale.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Ogre/Compositor/B&W_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GrayScale.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: Parsing script Bloom.material
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur0_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Blur0_ps20 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur0_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur0_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Blur0_vs11 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur0_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur1_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Blur1_ps20 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur1_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur1_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Blur1_vs11 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur1_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: Parsing script Bloom2.material
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BlurH_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program BlurH_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BlurH_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Blur_vs11_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BlurV_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program BlurV_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BlurV_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Bloom2_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Bloom2_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Bloom2_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in Bloom2.material(323): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in Bloom2.material(324): setting of constant failed
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BrightBloom2_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program BrightBloom2_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BrightBloom2_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: Parsing script CGSwizzle.material
15:40:29: Parsing script CompositorDemo.material
15:40:29: Parsing script DepthShadowmap.material
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Ogre/DepthShadowmap/CasterVP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(12): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(13): setting of constant failed
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Ogre/DepthShadowmap/CasterFP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Ogre/DepthShadowmap/ReceiverVP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(38): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(39): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(40): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(41): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(42): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(43): setting of constant failed
15:40:29: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: High-level program Ogre/DepthShadowmap/ReceiverFP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(58): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(59): setting of constant failed
15:40:29: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:29: Compiler error: invalid parameters in DepthShadowmap.material(60): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(61): setting of constant failed
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/DepthShadowmap/ReceiverFPPCF_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(75): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(76): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(77): setting of constant failed
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/DepthShadowmap/NormalMapReceiverVP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(88): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(89): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(90): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(91): setting of constant failed
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/DepthShadowmap/NormalMapReceiverFP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(105): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(106): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(107): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(108): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(109): setting of constant failed
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/DepthShadowmap/NormalMapReceiverFPPCF_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(122): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(123): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(124): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(125): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DepthShadowmap.material(126): setting of constant failed
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource PassthroughFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/BasicFragmentPrograms/PassthroughFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource PassthroughFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: Parsing script Dither.material
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DitherFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/Compositor/Dither_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DitherFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: Parsing script DOF.material
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DOF_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program DOF_Blur_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DOF_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DOF_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program DOF_Blend_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DOF_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: Parsing script DualQuaternion.material
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/HardwareSkinningTwoWeightsShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DualQuaternion.material(43): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DualQuaternion.material(44): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DualQuaternion.material(45): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DualQuaternion.material(69): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DualQuaternion.material(70): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in DualQuaternion.material(71): setting of constant failed
15:40:30: Parsing script Embossed.material
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GrayScale.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/Compositor/Embossed_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GrayScale.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: Parsing script Example-Water.material
15:40:30: Parsing script Examples-Advanced.material
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_CelShading.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/CelShadingVPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_CelShading.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in Examples-Advanced.material(12): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in Examples-Advanced.material(13): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in Examples-Advanced.material(14): setting of constant failed
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in Examples-Advanced.material(15): setting of constant failed
15:40:30: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_CelShading.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: High-level program Ogre/CelShadingFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_CelShading.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:30: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:30: Compiler error: invalid parameters in Examples-Advanced.material(102): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(104): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/BumpMapVPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/BumpMapFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/BumpMapVPShadowRcvCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/BumpMapFPShadowRcvCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/BumpMapVPSpecularCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(492): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(493): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(494): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/BumpMapFPSpecularCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(500): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(501): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/BumpMapVPTangentParityCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(530): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(531): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Projection.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/TexProjectionVP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Projection.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Projection.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/TexProjectionFP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Projection.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Fresnel.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/FresnelRefractReflectVPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Fresnel.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(691): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(692): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(693): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(694): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(695): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(696): setting of constant failed
15:40:31: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Fresnel.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: High-level program Examples/FresnelRefractReflectFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Fresnel.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(701): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(702): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(703): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(704): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(705): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
15:40:31: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:31: Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(492): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(493): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(494): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(500): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-Advanced.material(501): setting of constant failed
15:40:32: Compiler error: object unsupported by render system in Examples-Advanced.material(938): , Shader name: Examples/TextureArrayPSasm
15:40:32: Parsing script Examples-DynTex.material
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Dyn-Text.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Ogre/Dyn_Text_VS_CG encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Dyn-Text.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples-DynTex.material(9): setting of constant failed
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Dyn-Text.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Ogre/Dyn_Text_PS_CG encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Dyn-Text.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: Parsing script Examples-Water.material
15:40:32: Parsing script Examples.material
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Examples/MorningSkyBoxHDRfpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Examples/MorningCubeMapHDRfp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Ogre/HardwareSkinningOneWeight encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Ogre/HardwareSkinningOneWeightShadowCaster encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Examples/GrassWaverVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(844): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(848): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(849): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(850): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(852): setting of constant failed
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Examples/GrassWaverTexVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(864): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(865): setting of constant failed
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Examples/GrassWaverAmbientVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(876): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(877): setting of constant failed
15:40:32: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:32: Compiler error: invalid parameters in Examples.material(878): setting of constant failed
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: High-level program Examples/GrassWaverAmbientFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:32: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/GrassWaverFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/GrassWaverCasterVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(908): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(909): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(910): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/GrassWaverCasterFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/GrassWaverReceiverVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(931): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(932): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(933): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(935): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(937): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(938): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(940): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/GrassWaverReceiverFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(954): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(955): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(956): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/BasicFragmentPrograms/DiffuseOneTextureCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(1968): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(1969): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(1970): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/ShowTangents_vCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(2094): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/ShowNormals_vCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Examples.material(2144): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/ShowUV_pCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Examples/ShowUVdir3D_pCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: Parsing script facial.material
15:40:33: Parsing script Glass.material
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GlassFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/Compositor/GlassFP_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GlassFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: Parsing script GLSLSwizzle.material
15:40:33: Parsing script Halftone.material
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HalftoneFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/Compositor/HalftoneFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HalftoneFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Halftone.material(9): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Halftone.material(10): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Halftone.material(11): setting of constant failed
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in Halftone.material(12): setting of constant failed
15:40:33: Parsing script hdr.material
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/Compositor/HDR/downscale2x2LuminenceHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in hdr.material(40): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/Compositor/HDR/downscale3x3HLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in hdr.material(109): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/Compositor/HDR/downscale3x3brightpassHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:33: Compiler error: invalid parameters in hdr.material(188): setting of constant failed
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/Compositor/HDR/bloomHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: High-level program Ogre/Compositor/HDR/finaltonemappingHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:33: Parsing script HeatVision.material
15:40:33: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: High-level program Fury/HeatVision/HeatCaster_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:34: Compiler error: invalid parameters in HeatVision.material(81): setting of constant failed
15:40:34: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:34: Compiler error: invalid parameters in HeatVision.material(82): setting of constant failed
15:40:34: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: High-level program Fury/HeatVision/HeatCaster_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: High-level program Fury/HeatVision/ColdCaster_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:34: Compiler error: invalid parameters in HeatVision.material(172): setting of constant failed
15:40:34: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:34: Compiler error: invalid parameters in HeatVision.material(173): setting of constant failed
15:40:34: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: High-level program Fury/HeatVision/ColdCaster_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: High-level program Fury/HeatVision/LightToHeat_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)
15:40:34: Compiler error: invalid parameters in HeatVision.material(196): setting of constant failed
15:40:34: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: High-level program Fury/HeatVision/LightToHeat_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
15:40:34: OGRE EXCEPTION(2:InvalidParametersException): Named constants have not been initialised, perhaps a compile error. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1709)