Compositors work for SampleBrowser, not project

Problems building or running the engine, queries about how to use features etc.
Post Reply
crvogt
Bronze Sponsor
Bronze Sponsor
Posts: 12
Joined: Mon Dec 21, 2020 11:03 am
x 1

Compositors work for SampleBrowser, not project

Post by crvogt »

Ogre Version: :1.9.1:
Operating System: :Ubuntu 20.04:
Render System: :OpenGL Rendering Subsystem:

I've had this issue using both 1.9.1 and 1.12.1, where I am unable to use some compositors in my own build, but they seem to work fine in the SampleBrowser. I assume this is caused by my build not having the correct resources path? With 1.9.1 I have yet to get any of the compositors working with a project, instead receiving the error below. With 1.12.1 I can use some but not all compositors demonstrated in the SampleBrowser. I'm sure I just missed a path, but I'd appreciate another pair of eyes.

Primary Error:

Code: Select all

WARNING: material Ogre/Compositor/SharpenEdges has no supportable Techniques and will be blank. Explanation: 
Pass 0: Vertex program Ogre/Compositor/StdQuad_Tex2a_vp cannot be used - not supported.
resources.cfg

Code: Select all

# Resources required by the sample browser and most samples.
[Essential]
Zip=/home/carson/libs/ogre/Samples/Media/packs/SdkTrays.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/profiler.zip
FileSystem=/home/carson/libs/ogre/Samples/Media/thumbnails

# Common sample resources needed by many of the samples.
# Rarely used resources should be separately loaded by the
# samples which require them.
[Popular]
FileSystem=/home/carson/libs/ogre/Samples/Media/fonts
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/programs
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/scripts
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/textures
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/textures/nvidia
FileSystem=/home/carson/libs/ogre/Samples/Media/models
FileSystem=/home/carson/libs/ogre/Samples/Media/particle
FileSystem=/home/carson/libs/ogre/Samples/Media/DeferredShadingMedia
FileSystem=/home/carson/libs/ogre/Samples/Media/PCZAppMedia
FileSystem=/home/carson/libs/ogre/Samples/Media/RTShaderLib
FileSystem=/home/carson/libs/ogre/Samples/Media/RTShaderLib/materials
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/scripts/SSAO
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/textures/SSAO
FileSystem=/home/carson/libs/ogre/Samples/Media/volumeTerrain

FileSystem=/usr/local/share/OGRE/Media/materials/programs/GLSL
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/programs/HLSL_Cg

Zip=/home/carson/libs/ogre/Samples/Media/packs/cubemap.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/cubemapsJS.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/dragon.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/fresneldemo.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/ogretestmap.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/ogredance.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/Sinbad.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/skybox.zip
Zip=/home/carson/libs/ogre/Samples/Media/volumeTerrain/volumeTerrainBig.zip

[General]
FileSystem=/home/carson/libs/ogre/Samples/Media

# Materials for visual tests
[Tests]
FileSystem=/home/carson/libs/ogre/Tests/Media

plugins.cfg

Code: Select all

# Defines plugins to load

# Define plugin folder
PluginFolder=/home/carson/libs/ogre/build/lib

# Define plugins
# Plugin=RenderSystem_Direct3D9
# Plugin=RenderSystem_Direct3D11
 Plugin=RenderSystem_GL
# Plugin=RenderSystem_GL3Plus
# Plugin=RenderSystem_GLES
# Plugin=RenderSystem_GLES2
 Plugin=Plugin_ParticleFX
 Plugin=Plugin_BSPSceneManager
 Plugin=Plugin_CgProgramManager
 Plugin=Plugin_PCZSceneManager
 Plugin=Plugin_OctreeZone
 Plugin=Plugin_OctreeSceneManager
paroj
OGRE Team Member
OGRE Team Member
Posts: 1994
Joined: Sun Mar 30, 2014 2:51 pm
x 1074
Contact:

Re: Compositors work for SampleBrowser, not project

Post by paroj »

crvogt wrote: Wed Feb 24, 2021 1:16 pm resources.cfg
this is the resources.cfg for 1.9 - in 1.12 everything is put into the [General] group.

This is likely the issue, as the [Popular] group cannot reference any other groups in 1.12, while [General] can.

The Compositors that dont work in 1.12/GL are likely the ones requiring Cg shaders. Probably these are not found. Note that 1.12/GL3Plus does not require any Cg shaders.
crvogt
Bronze Sponsor
Bronze Sponsor
Posts: 12
Joined: Mon Dec 21, 2020 11:03 am
x 1

Re: Compositors work for SampleBrowser, not project

Post by crvogt »

Thank you for the reply!

Sorry, I don't think I organized that question well. Let me split it a bit. I'm using 1.9.1 and 1.12.11 on separate systems, both Ubuntu 20.04.

-------------------------------------------------------------------------------------------------------------------------------------------------------
1.9.1
SampleBrowser displays working compositors, such as "Bloom".

In my project build, no compositors work and I get the following when applying "Bloom"

Code: Select all

WARNING: material Ogre/Compositor/BrightPass2 has no supportable Techniques and will be blank. Explanation: 
Pass 0: Vertex program Ogre/Compositor/StdQuad_Tex2a_vp cannot be used - not supported.
My resources.cfg

Code: Select all

# Resources required by the sample browser and most samples.
[Essential]
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/SdkTrays.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/profiler.zip
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/thumbnails

# Common sample resources needed by many of the samples.
# Rarely used resources should be separately loaded by the
# samples which require them.
[Popular]
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/fonts
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/materials/programs
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/materials/scripts
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/materials/textures
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/materials/textures/nvidia
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/models
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/particle
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/DeferredShadingMedia
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/PCZAppMedia
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/RTShaderLib
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/RTShaderLib/materials
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/materials/scripts/SSAO
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/materials/textures/SSAO
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media/volumeTerrain

