1 | // Copyright (C) 2012-2015 ChaosForge Ltd
|
---|
2 | // http://chaosforge.org/
|
---|
3 | //
|
---|
4 | // This file is part of Nova libraries.
|
---|
5 | // For conditions of distribution and use, see copying.txt file in root folder.
|
---|
6 |
|
---|
7 | #include "nv/gl/gl_device.hh"
|
---|
8 |
|
---|
9 | #include "nv/gl/gl_window.hh"
|
---|
10 | #include "nv/core/logging.hh"
|
---|
11 | #include "nv/lib/sdl_image.hh"
|
---|
12 | #include "nv/gl/gl_enum.hh"
|
---|
13 | #include "nv/lib/gl.hh"
|
---|
14 |
|
---|
15 | using namespace nv;
|
---|
16 |
|
---|
17 | gl_device::gl_device()
|
---|
18 | {
|
---|
19 | m_shader_header.append( "#version 330\n" );
|
---|
20 | for ( auto& i : get_uniform_factory() )
|
---|
21 | m_shader_header.append( "uniform "+datatype_to_glsl_type( i.second->get_datatype() )+" "+ i.first +";\n" );
|
---|
22 | for ( auto& i : get_link_uniform_factory() )
|
---|
23 | m_shader_header.append( "uniform sampler2D "+i.first +";\n" );
|
---|
24 | }
|
---|
25 |
|
---|
26 | program gl_device::create_program( string_view vs_source, string_view fs_source )
|
---|
27 | {
|
---|
28 | program result = m_programs.create();
|
---|
29 | gl_program_info* info = m_programs.get( result );
|
---|
30 |
|
---|
31 | info->m_attribute_map = new attribute_map;
|
---|
32 | info->m_engine_uniforms = new engine_uniform_list;
|
---|
33 | info->m_uniform_map = new uniform_map;
|
---|
34 |
|
---|
35 | info->glid = glCreateProgram();
|
---|
36 | compile( info, vs_source, fs_source );
|
---|
37 | prepare_program( result );
|
---|
38 | return result;
|
---|
39 | }
|
---|
40 |
|
---|
41 | // this is a temporary function that will be removed once we find a way to
|
---|
42 | // pass binary file data around
|
---|
43 | image_data* gl_device::create_image_data( string_view filename )
|
---|
44 | {
|
---|
45 | load_sdl_image_library();
|
---|
46 | SDL_Surface* image = IMG_Load( filename.data() );
|
---|
47 | if (!image)
|
---|
48 | {
|
---|
49 | NV_LOG_ERROR( "Image file ", filename, " not found!" );
|
---|
50 | return nullptr;
|
---|
51 | }
|
---|
52 | // TODO: BGR vs RGB, single channel
|
---|
53 | pixel_format pformat = RGBA;
|
---|
54 | switch ( image->format->BytesPerPixel )
|
---|
55 | {
|
---|
56 | case 4: pformat = RGBA; break;
|
---|
57 | case 3: pformat = RGB; break;
|
---|
58 | case 1: pformat = RED; break;
|
---|
59 | default: NV_ASSERT( false, "BytesPerPixel != 4,3 or 1!" );
|
---|
60 | }
|
---|
61 | image_format format( pformat, UBYTE );
|
---|
62 | image_data* data = new image_data( format, ivec2( image->w, image->h ), static_cast<nv::uint8*>( image->pixels ) );
|
---|
63 | return data;
|
---|
64 | }
|
---|
65 |
|
---|
66 | // this is a temporary function that will be removed once we find a way to
|
---|
67 | // pass binary file data around
|
---|
68 | image_data* gl_device::create_image_data( const uint8* data, uint32 size )
|
---|
69 | {
|
---|
70 | load_sdl_image_library();
|
---|
71 | SDL_Surface* image = IMG_LoadTyped_RW( SDL_RWFromMem( const_cast<uint8*>( data ), int( size ) ), 1, "png" );
|
---|
72 | if ( !image )
|
---|
73 | {
|
---|
74 | NV_LOG_ERROR( "Image binary data cannot be loaded found!" );
|
---|
75 | return nullptr;
|
---|
76 | }
|
---|
77 | // TODO: BGR vs RGB, single channel
|
---|
78 | NV_ASSERT( image->format->BytesPerPixel > 2, "bytes per pixel > 2!" );
|
---|
79 | image_format format( image->format->BytesPerPixel == 3 ? RGB : RGBA, UBYTE );
|
---|
80 | image_data* idata = new image_data( format, ivec2( image->w, image->h ), static_cast<nv::uint8*>( image->pixels ) );
|
---|
81 | return idata;
|
---|
82 | }
|
---|
83 |
|
---|
84 |
|
---|
85 | gl_device::~gl_device()
|
---|
86 | {
|
---|
87 | while ( m_textures.size() > 0 )
|
---|
88 | release( m_textures.get_handle(0) );
|
---|
89 | while ( m_buffers.size() > 0 )
|
---|
90 | release( m_buffers.get_handle(0) );
|
---|
91 | while ( m_programs.size() > 0 )
|
---|
92 | release( m_programs.get_handle(0) );
|
---|
93 | }
|
---|
94 |
|
---|
95 | nv::texture nv::gl_device::create_texture( texture_type type, ivec2 size, image_format aformat, sampler asampler, const void* data /*= nullptr */ )
|
---|
96 | {
|
---|
97 | NV_ASSERT_ALWAYS( type != TEXTURE_3D && type != TEXTURE_2D_ARRAY, "2D texture type expected!" );
|
---|
98 | unsigned glid = 0;
|
---|
99 | unsigned gl_type = texture_type_to_enum( type );
|
---|
100 |
|
---|
101 | bool is_depth = aformat.format == DEPTH16 || aformat.format == DEPTH24 || aformat.format == DEPTH32;
|
---|
102 |
|
---|
103 | glGenTextures( 1, &glid );
|
---|
104 |
|
---|
105 | glBindTexture( gl_type, glid );
|
---|
106 |
|
---|
107 | // Detect if mipmapping was requested
|
---|
108 | if ( gl_type == GL_TEXTURE_2D && asampler.filter_min != sampler::LINEAR && asampler.filter_min != sampler::NEAREST )
|
---|
109 | {
|
---|
110 | // TODO: This should not be done if we use framebuffers!
|
---|
111 | glTexParameteri( gl_type, GL_GENERATE_MIPMAP, GL_TRUE);
|
---|
112 | }
|
---|
113 |
|
---|
114 | if ( asampler.filter_max != sampler::NEAREST )
|
---|
115 | {
|
---|
116 | asampler.filter_max = sampler::LINEAR;
|
---|
117 | }
|
---|
118 |
|
---|
119 | glTexParameteri( gl_type, GL_TEXTURE_MIN_FILTER, GLint( nv::sampler_filter_to_enum( asampler.filter_min ) ) );
|
---|
120 | glTexParameteri( gl_type, GL_TEXTURE_MAG_FILTER, GLint( nv::sampler_filter_to_enum( asampler.filter_max ) ) );
|
---|
121 | glTexParameteri( gl_type, GL_TEXTURE_WRAP_S, GLint( nv::sampler_wrap_to_enum( asampler.wrap_s) ) );
|
---|
122 | glTexParameteri( gl_type, GL_TEXTURE_WRAP_T, GLint( nv::sampler_wrap_to_enum( asampler.wrap_t) ) );
|
---|
123 |
|
---|
124 | if ( is_depth )
|
---|
125 | {
|
---|
126 | glTexParameteri( gl_type, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
|
---|
127 | glTexParameteri( gl_type, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
|
---|
128 |
|
---|
129 | // This is to allow usage of shadow2DProj function in the shader
|
---|
130 | glTexParameteri( gl_type, GL_TEXTURE_COMPARE_MODE, GL_COMPARE_REF_TO_TEXTURE );
|
---|
131 | glTexParameteri( gl_type, GL_TEXTURE_COMPARE_FUNC, GL_LEQUAL );
|
---|
132 | }
|
---|
133 |
|
---|
134 | // #define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE
|
---|
135 | // #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
|
---|
136 | //
|
---|
137 | // float aniso = 0.0f;
|
---|
138 | // glGetFloatv( GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &aniso );
|
---|
139 | // NV_LOG_INFO( "Anisotropy at ", aniso, " (", int( aniso ), " ) " );
|
---|
140 | // glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, aniso );
|
---|
141 |
|
---|
142 | glTexImage2D( gl_type, 0, GLint( nv::image_format_to_internal_enum(aformat.format) ), size.x, size.y, 0, nv::image_format_to_enum(aformat.format), nv::datatype_to_gl_enum(aformat.type), data );
|
---|
143 |
|
---|
144 | glBindTexture( gl_type, 0 );
|
---|
145 |
|
---|
146 | texture result = m_textures.create();
|
---|
147 | gl_texture_info* info = m_textures.get( result );
|
---|
148 | info->type = type;
|
---|
149 | info->format = aformat;
|
---|
150 | info->tsampler = asampler;
|
---|
151 | info->size = ivec3( size.x, size.y, 1 );
|
---|
152 | info->glid = glid;
|
---|
153 | return result;
|
---|
154 | }
|
---|
155 |
|
---|
156 | nv::texture nv::gl_device::create_texture( texture_type type, ivec3 size, image_format aformat, sampler asampler, const void* data /*= nullptr */ )
|
---|
157 | {
|
---|
158 | NV_ASSERT_ALWAYS( type == TEXTURE_3D || type == TEXTURE_2D_ARRAY, "3D texture type expected!" );
|
---|
159 | unsigned glid = 0;
|
---|
160 | unsigned gl_type = texture_type_to_enum( type );
|
---|
161 |
|
---|
162 | bool is_depth = aformat.format == DEPTH16 || aformat.format == DEPTH24 || aformat.format == DEPTH32;
|
---|
163 |
|
---|
164 | glGenTextures( 1, &glid );
|
---|
165 | glBindTexture( gl_type, glid );
|
---|
166 |
|
---|
167 | if ( asampler.filter_max != sampler::NEAREST )
|
---|
168 | {
|
---|
169 | asampler.filter_max = sampler::LINEAR;
|
---|
170 | }
|
---|
171 |
|
---|
172 | glTexParameteri( gl_type, GL_TEXTURE_MIN_FILTER, GLint( nv::sampler_filter_to_enum( asampler.filter_min ) ) );
|
---|
173 | glTexParameteri( gl_type, GL_TEXTURE_MAG_FILTER, GLint( nv::sampler_filter_to_enum( asampler.filter_max ) ) );
|
---|
174 | glTexParameteri( gl_type, GL_TEXTURE_WRAP_S, GLint( nv::sampler_wrap_to_enum( asampler.wrap_s ) ) );
|
---|
175 | glTexParameteri( gl_type, GL_TEXTURE_WRAP_T, GLint( nv::sampler_wrap_to_enum( asampler.wrap_t ) ) );
|
---|
176 |
|
---|
177 | if ( is_depth )
|
---|
178 | {
|
---|
179 | glTexParameteri( gl_type, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
|
---|
180 | glTexParameteri( gl_type, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
|
---|
181 |
|
---|
182 | // This is to allow usage of shadow2DProj function in the shader
|
---|
183 | glTexParameteri( gl_type, GL_TEXTURE_COMPARE_MODE, GL_COMPARE_REF_TO_TEXTURE );
|
---|
184 | glTexParameteri( gl_type, GL_TEXTURE_COMPARE_FUNC, GL_LEQUAL );
|
---|
185 | }
|
---|
186 |
|
---|
187 | //glTexStorage3D( GL_TEXTURE_2D_ARRAY, mipLevelCount, GL_RGBA8, width, height, layerCount );
|
---|
188 | glTexImage3D( gl_type, 0, GLint( nv::image_format_to_internal_enum( aformat.format ) ), size.x, size.y, size.z, 0, nv::image_format_to_enum( aformat.format ), nv::datatype_to_gl_enum( aformat.type ), data );
|
---|
189 | glBindTexture( gl_type, 0 );
|
---|
190 |
|
---|
191 | texture result = m_textures.create();
|
---|
192 | gl_texture_info* info = m_textures.get( result );
|
---|
193 | info->type = type;
|
---|
194 | info->format = aformat;
|
---|
195 | info->tsampler = asampler;
|
---|
196 | info->size = size;
|
---|
197 | info->glid = glid;
|
---|
198 | return result;
|
---|
199 | }
|
---|
200 |
|
---|
201 |
|
---|
202 |
|
---|
203 | void nv::gl_device::release( texture t )
|
---|
204 | {
|
---|
205 | gl_texture_info* info = m_textures.get( t );
|
---|
206 | if ( info )
|
---|
207 | {
|
---|
208 | if ( info->glid != 0 )
|
---|
209 | {
|
---|
210 | glDeleteTextures( 1, &(info->glid) );
|
---|
211 | }
|
---|
212 | m_textures.destroy( t );
|
---|
213 | }
|
---|
214 | }
|
---|
215 |
|
---|
216 | void nv::gl_device::release( buffer b )
|
---|
217 | {
|
---|
218 | gl_buffer_info* info = m_buffers.get( b );
|
---|
219 | if ( info )
|
---|
220 | {
|
---|
221 | if ( info->glid != 0 )
|
---|
222 | {
|
---|
223 | glDeleteBuffers( 1, &(info->glid) );
|
---|
224 | }
|
---|
225 | m_buffers.destroy( b );
|
---|
226 | }
|
---|
227 | }
|
---|
228 |
|
---|
229 | const texture_info* nv::gl_device::get_texture_info( texture t ) const
|
---|
230 | {
|
---|
231 | return m_textures.get( t );
|
---|
232 | }
|
---|
233 |
|
---|
234 | nv::buffer nv::gl_device::create_buffer( buffer_type type, buffer_hint hint, size_t size, const void* source /*= nullptr */ )
|
---|
235 | {
|
---|
236 | unsigned glid = 0;
|
---|
237 | unsigned glenum = buffer_type_to_enum( type );
|
---|
238 | glGenBuffers( 1, &glid );
|
---|
239 |
|
---|
240 | glBindBuffer( glenum, glid );
|
---|
241 | glBufferData( glenum, GLsizeiptr( size ), source, buffer_hint_to_enum( hint ) );
|
---|
242 | glBindBuffer( glenum, 0 );
|
---|
243 |
|
---|
244 | buffer result = m_buffers.create();
|
---|
245 | gl_buffer_info* info = m_buffers.get( result );
|
---|
246 | info->type = type;
|
---|
247 | info->hint = hint;
|
---|
248 | info->size = size;
|
---|
249 | info->glid = glid;
|
---|
250 | return result;
|
---|
251 | }
|
---|
252 |
|
---|
253 | const buffer_info* nv::gl_device::get_buffer_info( buffer t ) const
|
---|
254 | {
|
---|
255 | return m_buffers.get( t );
|
---|
256 | }
|
---|
257 |
|
---|
258 | void nv::gl_device::release( program p )
|
---|
259 | {
|
---|
260 | gl_program_info* info = m_programs.get( p );
|
---|
261 | if ( info )
|
---|
262 | {
|
---|
263 | for ( auto& i : *info->m_uniform_map )
|
---|
264 | delete i.second;
|
---|
265 |
|
---|
266 | glDetachShader( info->glid, info->glidv );
|
---|
267 | glDetachShader( info->glid, info->glidf );
|
---|
268 | glDeleteShader( info->glidv );
|
---|
269 | glDeleteShader( info->glidf );
|
---|
270 | glDeleteProgram( info->glid );
|
---|
271 |
|
---|
272 | delete info->m_attribute_map;
|
---|
273 | delete info->m_engine_uniforms;
|
---|
274 | delete info->m_uniform_map;
|
---|
275 |
|
---|
276 | m_programs.destroy( p );
|
---|
277 | }
|
---|
278 | }
|
---|
279 |
|
---|
280 | void nv::gl_device::prepare_program( program p )
|
---|
281 | {
|
---|
282 | gl_program_info* info = m_programs.get( p );
|
---|
283 | if ( info )
|
---|
284 | {
|
---|
285 | auto& map = get_uniform_factory();
|
---|
286 | auto& lmap = get_link_uniform_factory();
|
---|
287 |
|
---|
288 | for ( auto& i : *info->m_uniform_map )
|
---|
289 | {
|
---|
290 | auto j = lmap.find( i.first );
|
---|
291 | if ( j != lmap.end() )
|
---|
292 | {
|
---|
293 | j->second->set( i.second );
|
---|
294 | }
|
---|
295 |
|
---|
296 | auto k = map.find( i.first );
|
---|
297 | if ( k != map.end() )
|
---|
298 | {
|
---|
299 | info->m_engine_uniforms->push_back( k->second->create( i.second ) );
|
---|
300 | }
|
---|
301 | }
|
---|
302 | }
|
---|
303 | }
|
---|
304 |
|
---|
305 | uniform_base* nv::gl_device::get_uniform( program p, const string_view& name, bool fatal /*= true */ ) const
|
---|
306 | {
|
---|
307 | const gl_program_info* info = m_programs.get( p );
|
---|
308 | {
|
---|
309 | nv::uniform_map::const_iterator i = info->m_uniform_map->find( name );
|
---|
310 | if ( i != info->m_uniform_map->end() )
|
---|
311 | {
|
---|
312 | return i->second;
|
---|
313 | }
|
---|
314 | if ( fatal )
|
---|
315 | {
|
---|
316 | NV_LOG_CRITICAL( "gl_device : uniform '", name, "' not found in program!" );
|
---|
317 | NV_ABORT( "gl_device : uniform not found!" );
|
---|
318 | }
|
---|
319 | }
|
---|
320 | return nullptr;
|
---|
321 | }
|
---|
322 |
|
---|
323 | int nv::gl_device::get_attribute_location( program p, const string_view& name, bool fatal /*= true */ ) const
|
---|
324 | {
|
---|
325 | const gl_program_info* info = m_programs.get( p );
|
---|
326 | if ( info )
|
---|
327 | {
|
---|
328 | attribute_map::const_iterator i = info->m_attribute_map->find( name );
|
---|
329 | if ( i != info->m_attribute_map->end() )
|
---|
330 | {
|
---|
331 | return i->second.location;
|
---|
332 | }
|
---|
333 | if ( fatal )
|
---|
334 | {
|
---|
335 | NV_LOG_CRITICAL( "gl_device : attribute '", name, "' not found in program!" );
|
---|
336 | NV_ABORT( "gl_device : attribute not found!" );
|
---|
337 | }
|
---|
338 | }
|
---|
339 | return -1;
|
---|
340 | }
|
---|
341 |
|
---|
342 | bool nv::gl_device::bind_block( program p, const string_view& name, uint32 index )
|
---|
343 | {
|
---|
344 | const gl_program_info* info = m_programs.get( p );
|
---|
345 | if ( info )
|
---|
346 | {
|
---|
347 | int id = get_block_location( p, name, false );
|
---|
348 | if ( id < 0 ) return false;
|
---|
349 | glUniformBlockBinding( info->glid, unsigned( id ), index );
|
---|
350 | return true;
|
---|
351 | }
|
---|
352 | return false;
|
---|
353 | }
|
---|
354 |
|
---|
355 | int nv::gl_device::get_block_location( program p, const string_view& name, bool fatal /*= true */ ) const
|
---|
356 | {
|
---|
357 | const gl_program_info* info = m_programs.get( p );
|
---|
358 | if ( info )
|
---|
359 | {
|
---|
360 | int result = glGetUniformBlockIndex( info->glid, name.data() );
|
---|
361 | if ( result >= 0 ) return result;
|
---|
362 | if ( fatal )
|
---|
363 | {
|
---|
364 | NV_LOG_CRITICAL( "gl_device : block '", name, "' not found in program!" );
|
---|
365 | NV_ABORT( "gl_device : block not found!" );
|
---|
366 | }
|
---|
367 | }
|
---|
368 | return -1;
|
---|
369 | }
|
---|
370 |
|
---|
371 | bool nv::gl_device::compile( gl_program_info* p, string_view vertex_program, string_view fragment_program )
|
---|
372 | {
|
---|
373 | if (!compile( GL_VERTEX_SHADER, vertex_program, p->glidv )) { return false; }
|
---|
374 | if (!compile( GL_FRAGMENT_SHADER, fragment_program, p->glidf )) { return false; }
|
---|
375 |
|
---|
376 | glBindAttribLocation( p->glid, static_cast<GLuint>( slot::POSITION ), "nv_position" );
|
---|
377 | glBindAttribLocation( p->glid, static_cast<GLuint>( slot::TEXCOORD ), "nv_texcoord" );
|
---|
378 | glBindAttribLocation( p->glid, static_cast<GLuint>( slot::NORMAL ), "nv_normal" );
|
---|
379 | glBindAttribLocation( p->glid, static_cast<GLuint>( slot::COLOR ), "nv_color" );
|
---|
380 | glBindAttribLocation( p->glid, static_cast<GLuint>( slot::TANGENT ), "nv_tangent" );
|
---|
381 | glBindAttribLocation( p->glid, static_cast<GLuint>( slot::BONEINDEX ), "nv_boneindex" );
|
---|
382 | glBindAttribLocation( p->glid, static_cast<GLuint>( slot::BONEWEIGHT ), "nv_boneweight");
|
---|
383 |
|
---|
384 | glAttachShader( p->glid, p->glidf );
|
---|
385 | glAttachShader( p->glid, p->glidv );
|
---|
386 | glLinkProgram( p->glid );
|
---|
387 |
|
---|
388 | const uint32 buffer_size = 2048;
|
---|
389 | char buffer[ buffer_size ] = { 0 };
|
---|
390 | int length;
|
---|
391 | int status;
|
---|
392 |
|
---|
393 | glGetProgramiv( p->glid, GL_LINK_STATUS, &status );
|
---|
394 | glGetProgramInfoLog( p->glid, buffer_size, &length, buffer );
|
---|
395 |
|
---|
396 | NV_LOG_INFO( "Program #", p->glid, (status == GL_FALSE ? " failed to compile!" : " compiled successfully.") );
|
---|
397 |
|
---|
398 | if ( length > 0 )
|
---|
399 | {
|
---|
400 | NV_LOG_INFO( "Program #", p->glid, " log: ", string_view( buffer, size_t( length ) ) );
|
---|
401 | }
|
---|
402 |
|
---|
403 | if ( status == GL_FALSE )
|
---|
404 | {
|
---|
405 | return false;
|
---|
406 | }
|
---|
407 |
|
---|
408 | glValidateProgram( p->glid );
|
---|
409 | glGetProgramiv( p->glid, GL_VALIDATE_STATUS, &status );
|
---|
410 |
|
---|
411 | if ( status == GL_FALSE )
|
---|
412 | {
|
---|
413 | glGetProgramInfoLog( p->glid, buffer_size, &length, buffer );
|
---|
414 | NV_LOG_ERROR( "Program #", p->glid, " validation error : ", buffer );
|
---|
415 | //return false;
|
---|
416 | }
|
---|
417 | load_attributes( p );
|
---|
418 | load_uniforms( p );
|
---|
419 | return true;
|
---|
420 | }
|
---|
421 |
|
---|
422 | void nv::gl_device::update_uniforms( gl_program_info* p )
|
---|
423 | {
|
---|
424 | for ( auto& i : *p->m_uniform_map )
|
---|
425 | {
|
---|
426 | uniform_base* ubase = i.second;
|
---|
427 | if ( ubase->is_dirty() )
|
---|
428 | {
|
---|
429 | int uloc = ubase->get_location();
|
---|
430 | switch( ubase->get_type() )
|
---|
431 | {
|
---|
432 | case FLOAT : glUniform1fv( uloc, ubase->get_length(), static_cast< uniform< enum_to_type< FLOAT >::type >*>( ubase )->get_value() ); break;
|
---|
433 | case INT : glUniform1iv( uloc, ubase->get_length(), static_cast< uniform< enum_to_type< INT >::type >*>( ubase )->get_value() ); break;
|
---|
434 | case FLOAT_VECTOR_2 : glUniform2fv( uloc, ubase->get_length(), reinterpret_cast<const GLfloat*>( static_cast< uniform< enum_to_type< FLOAT_VECTOR_2 >::type >*>( ubase )->get_value())); break;
|
---|
435 | case FLOAT_VECTOR_3 : glUniform3fv( uloc, ubase->get_length(), reinterpret_cast<const GLfloat*>( static_cast< uniform< enum_to_type< FLOAT_VECTOR_3 >::type >*>( ubase )->get_value())); break;
|
---|
436 | case FLOAT_VECTOR_4 : glUniform4fv( uloc, ubase->get_length(), reinterpret_cast<const GLfloat*>( static_cast< uniform< enum_to_type< FLOAT_VECTOR_4 >::type >*>( ubase )->get_value())); break;
|
---|
437 | case INT_VECTOR_2 : glUniform2iv( uloc, ubase->get_length(), reinterpret_cast<const GLint*>( static_cast< uniform< enum_to_type< INT_VECTOR_2 >::type >*>( ubase )->get_value())); break;
|
---|
438 | case INT_VECTOR_3 : glUniform3iv( uloc, ubase->get_length(), reinterpret_cast<const GLint*>( static_cast< uniform< enum_to_type< INT_VECTOR_3 >::type >*>( ubase )->get_value())); break;
|
---|
439 | case INT_VECTOR_4 : glUniform4iv( uloc, ubase->get_length(), reinterpret_cast<const GLint*>( static_cast< uniform< enum_to_type< INT_VECTOR_4 >::type >*>( ubase )->get_value())); break;
|
---|
440 | case FLOAT_MATRIX_2 : glUniformMatrix2fv( uloc, ubase->get_length(), GL_FALSE, reinterpret_cast<const GLfloat*>( static_cast< uniform< enum_to_type< FLOAT_MATRIX_2 >::type >*>( ubase )->get_value())); break;
|
---|
441 | case FLOAT_MATRIX_3 : glUniformMatrix3fv( uloc, ubase->get_length(), GL_FALSE, reinterpret_cast<const GLfloat*>( static_cast< uniform< enum_to_type< FLOAT_MATRIX_3 >::type >*>( ubase )->get_value())); break;
|
---|
442 | case FLOAT_MATRIX_4 : glUniformMatrix4fv( uloc, ubase->get_length(), GL_FALSE, reinterpret_cast<const GLfloat*>( static_cast< uniform< enum_to_type< FLOAT_MATRIX_4 >::type >*>( ubase )->get_value())); break;
|
---|
443 | default : break; // error?
|
---|
444 | }
|
---|
445 | ubase->clean();
|
---|
446 | }
|
---|
447 | }
|
---|
448 | }
|
---|
449 |
|
---|
450 | void nv::gl_device::load_attributes( gl_program_info* p )
|
---|
451 | {
|
---|
452 | int params;
|
---|
453 | glGetProgramiv( p->glid, GL_ACTIVE_ATTRIBUTES, ¶ms );
|
---|
454 |
|
---|
455 | for ( unsigned i = 0; i < unsigned( params ); ++i )
|
---|
456 | {
|
---|
457 | int attr_nlen;
|
---|
458 | int attr_len;
|
---|
459 | unsigned attr_type;
|
---|
460 | char name_buffer[128];
|
---|
461 |
|
---|
462 | glGetActiveAttrib( p->glid, i, 128, &attr_nlen, &attr_len, &attr_type, name_buffer );
|
---|
463 |
|
---|
464 | string_view name( name_buffer, size_t( attr_nlen ) );
|
---|
465 |
|
---|
466 | // skip built-ins
|
---|
467 | if ( name.substr(0,3) == "gl_" ) continue;
|
---|
468 |
|
---|
469 | int attr_loc = glGetAttribLocation( p->glid, name.data() );
|
---|
470 |
|
---|
471 | attribute& attr = (*p->m_attribute_map)[ name ];
|
---|
472 | attr.location = attr_loc;
|
---|
473 | attr.type = gl_enum_to_datatype( attr_type );
|
---|
474 | attr.length = attr_len;
|
---|
475 | }
|
---|
476 | }
|
---|
477 |
|
---|
478 | void nv::gl_device::load_uniforms( gl_program_info* p )
|
---|
479 | {
|
---|
480 | int params;
|
---|
481 | int bparams;
|
---|
482 | glGetProgramiv( p->glid, GL_ACTIVE_UNIFORMS, ¶ms );
|
---|
483 | glGetProgramiv( p->glid, GL_ACTIVE_UNIFORM_BLOCKS, &bparams );
|
---|
484 |
|
---|
485 | for ( unsigned i = 0; i < unsigned( params ); ++i )
|
---|
486 | {
|
---|
487 | int uni_nlen;
|
---|
488 | int uni_len;
|
---|
489 | unsigned uni_type;
|
---|
490 | char name_buffer[128];
|
---|
491 |
|
---|
492 | glGetActiveUniform( p->glid, i, 128, &uni_nlen, &uni_len, &uni_type, name_buffer );
|
---|
493 |
|
---|
494 | string_view name( name_buffer, size_t( uni_nlen ) );
|
---|
495 |
|
---|
496 | // skip built-ins
|
---|
497 | if ( name.substr(0,3) == "gl_" ) continue;
|
---|
498 |
|
---|
499 | int uni_loc = glGetUniformLocation( p->glid, name.data() );
|
---|
500 | datatype utype = gl_enum_to_datatype( uni_type );
|
---|
501 |
|
---|
502 | // check for array
|
---|
503 | size_t arrchar = name.find( '[' );
|
---|
504 | if ( arrchar != string_view::npos )
|
---|
505 | {
|
---|
506 | name = name.substr( 0, arrchar );
|
---|
507 | }
|
---|
508 |
|
---|
509 | uniform_base* u = uniform_base::create( utype, uni_loc, uni_len );
|
---|
510 | NV_ASSERT( u, "Unknown uniform type!" );
|
---|
511 | (*p->m_uniform_map)[ name ] = u;
|
---|
512 | }
|
---|
513 |
|
---|
514 | for ( unsigned i = 0; i < unsigned( bparams ); ++i )
|
---|
515 | {
|
---|
516 | int uni_len;
|
---|
517 | char name_buffer[128];
|
---|
518 |
|
---|
519 | glGetActiveUniformBlockName( p->glid, i, 128, &uni_len, name_buffer );
|
---|
520 | NV_LOG_INFO( string_view( name_buffer, size_t( uni_len ) ) );
|
---|
521 | }
|
---|
522 | }
|
---|
523 |
|
---|
524 | bool nv::gl_device::compile( uint32 sh_type, string_view shader_code, unsigned& glid )
|
---|
525 | {
|
---|
526 | glid = glCreateShader( sh_type );
|
---|
527 |
|
---|
528 | const char* pc = shader_code.data();
|
---|
529 | int l = int( shader_code.length() );
|
---|
530 |
|
---|
531 | glShaderSource( glid, 1, &pc, &l );
|
---|
532 | glCompileShader( glid );
|
---|
533 |
|
---|
534 | const uint32 buffer_size = 1024;
|
---|
535 | char buffer[ buffer_size ] = { 0 };
|
---|
536 | int length;
|
---|
537 | int compile_ok = GL_FALSE;
|
---|
538 | glGetShaderiv(glid, GL_COMPILE_STATUS, &compile_ok);
|
---|
539 | glGetShaderInfoLog( glid, buffer_size, &length, buffer );
|
---|
540 |
|
---|
541 | if ( length > 0 )
|
---|
542 | {
|
---|
543 | if ( compile_ok == 0 )
|
---|
544 | {
|
---|
545 | NV_LOG_ERROR( "Shader #", glid, " error: ", string_view( buffer, size_t( length ) ) );
|
---|
546 | }
|
---|
547 | else
|
---|
548 | {
|
---|
549 | NV_LOG_INFO( "Shader #", glid, " compiled successfully: ", string_view( buffer, size_t( length ) ) );
|
---|
550 | }
|
---|
551 | }
|
---|
552 | else
|
---|
553 | {
|
---|
554 | NV_LOG_INFO( "Shader #", glid, " compiled successfully." );
|
---|
555 | }
|
---|
556 | return compile_ok != 0;
|
---|
557 |
|
---|
558 | }
|
---|
559 |
|
---|