Changeset 403 for trunk/src/gl/gl_device.cc
- Timestamp:
- 06/14/15 14:31:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gl/gl_device.cc
r399 r403 238 238 if ( fatal ) 239 239 { 240 NV_LOG_ ERROR( "Uniform '", name, "' not found in program!" );241 NV_ THROW( runtime_error, ( "Uniform '"+name+"' not found!" ));240 NV_LOG_CRITICAL( "gl_device : uniform '", string_view( name ), "' not found in program!" ); 241 NV_ABORT( "gl_device : uniform not found!" ); 242 242 } 243 243 } … … 257 257 if ( fatal ) 258 258 { 259 NV_LOG_ ERROR( "Attribute '", name, "' not found in program!" );260 NV_ THROW( runtime_error, ( "Attribute '"+ name + "' not found!" ));259 NV_LOG_CRITICAL( "gl_device : attribute '", string_view( name ), "' not found in program!" ); 260 NV_ABORT( "gl_device : attribute not found!" ); 261 261 } 262 262 }
Note: See TracChangeset
for help on using the changeset viewer.