FileSystem=/usr/local/share/OGRE/Media/materials/programs/HLSL_Cg
FileSystem=/usr/local/share/OGRE/Media/materials/programs/GLSL

Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/cubemap.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/cubemapsJS.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/dragon.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/fresneldemo.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/ogretestmap.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/ogredance.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/Sinbad.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/packs/skybox.zip
Zip=/home/carson/libs/ogre_1.9/Samples/Media/volumeTerrain/volumeTerrainBig.zip

[General]
FileSystem=/home/carson/libs/ogre_1.9/Samples/Media

# Materials for visual tests
[Tests]
FileSystem=/home/carson/libs/ogre_1.9/Tests/Media
and plugins.cfg

Code: Select all

# Defines plugins to load

# Define plugin folder
PluginFolder=/home/carson/libs/ogre_1.9/build/lib

# Define plugins
# Plugin=RenderSystem_Direct3D9
# Plugin=RenderSystem_Direct3D11
 Plugin=RenderSystem_GL
# Plugin=RenderSystem_GL3Plus
# Plugin=RenderSystem_GLES
# Plugin=RenderSystem_GLES2
 Plugin=Plugin_ParticleFX
 Plugin=Plugin_BSPSceneManager
 Plugin=Plugin_CgProgramManager
 Plugin=Plugin_PCZSceneManager
 Plugin=Plugin_OctreeZone
 Plugin=Plugin_OctreeSceneManager
----------------------------------------------------------------------------------------------------------------------------------------------------
1.12.11

SampleBrowser shows many compositors working, such as "Heat Vision". In my build, only some of the compositors that work in SampleBrowser actually work. Ie. "Bloom" works for both, but "Heat Vision" only works in the SampleBrowser and I get the following error

Code: Select all

Program 'Ogre/GPTest/Swizzle/GP_GLSL_150' is not supported: 'SwizzleGP.glsl' 0:11(12): warning: extension `GL_EXT_geometry_shader4' unsupported in geometry shader
0:11(1): error: #extension directive is not allowed in the middle of a shader
which I suspect is based on the rendering system, but none of the choices given in the startup screen allow this compositor to show, even though I see it working in the SampleBrowser.

resources.cfg

Code: Select all

# Ogre Core Resources
[OgreInternal]
FileSystem=/home/carson/libs/ogre/Media/ShadowVolume
FileSystem=/home/carson/libs/ogre/Media/RTShaderLib/materials
FileSystem=/home/carson/libs/ogre/Media/RTShaderLib/GLSL
FileSystem=/home/carson/libs/ogre/Media/RTShaderLib/HLSL_Cg
FileSystem=/home/carson/libs/ogre/Media/Terrain/

# Resources required by the sample browser and most samples.
[Essential]
Zip=/home/carson/libs/ogre/Media/packs/SdkTrays.zip
Zip=/home/carson/libs/ogre/Media/packs/profiler.zip
FileSystem=/home/carson/libs/ogre/Samples/Media/thumbnails

# Common sample resources needed by many of the samples.
# Rarely used resources should be separately loaded by the
# samples which require them.
[General]
# Bites uses the next entry to discover the platform shaders
FileSystem=/home/carson/libs/ogre/Samples/Media

# PBR media must come before the scripts that reference it
FileSystem=/home/carson/libs/ogre/Samples/Media/PBR
FileSystem=/home/carson/libs/ogre/Samples/Media/PBR/filament
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/textures/PBR

FileSystem=/home/carson/libs/ogre/Samples/Media/fonts
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/programs
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/scripts
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/textures
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/textures/terrain
FileSystem=/home/carson/libs/ogre/Samples/Media/models
FileSystem=/home/carson/libs/ogre/Samples/Media/particle
FileSystem=/home/carson/libs/ogre/Samples/Media/DeferredShadingMedia
FileSystem=/home/carson/libs/ogre/Samples/Media/DeferredShadingMedia/DeferredShading/post
FileSystem=/home/carson/libs/ogre/Samples/Media/PCZAppMedia
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/scripts/SSAO
FileSystem=/home/carson/libs/ogre/Samples/Media/materials/textures/SSAO
FileSystem=/home/carson/libs/ogre/Samples/Media/volumeTerrain
FileSystem=/home/carson/libs/ogre/Samples/Media/CSMShadows
Zip=/home/carson/libs/ogre/Samples/Media/packs/cubemap.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/cubemapsJS.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/dragon.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/fresneldemo.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/ogretestmap.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/ogredance.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/Sinbad.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/skybox.zip
Zip=/home/carson/libs/ogre/Samples/Media/volumeTerrain/volumeTerrainBig.zip

Zip=/home/carson/libs/ogre/Samples/Media/packs/DamagedHelmet.zip
Zip=/home/carson/libs/ogre/Samples/Media/packs/filament_shaders.zip

FileSystem=/home/carson/libs/ogre/Media/HLMS

[BSPWorld]
Zip=/home/carson/libs/ogre/Samples/Media/packs/oa_rpg3dm2.pk3

# Materials for visual tests
[Tests]
FileSystem=/home/carson/libs/ogre/Tests/Media

Sorry, a bit long-winded, but I suspect the issues are related and have to do with correct paths,
paroj
OGRE Team Member
OGRE Team Member
Posts: 1994
Joined: Sun Mar 30, 2014 2:51 pm
x 1074
Contact:

Re: Compositors work for SampleBrowser, not project

Post by paroj »

can you attach the full Ogre.log for 1.12? Also try commenting out the Cg plugin.
crvogt
Bronze Sponsor
Bronze Sponsor
Posts: 12
Joined: Mon Dec 21, 2020 11:03 am
x 1

Re: Compositors work for SampleBrowser, not project

Post by crvogt »

Sure!
1.12.11 ogre.log with "Heat Vision" compositor

Code: Select all

21:58:28: Creating resource group General
21:58:28: Creating resource group OgreInternal
21:58:28: Creating resource group OgreAutodetect
21:58:28: SceneManagerFactory for type 'DefaultSceneManager' registered.
21:58:28: Registering ResourceManager for type Material
21:58:28: Registering ResourceManager for type Mesh
21:58:28: Registering ResourceManager for type Skeleton
21:58:28: MovableObjectFactory for type 'ParticleSystem' registered.
21:58:28: ArchiveFactory for archive type FileSystem registered.
21:58:28: ArchiveFactory for archive type Zip registered.
21:58:28: ArchiveFactory for archive type EmbeddedZip registered.
21:58:28: DDS codec registering
21:58:28: ETC codec registering
21:58:28: ASTC codec registering
21:58:28: Registering ResourceManager for type HighLevelGpuProgram
21:58:28: Registering ResourceManager for type Compositor
21:58:28: MovableObjectFactory for type 'Entity' registered.
21:58:28: MovableObjectFactory for type 'Light' registered.
21:58:28: MovableObjectFactory for type 'BillboardSet' registered.
21:58:28: MovableObjectFactory for type 'ManualObject' registered.
21:58:28: MovableObjectFactory for type 'BillboardChain' registered.
21:58:28: MovableObjectFactory for type 'RibbonTrail' registered.
21:58:28: Loading library /usr/local/lib/OGRE/RenderSystem_GL.so.1.12.11
21:58:28: Installing plugin: GL RenderSystem
21:58:28: OpenGL Rendering Subsystem created.
21:58:28: Plugin successfully installed
21:58:28: Loading library /usr/local/lib/OGRE/RenderSystem_GL3Plus.so.1.12.11
21:58:28: Installing plugin: GL 3+ RenderSystem
21:58:28: OpenGL 3+ Rendering Subsystem created.
21:58:29: Plugin successfully installed
21:58:29: Loading library /usr/local/lib/OGRE/RenderSystem_GLES2.so.1.12.11
21:58:29: Installing plugin: OpenGL ES 2.0 RenderSystem
21:58:29: OpenGL ES 2.x Rendering Subsystem created.
21:58:29: Plugin successfully installed
21:58:29: Loading library /usr/local/lib/OGRE/Plugin_ParticleFX.so.1.12.11
21:58:29: Installing plugin: ParticleFX
21:58:29: Particle Emitter Type 'Point' registered
21:58:29: Particle Emitter Type 'Box' registered
21:58:29: Particle Emitter Type 'Ellipsoid' registered
21:58:29: Particle Emitter Type 'Cylinder' registered
21:58:29: Particle Emitter Type 'Ring' registered
21:58:29: Particle Emitter Type 'HollowEllipsoid' registered
21:58:29: Particle Affector Type 'LinearForce' registered
21:58:29: Particle Affector Type 'ColourFader' registered
21:58:29: Particle Affector Type 'ColourFader2' registered
21:58:29: Particle Affector Type 'ColourImage' registered
21:58:29: Particle Affector Type 'ColourInterpolator' registered
21:58:29: Particle Affector Type 'Scaler' registered
21:58:29: Particle Affector Type 'Rotator' registered
21:58:29: Particle Affector Type 'DirectionRandomiser' registered
21:58:29: Particle Affector Type 'DeflectorPlane' registered
21:58:29: Particle Affector Type 'TextureAnimator' registered
21:58:29: Plugin successfully installed
21:58:29: Loading library /usr/local/lib/OGRE/Plugin_BSPSceneManager.so.1.12.11
21:58:29: Installing plugin: BSP Scene Manager
21:58:29: Plugin successfully installed
21:58:29: Loading library /usr/local/lib/OGRE/Plugin_CgProgramManager.so.1.12.11
21:58:30: Installing plugin: Cg Program Manager
21:58:30: Plugin successfully installed
21:58:30: Loading library /usr/local/lib/OGRE/Codec_STBI.so.1.12.11
21:58:30: stb_image - v2.23 - public domain image loader
21:58:30: Supported formats: jpeg,jpg,png,bmp,psd,tga,gif,pic,ppm,pgm,hdr
21:58:30: Loading library /usr/local/lib/OGRE/Plugin_PCZSceneManager.so.1.12.11
21:58:30: Installing plugin: Portal Connected Zone Scene Manager
21:58:30: PCZone Factory Type 'ZoneType_Default' registered
21:58:30: Plugin successfully installed
21:58:30: Loading library /usr/local/lib/OGRE/Plugin_OctreeZone.so.1.12.11
21:58:30: Installing plugin: Octree Zone Factory
21:58:30: Plugin successfully installed
21:58:30: Loading library /usr/local/lib/OGRE/Plugin_OctreeSceneManager.so.1.12.11
21:58:30: Installing plugin: Octree Scene Manager
21:58:30: Plugin successfully installed
21:58:30: Loading library /usr/local/lib/OGRE/Plugin_DotScene.so.1.12.11
21:58:30: Installing plugin: DotScene Loader
21:58:30: Plugin successfully installed
21:58:30: *-*-* OGRE Initialising
21:58:30: *-*-* Version 1.12.11 (Rhagorthua)
21:58:30: OverlayElementFactory for type Panel registered.
21:58:30: OverlayElementFactory for type BorderPanel registered.
21:58:30: OverlayElementFactory for type TextArea registered.
21:58:30: Registering ResourceManager for type Font
21:58:30: CPU Identifier & Features
21:58:30: -------------------------
21:58:30:  *   CPU ID: GenuineIntel: Intel(R) Core(TM) i5-7600 CPU @ 3.50GHz
21:58:30:  *          SSE: yes
21:58:30:  *         SSE2: yes
21:58:30:  *         SSE3: yes
21:58:30:  *        SSE41: yes
21:58:30:  *        SSE42: yes
21:58:30:  *          MMX: yes
21:58:30:  *       MMXEXT: yes
21:58:30:  *        3DNOW: no
21:58:30:  *     3DNOWEXT: no
21:58:30:  *         CMOV: yes
21:58:30:  *          TSC: yes
21:58:30:  *INVARIANT TSC: yes
21:58:30:  *          FPU: yes
21:58:30:  *          PRO: yes
21:58:30:  *           HT: no
21:58:30: -------------------------
21:58:30: ******************************
*** Starting GLX Subsystem ***
******************************
21:58:30: GLX_VERSION = 1.4
21:58:30: GLX_EXTENSIONS = GLX_ARB_context_flush_control GLX_ARB_create_context GLX_ARB_create_context_no_error GLX_ARB_create_context_profile GLX_ARB_create_context_robustness GLX_ARB_fbconfig_float GLX_ARB_framebuffer_sRGB GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_buffer_age GLX_EXT_create_context_es2_profile GLX_EXT_create_context_es_profile GLX_EXT_fbconfig_packed_float GLX_EXT_framebuffer_sRGB GLX_EXT_import_context GLX_EXT_texture_from_pixmap GLX_EXT_visual_info GLX_EXT_visual_rating GLX_INTEL_swap_event GLX_MESA_copy_sub_buffer GLX_MESA_multithread_makecurrent GLX_MESA_query_renderer GLX_MESA_swap_control GLX_OML_swap_method GLX_OML_sync_control GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGIX_visual_select_group GLX_SGI_make_current_read GLX_SGI_swap_control GLX_SGI_video_sync 
21:58:31: RenderSystem::_createRenderWindow "OgreTutorialApp", 320x180 windowed  miscParams: FSAA=0 displayFrequency=N/A gamma=No parentWindowHandle=62914574 sdlwin=94087791797920 vsync=Yes vsyncInterval=1 
21:58:31: GLXWindow::create colourBufferSize=32 gamma=0 FSAA=0
21:58:31: GLXWindow::create used FBConfigID = 313
21:58:31: GL_VERSION = 4.3.0.0
21:58:31: GL_VENDOR = nouveau
21:58:31: GL_RENDERER = NV120
21:58:31: GL_EXTENSIONS = GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_gpu_shader_int64 GL_AMD_multi_draw_indirect GL_AMD_performance_monitor GL_AMD_query_buffer_object GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_viewport_index GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_ES2_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_bindless_texture GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader_int64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_post_depth_coverage GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_locations GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_ballot GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shader_viewport_layer_array GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map_array GL_ARB_texture_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ATI_blend_equation_separate GL_ATI_texture_float GL_ATI_texture_mirror_once GL_EXT_EGL_image_storage GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_demote_to_helper_invocation GL_EXT_depth_bounds_test GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_shader_image_load_store GL_EXT_shader_integer_mix GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_mirror_clamp GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_shadow_lod GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_EXT_window_rectangles GL_IBM_multimode_draw_arrays GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_framebuffer_flip_y GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_NV_conditional_render GL_NV_conservative_raster GL_NV_conservative_raster_dilate GL_NV_copy_image GL_NV_depth_clamp GL_NV_fill_rectangle GL_NV_packed_depth_stencil GL_NV_sample_locations GL_NV_texture_barrier GL_NV_vdpau_interop GL_NV_viewport_array2 GL_NV_viewport_swizzle GL_OES_EGL_image GL_S3_s3tc 
21:58:31: **************************************
21:58:31: ***   OpenGL 3+ Renderer Started   ***
21:58:31: **************************************
21:58:31: Registering ResourceManager for type GpuProgram
21:58:31: FBO PF_UNKNOWN depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_L8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_L16 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_A8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_BYTE_LA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R5G6B5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_B5G6R5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_A4R4G4B4 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_A1R5G5B5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_B8G8R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_A8R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_A8B8G8R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_B8G8R8A8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_A2R10G10B10 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_A2B10G10R10 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT16_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT16_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT32_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT32_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_X8R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_X8B8G8R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8A8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_DEPTH16 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_SHORT_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R3G3B2 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT16_R depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT32_R depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_SHORT_GR depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT16_GR depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_FLOAT32_GR depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_SHORT_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R11G11B10_FLOAT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8A8_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16B16_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16B16A16_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32G32_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32G32B32_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32G32B32A32_UINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8A8_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16B16_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16B16A16_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32G32_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32G32B32_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R32G32B32A32_SINT depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R9G9B9E5_SHAREDEXP depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R8G8B8A8_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16B16_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_R16G16B16A16_SNORM depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_DEPTH32 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: FBO PF_DEPTH32F depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D16S1 D16S4 D16S8 D16S16 D24S0 D24S1 D24S4 D24S8 D24S16 D32S0 D32S1 D32S4 D32S8 D32S16 D32S0 D32S1 D32S4 D32S8 D32S16 Packed-D24S8 Packed-D32S8 
21:58:31: [GL] : Valid FBO targets PF_UNKNOWN PF_L8 PF_L16 PF_A8 PF_BYTE_LA PF_R5G6B5 PF_B5G6R5 PF_A4R4G4B4 PF_A1R5G5B5 PF_R8G8B8 PF_B8G8R8 PF_A8R8G8B8 PF_A8B8G8R8 PF_B8G8R8A8 PF_A2R10G10B10 PF_A2B10G10R10 PF_FLOAT16_RGB PF_FLOAT16_RGBA PF_FLOAT32_RGB PF_FLOAT32_RGBA PF_X8R8G8B8 PF_X8B8G8R8 PF_R8G8B8A8 PF_DEPTH16 PF_SHORT_RGBA PF_R3G3B2 PF_FLOAT16_R PF_FLOAT32_R PF_SHORT_GR PF_FLOAT16_GR PF_FLOAT32_GR PF_SHORT_RGB PF_R11G11B10_FLOAT PF_R8_UINT PF_R8G8_UINT PF_R8G8B8_UINT PF_R8G8B8A8_UINT PF_R16_UINT PF_R16G16_UINT PF_R16G16B16_UINT PF_R16G16B16A16_UINT PF_R32_UINT PF_R32G32_UINT PF_R32G32B32_UINT PF_R32G32B32A32_UINT PF_R8_SINT PF_R8G8_SINT PF_R8G8B8_SINT PF_R8G8B8A8_SINT PF_R16_SINT PF_R16G16_SINT PF_R16G16B16_SINT PF_R16G16B16A16_SINT PF_R32_SINT PF_R32G32_SINT PF_R32G32B32_SINT PF_R32G32B32A32_SINT PF_R9G9B9E5_SHAREDEXP PF_R8 PF_R8G8 PF_R8_SNORM PF_R8G8_SNORM PF_R8G8B8_SNORM PF_R8G8B8A8_SNORM PF_R16_SNORM PF_R16G16_SNORM PF_R16G16B16_SNORM PF_R16G16B16A16_SNORM PF_DEPTH32 PF_DEPTH32F 
21:58:31: Registering ResourceManager for type Texture
21:58:31: RenderSystem capabilities
21:58:31: -------------------------
21:58:31: RenderSystem Name: OpenGL 3+ Rendering Subsystem
21:58:31: GPU Vendor: unknown
21:58:31: Device Name: NV120
21:58:31: Driver Version: 4.3.0.0
21:58:31:  * Fixed function pipeline: no
21:58:31:  * 32-bit index buffers: yes
21:58:31:  * Hardware stencil buffer: yes
21:58:31:    - Stencil depth: 8
21:58:31:    - Two sided stencil support: yes
21:58:31:    - Wrap stencil values: yes
21:58:31:  * Vertex programs: yes
21:58:31:    - Number of floating-point constants: 16384
21:58:31:    - Number of integer constants: 16384
21:58:31:    - Number of boolean constants: 16384
21:58:31:  * Fragment programs: yes
21:58:31:    - Number of floating-point constants: 16384
21:58:31:    - Number of integer constants: 16384
21:58:31:    - Number of boolean constants: 16384
21:58:31:  * Geometry programs: yes
21:58:31:    - Number of floating-point constants: 16384
21:58:31:    - Number of integer constants: 16384
21:58:31:    - Number of boolean constants: 16384
21:58:31:  * Tessellation Hull programs: yes
21:58:31:    - Number of floating-point constants: 16384
21:58:31:    - Number of integer constants: 16384
21:58:31:    - Number of boolean constants: 16384
21:58:31:  * Tessellation Domain programs: yes
21:58:31:    - Number of floating-point constants: 16384
21:58:31:    - Number of integer constants: 16384
21:58:31:    - Number of boolean constants: 16384
21:58:31:  * Compute programs: yes
21:58:31:    - Number of floating-point constants: 16384
21:58:31:    - Number of integer constants: 16384
21:58:31:    - Number of boolean constants: 16384
21:58:31:  * Supported Shader Profiles: glsl glsl130 glsl140 glsl150 glsl330 glsl400 glsl410 glsl420 glsl430
21:58:31:  * Read-back compiled shader: yes
21:58:31:  * Number of vertex attributes: 16
21:58:31:  * Textures
21:58:31:    - Number of texture units: 16
21:58:31:    - Floating point: yes
21:58:31:    - Non-power-of-two: yes
21:58:31:    - 1D textures: yes
21:58:31:    - 2D array textures: yes
21:58:31:    - 3D textures: yes
21:58:31:    - Anisotropic filtering: yes
21:58:31:  * Texture Compression: yes
21:58:31:    - DXT: yes
21:58:31:    - VTC: no
21:58:31:    - PVRTC: no
21:58:31:    - ATC: no
21:58:31:    - ETC1: no
21:58:31:    - ETC2: yes
21:58:31:    - BC4/BC5: yes
21:58:31:    - BC6H/BC7: yes
21:58:31:    - ASTC: yes
21:58:31:    - Mipmaps for compressed formats: yes
21:58:31:  * Vertex Buffers
21:58:31:    - VET_UBYTE4 element type: yes
21:58:31:    - Render to Vertex Buffer: yes
21:58:31:    - Instance Data: yes
21:58:31:    - Primitive Restart: yes
21:58:31:  * Vertex texture fetch: yes
21:58:31:    - Max vertex textures: 16
21:58:31:    - Vertex textures shared: yes
21:58:31:  * Read/Write Buffers: yes
21:58:31:  * Hardware Occlusion Query: yes
21:58:31:  * User clip planes: yes
21:58:31:  * Infinite far plane projection: yes
21:58:31:  * Depth clamping: yes
21:58:31:  * Hardware render-to-texture: yes
21:58:31:    - Multiple Render Targets: 8
21:58:31:    - With different bit depths: yes
21:58:31:  * Point Sprites: yes
21:58:31:    - Extended parameters: yes
21:58:31:    - Max Size: 63.375
21:58:31:  * Wide Lines: yes
21:58:31:  * Hardware Gamma: yes
21:58:31:  * PBuffer support: no
21:58:31:  * Vertex Array Objects: yes
21:58:31:  * Separate shader objects: no
21:58:31:    - redeclare GLSL interface block: no
21:58:31:  * Debugging/ profiling events: yes
21:58:31:  * Map buffer storage: yes
21:58:31: DefaultWorkQueue('Root') initialising on thread 139793248746688.
21:58:31: DefaultWorkQueue('Root')::WorkerFunc - thread 139792995628800 starting.
21:58:31: DefaultWorkQueue('Root')::WorkerFunc - thread 139792987236096 starting.
21:58:31: Particle Renderer Type 'billboard' registered
21:58:31: SceneManagerFactory for type 'BspSceneManager' registered.
21:58:31: SceneManagerFactory for type 'PCZSceneManager' registered.
21:58:31: MovableObjectFactory for type 'PCZLight' registered.
21:58:31: MovableObjectFactory for type 'Portal' registered.
21:58:31: MovableObjectFactory for type 'AntiPortal' registered.
21:58:31: PCZone Factory Type 'ZoneType_Octree' registered
21:58:31: SceneManagerFactory for type 'OctreeSceneManager' registered.
21:58:31: Creating resource group BSPWorld
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/oa_rpg3dm2.pk3' of type 'Zip' to resource group 'BSPWorld'
21:58:31: Creating resource group Essential
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/thumbnails' of type 'FileSystem' to resource group 'Essential'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/packs/SdkTrays.zip' of type 'Zip' to resource group 'Essential'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/packs/profiler.zip' of type 'Zip' to resource group 'Essential'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/PBR' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/PBR/filament' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/textures/PBR' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/fonts' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/programs' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/scripts' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/textures' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/textures/terrain' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/models' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/particle' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/DeferredShadingMedia' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/DeferredShadingMedia/DeferredShading/post' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/PCZAppMedia' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/scripts/SSAO' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/textures/SSAO' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/volumeTerrain' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/CSMShadows' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/HLMS' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/cubemap.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/dragon.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/fresneldemo.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/ogretestmap.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/ogredance.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/Sinbad.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/skybox.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/volumeTerrain/volumeTerrainBig.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/DamagedHelmet.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/packs/filament_shaders.zip' of type 'Zip' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/ShadowVolume' of type 'FileSystem' to resource group 'OgreInternal'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/RTShaderLib/materials' of type 'FileSystem' to resource group 'OgreInternal'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/RTShaderLib/GLSL' of type 'FileSystem' to resource group 'OgreInternal'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/RTShaderLib/HLSL_Cg' of type 'FileSystem' to resource group 'OgreInternal'
21:58:31: Added resource location '/home/carson/libs/ogre/Media/Terrain/' of type 'FileSystem' to resource group 'OgreInternal'
21:58:31: Creating resource group Tests
21:58:31: Added resource location '/home/carson/libs/ogre/Tests/Media' of type 'FileSystem' to resource group 'Tests'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/programs/GLSL' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/programs/GLSL120' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/programs/GLSL150' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/programs/GLSL400' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/programs/Cg' of type 'FileSystem' to resource group 'General'
21:58:31: Added resource location '/home/carson/libs/ogre/Samples/Media/materials/programs/HLSL_Cg' of type 'FileSystem' to resource group 'General'
21:58:32: Parsing scripts for resource group BSPWorld
21:58:32: Parsing script scripts/clown.shader
21:58:32: Parsing script scripts/liquid_water.shader
21:58:32: Parsing script scripts/oalite.shader
21:58:32: Parsing script scripts/oanew.shader
21:58:32: Parsing script scripts/oasky.shader
21:58:32: Finished parsing scripts for resource group BSPWorld
21:58:32: Creating resources for group BSPWorld
21:58:32: All done
21:58:32: Parsing scripts for resource group Essential
21:58:32: Parsing script SdkTrays.material
21:58:32: Parsing script OgreProfiler.material
21:58:32: Parsing script SdkTrays.fontdef
21:58:32: Parsing script SdkTrays.overlay
21:58:32: Texture 'sdk_cursor.png': Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
21:58:32: Texture 'sdk_tray.png': Loading 1 faces(PF_A8B8G8R8,64x64x1) with 6 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,64x64x1.
21:58:32: Texture 'sdk_button_up.png': Loading 1 faces(PF_A8B8G8R8,128x32x1) with 7 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,128x32x1.
21:58:32: Texture 'sdk_text_box.png': Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
21:58:32: Texture 'sdk_mini_tray.png': Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
21:58:32: Texture 'sdk_track.png': Loading 1 faces(PF_A8B8G8R8,16x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,16x32x1.
21:58:32: Texture 'sdk_handle.png': Loading 1 faces(PF_A8B8G8R8,16x16x1) with 4 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,16x16x1.
21:58:32: Texture 'sdk_mini_text_box.png': Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
21:58:32: Texture 'sdk_label.png': Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
21:58:32: Texture 'sdk_separator.png': Loading 1 faces(PF_A8B8G8R8,64x16x1) with 6 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,64x16x1.
21:58:32: Texture 'sdk_logo.png': Loading 1 faces(PF_A8B8G8R8,128x64x1) with 7 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,128x64x1.
21:58:32: Texture 'sdk_shade.png': Loading 1 faces(PF_A8B8G8R8,64x48x1) with 6 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,64x48x1.
21:58:32: Texture 'sdk_frame.png': Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
21:58:32: Texture 'sdk_mini_text_box_over.png': Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
21:58:32: Texture 'sdk_pulse.png': Loading 1 faces(PF_B8G8R8,8x1x1) with 3 hardware generated mipmaps from Image. Internal format is PF_B8G8R8,8x1x1.
21:58:32: Finished parsing scripts for resource group Essential
21:58:32: Creating resources for group Essential
21:58:32: All done
21:58:32: Parsing scripts for resource group General
21:58:32: Parsing script pbr.program
21:58:32: Parsing script pbr_filament.program
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(21): Parameter called objectUniforms.worldFromModelMatrix does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(32): Parameter called frameUniforms.clipFromWorldMatrix does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(66): Parameter called frameUniforms.iblMaxMipLevel does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(67): Parameter called frameUniforms.iblLuminance does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(71): Parameter called frameUniforms.exposure does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(81): Parameter called frameUniforms.ev100 does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(83): Parameter called frameUniforms.cameraPosition does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(94): Parameter called light_ssao does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(95): Parameter called frameUniforms.viewportWidth does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(96): Parameter called frameUniforms.viewportHeight does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(66): Parameter called frameUniforms.iblMaxMipLevel does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(67): Parameter called frameUniforms.iblLuminance does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(71): Parameter called frameUniforms.exposure does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(81): Parameter called frameUniforms.ev100 does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(83): Parameter called frameUniforms.cameraPosition does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(66): Parameter called frameUniforms.iblMaxMipLevel does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(67): Parameter called frameUniforms.iblLuminance does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(71): Parameter called frameUniforms.exposure does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(81): Parameter called frameUniforms.ev100 does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(83): Parameter called frameUniforms.cameraPosition does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(95): Parameter called frameUniforms.viewportWidth does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(96): Parameter called frameUniforms.viewportHeight does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(66): Parameter called frameUniforms.iblMaxMipLevel does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(67): Parameter called frameUniforms.iblLuminance does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(71): Parameter called frameUniforms.exposure does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(81): Parameter called frameUniforms.ev100 does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(83): Parameter called frameUniforms.cameraPosition does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(95): Parameter called frameUniforms.viewportWidth does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(96): Parameter called frameUniforms.viewportHeight does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(148): Parameter called frameUniforms.iblMaxMipLevel does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(149): Parameter called frameUniforms.iblLuminance does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(153): Parameter called frameUniforms.exposure does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(163): Parameter called frameUniforms.ev100 does not exist. 
21:58:32: Error: ScriptCompiler - invalid parameters in pbr_filament.program(164): Parameter called frameUniforms.cameraPosition does not exist. 
21:58:32: Parsing script Examples.program
21:58:32: Parsing script StdQuad_vp.program
21:58:32: Parsing script Instancing.program
21:58:32: Parsing script deferred_post.program
21:58:32: Parsing script ShadowCaster.program
21:58:32: Parsing script glTF2_PBR.material
21:58:32: Parsing script filament.material
21:58:32: Parsing script DepthShadowmap.material
21:58:32: Parsing script Ocean.material
21:58:32: Parsing script ASCII.material
21:58:32: Parsing script FluidSim.material
21:58:32: Parsing script Hair.material
21:58:32: Parsing script Examples-DynTex.material
21:58:32: Parsing script MRTtest.material
21:58:32: Parsing script ShaderInstancing.material
21:58:32: Parsing script sibenik.material
21:58:32: Parsing script LigthShafts.material
21:58:32: Parsing script HW_VTF_LUTInstancing.material
21:58:33: Parsing script facial.material
21:58:33: Parsing script TerrainTessellation.material
21:58:33: Parsing script Examples-Water.material
21:58:33: Parsing script Examples.material
21:58:33: Parsing script IsoSurf.material
21:58:33: Parsing script VarianceShadowmap.material
21:58:33: Parsing script Swizzle.material
21:58:33: Error: ScriptCompiler - invalid parameters in Swizzle.material(31): input_operation_type
21:58:33: Error: ScriptCompiler - invalid parameters in Swizzle.material(32): output_operation_type
21:58:33: Error: ScriptCompiler - invalid parameters in Swizzle.material(33): max_output_vertices
21:58:33: Program 'Ogre/GPTest/Swizzle/GP_GLSL_150' is not supported: 'SwizzleGP.glsl' 0:11(12): warning: extension `GL_EXT_geometry_shader4' unsupported in geometry shader
0:11(1): error: #extension directive is not allowed in the middle of a shader
21:58:33: Error: ScriptCompiler - invalid parameters in Swizzle.material(68): Named constants have not been initialised, perhaps a compile error
21:58:33: Error: ScriptCompiler - invalid parameters in Swizzle.material(69): Named constants have not been initialised, perhaps a compile error
21:58:33: Parsing script ParticleGS.material
21:58:33: Parsing script DualQuaternion.material
21:58:33: Parsing script HWInstancing.material
21:58:33: Parsing script Tiling.material
21:58:33: Parsing script DOF.material
21:58:33: Parsing script Halftone.material
21:58:33: Parsing script ShaderSystem.material
21:58:33: Parsing script Tessellation.material
21:58:33: Parsing script Dither.material
21:58:33: Parsing script Compute.material
21:58:33: Parsing script SharpenEdges.material
21:58:33: Parsing script smoke.material
21:58:33: Parsing script RadialBlur.material
21:58:33: Parsing script RasterizationOrder.material
21:58:33: Parsing script MotionBlur.material
21:58:33: Parsing script DamagedHelmet.material
21:58:33: Parsing script VTFInstancing.material
21:58:33: Parsing script OffsetMapping.material
21:58:33: Parsing script Ogre.material
21:58:33: Parsing script AdaptivePNTrianglesTessellation.material
21:58:33: Parsing script HW_VTFInstancing.material
21:58:33: Parsing script RZR-002.material
21:58:33: Parsing script NightVision.material
21:58:33: Parsing script pssm.material
21:58:33: Parsing script Bloom2.material
21:58:33: Parsing script Invert.material
21:58:33: Parsing script OldTV.material
21:58:33: Parsing script Embossed.material
21:58:33: Parsing script CompositorDemo.material
21:58:33: Parsing script HeatVision.material
21:58:33: Parsing script Island.material
21:58:33: Parsing script OldMovie.material
21:58:33: Parsing script Hurt.material
21:58:33: Parsing script Glass.material
21:58:33: Parsing script hdr.material
21:58:33: Parsing script Posterize.material
21:58:33: Parsing script BlackAndWhite.material
21:58:33: Parsing script Laplace.material
21:58:33: Parsing script Penguin.material
21:58:33: Parsing script Examples-Advanced.material
21:58:33: Parsing script ShadowCaster.material
21:58:33: Parsing script deferred_post.material
21:58:33: Parsing script deferreddemo.material
21:58:33: Parsing script deferred_post_minilight.material
21:58:33: Parsing script ssao.material
21:58:33: Parsing script ROOM.material
21:58:33: Parsing script ShowNormals.material
21:58:33: Parsing script SSAOPost.material
21:58:34: Parsing script ShowViewPos.material
21:58:34: Parsing script Volumetric.material
21:58:34: Parsing script GBuffer.material
21:58:34: Parsing script UnsharpMask.material
21:58:34: Parsing script ShowDepth.material
21:58:34: Parsing script Crytek.material
21:58:34: Parsing script HemisphereMC.material
21:58:34: Parsing script HorizonBased.material
21:58:34: Parsing script Modulate.material
21:58:34: Parsing script CreaseShading.material
21:58:34: Parsing script triplanarReference.material
21:58:34: Parsing script CSMShadows.material
21:58:34: Parsing script RomanBath.material
21:58:34: Parsing script Sinbad.material
21:58:34: Parsing script smoke.particle
21:58:34: Parsing script emitted_emitter.particle
21:58:34: Parsing script Examples-Water.particle
21:58:34: Parsing script Examples.particle
21:58:34: Parsing script Examples.compositor
21:58:34: Parsing script deferred.compositor
21:58:34: Parsing script ssao.compositor
21:58:34: Parsing script SSAOPost.compositor
21:58:34: Parsing script SSAO.compositor
21:58:34: Finished parsing scripts for resource group General
21:58:34: Creating resources for group General
21:58:34: All done
21:58:34: Parsing scripts for resource group OgreAutodetect
21:58:34: Finished parsing scripts for resource group OgreAutodetect
21:58:34: Creating resources for group OgreAutodetect
21:58:34: All done
21:58:34: Parsing scripts for resource group OgreInternal
21:58:34: Parsing script ShadowVolumeExtude.program
21:58:34: Parsing script HardwareSkinningShadow.material
21:58:34: Parsing script DualQuaternionSkinning_Shadow.material
21:58:34: Parsing script RTShaderSystem.material
21:58:34: Parsing script TriplanarTexturing.material
21:58:34: Finished parsing scripts for resource group OgreInternal
21:58:34: Creating resources for group OgreInternal
21:58:34: All done
21:58:34: Parsing scripts for resource group Tests
21:58:34: Parsing script glow.material
21:58:34: Parsing script BillboardText.fontdef
21:58:34: Finished parsing scripts for resource group Tests
21:58:34: Creating resources for group Tests
21:58:34: All done
21:58:34: Texture 'BumpyMetal.jpg': Loading 1 faces(PF_B8G8R8,512x512x1) with 9 hardware generated mipmaps from Image. Internal format is PF_B8G8R8,512x512x1.
21:58:34: Mesh: Loading ogrehead.mesh.
21:58:34: Texture 'GreenSkin.jpg': Loading 1 faces(PF_B8G8R8,256x256x1) with 8 hardware generated mipmaps from Image. Internal format is PF_B8G8R8,256x256x1.
21:58:34: Texture 'spheremap.png': Loading 1 faces(PF_B8G8R8,256x256x1) with 8 hardware generated mipmaps from Image. Internal format is PF_B8G8R8,256x256x1.
21:58:34: Texture 'tusk.jpg': Loading 1 faces(PF_B8G8R8,128x128x1) with 7 hardware generated mipmaps from Image. Internal format is PF_B8G8R8,128x128x1.
21:58:52: Unregistering ResourceManager for type Font
21:58:52: DefaultWorkQueue('Root') shutting down on thread 139793248746688.
21:58:52: DefaultWorkQueue('Root')::WorkerFunc - thread 139792995628800 stopped.
21:58:52: DefaultWorkQueue('Root')::WorkerFunc - thread 139792987236096 stopped.
21:58:52: PCZone Factory Type 'ZoneType_Octree' unregistered
21:58:52: *-*-* OGRE Shutdown
21:58:52: Unregistering ResourceManager for type Compositor
21:58:52: Uninstalling plugin: DotScene Loader
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/Plugin_DotScene
21:58:52: Uninstalling plugin: Octree Scene Manager
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/Plugin_OctreeSceneManager
21:58:52: Uninstalling plugin: Octree Zone Factory
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/Plugin_OctreeZone
21:58:52: Uninstalling plugin: Portal Connected Zone Scene Manager
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/Plugin_PCZSceneManager
21:58:52: Unloading library /usr/local/lib/OGRE/Codec_STBI
21:58:52: Uninstalling plugin: Cg Program Manager
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/Plugin_CgProgramManager
21:58:52: Uninstalling plugin: BSP Scene Manager
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/Plugin_BSPSceneManager
21:58:52: Uninstalling plugin: ParticleFX
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/Plugin_ParticleFX
21:58:52: Uninstalling plugin: OpenGL ES 2.0 RenderSystem
21:58:52: ******************************
*** Stopping GLX Subsystem ***
******************************
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/RenderSystem_GLES2
21:58:52: Uninstalling plugin: GL 3+ RenderSystem
21:58:52: Unregistering ResourceManager for type GpuProgram
21:58:52: Unregistering ResourceManager for type Texture
21:58:52: ******************************
*** Stopping GLX Subsystem ***
******************************
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/RenderSystem_GL3Plus
21:58:52: Uninstalling plugin: GL RenderSystem
21:58:52: ******************************
*** Stopping GLX Subsystem ***
******************************
21:58:52: Plugin successfully uninstalled
21:58:52: Unloading library /usr/local/lib/OGRE/RenderSystem_GL
21:58:52: Unregistering ResourceManager for type Skeleton
21:58:52: Unregistering ResourceManager for type Mesh
21:58:52: Unregistering ResourceManager for type HighLevelGpuProgram
21:58:52: Unregistering ResourceManager for type Material
-------------------------------------------------------------------------------------------------------

1.9.1 I commented out

Code: Select all

Plugin=Plugin_CgProgramManager
and the output doesn't seem to have changed

Code: Select all

Pass 0: Vertex program Ogre/Compositor/StdQuad_Tex2a_vp cannot be used - not supported.
paroj
OGRE Team Member
OGRE Team Member
Posts: 1994
Joined: Sun Mar 30, 2014 2:51 pm
x 1074
Contact:

Re: Compositors work for SampleBrowser, not project

Post by paroj »

crvogt wrote: Wed Feb 24, 2021 11:17 pm Sure!
1.12.11 ogre.log with "Heat Vision" compositor
you are using GL3+ there which does not load Cg shaders by default.

The resource locations look fine though. Maybe you are missing the RTSS registration as shown here:
https://github.com/OGRECave/ogre/blob/b ... pp#L47-L49
crvogt
Bronze Sponsor
Bronze Sponsor
Posts: 12
Joined: Mon Dec 21, 2020 11:03 am
x 1

Re: Compositors work for SampleBrowser, not project

Post by crvogt »

With 1.9.1, would I also need to register with RTSS?
a la

Code: Select all

Ogre::RTShader::ShaderGenerator* shaderGen = Ogre::RTShader::ShaderGenerator::getSingletonPtr();
shaderGen->addSceneManager(mSceneMgr);
paroj
OGRE Team Member
OGRE Team Member
Posts: 1994
Joined: Sun Mar 30, 2014 2:51 pm
x 1074
Contact:

Re: Compositors work for SampleBrowser, not project

Post by paroj »

only if you are using a renderer without a FFP support (GLES2/ GL3+). But on the other hand, if the renderer has FFP support, the RTSS will be inactive - so you can register the scene unconditionally.
Post Reply