@@ -413,17 +413,32 @@ void GLInstancingRenderer::writeSingleInstanceTransformToGPU(float* position, fl
413
413
void GLInstancingRenderer::writeTransforms ()
414
414
{
415
415
416
- b3Assert (glGetError () ==GL_NO_ERROR);
417
-
416
+ {
417
+ B3_PROFILE (" b3Assert(glGetError() 1" );
418
+ b3Assert (glGetError () ==GL_NO_ERROR);
419
+ }
420
+ {
421
+ B3_PROFILE (" glBindBuffer" );
422
+ glBindBuffer (GL_ARRAY_BUFFER, m_data->m_vbo );
423
+ }
418
424
419
- glBindBuffer (GL_ARRAY_BUFFER, m_data->m_vbo );
420
- // glFlush();
425
+ {
426
+ B3_PROFILE (" glFlush()" );
427
+ // without the flush, the glBufferSubData can spike to really slow (seconds slow)
428
+ glFlush ();
429
+ }
421
430
422
- b3Assert (glGetError () ==GL_NO_ERROR);
431
+ {
432
+ B3_PROFILE (" b3Assert(glGetError() 2" );
433
+ b3Assert (glGetError () ==GL_NO_ERROR);
434
+ }
423
435
424
436
425
437
#ifdef B3_DEBUG
426
438
{
439
+
440
+ // B3_PROFILE("m_data->m_totalNumInstances == totalNumInstances");
441
+
427
442
int totalNumInstances= 0 ;
428
443
for (int k=0 ;k<m_graphicsInstances.size ();k++)
429
444
{
@@ -440,14 +455,29 @@ void GLInstancingRenderer::writeTransforms()
440
455
// int SCALE_BUFFER_SIZE = (totalNumInstances*sizeof(float)*3);
441
456
442
457
#if 1
458
+ {
459
+ // printf("m_data->m_totalNumInstances = %d\n", m_data->m_totalNumInstances);
460
+ {
461
+ B3_PROFILE (" glBufferSubData pos" );
443
462
glBufferSubData ( GL_ARRAY_BUFFER,m_data->m_maxShapeCapacityInBytes ,m_data->m_totalNumInstances *sizeof (float )*4 ,
444
463
&m_data->m_instance_positions_ptr [0 ]);
464
+ }
465
+ {
466
+ B3_PROFILE (" glBufferSubData orn" );
445
467
glBufferSubData ( GL_ARRAY_BUFFER,m_data->m_maxShapeCapacityInBytes +POSITION_BUFFER_SIZE,m_data->m_totalNumInstances *sizeof (float )*4 ,
446
468
&m_data->m_instance_quaternion_ptr [0 ]);
469
+ }
470
+ {
471
+ B3_PROFILE (" glBufferSubData color" );
447
472
glBufferSubData ( GL_ARRAY_BUFFER,m_data->m_maxShapeCapacityInBytes + POSITION_BUFFER_SIZE+ORIENTATION_BUFFER_SIZE, m_data->m_totalNumInstances *sizeof (float )*4 ,
448
473
&m_data->m_instance_colors_ptr [0 ]);
474
+ }
475
+ {
476
+ B3_PROFILE (" glBufferSubData scale" );
449
477
glBufferSubData ( GL_ARRAY_BUFFER, m_data->m_maxShapeCapacityInBytes +POSITION_BUFFER_SIZE+ORIENTATION_BUFFER_SIZE+COLOR_BUFFER_SIZE,m_data->m_totalNumInstances *sizeof (float )*3 ,
450
478
&m_data->m_instance_scale_ptr [0 ]);
479
+ }
480
+ }
451
481
#else
452
482
453
483
char* orgBase = (char*)glMapBuffer( GL_ARRAY_BUFFER,GL_READ_WRITE);
@@ -517,9 +547,15 @@ void GLInstancingRenderer::writeTransforms()
517
547
518
548
#endif
519
549
520
- glBindBuffer (GL_ARRAY_BUFFER, 0 );// m_data->m_vbo);
550
+ {
551
+ B3_PROFILE (" glBindBuffer 2" );
552
+ glBindBuffer (GL_ARRAY_BUFFER, 0 );// m_data->m_vbo);
553
+ }
521
554
522
- b3Assert (glGetError () ==GL_NO_ERROR);
555
+ {
556
+ B3_PROFILE (" b3Assert(glGetError() 4" );
557
+ b3Assert (glGetError () ==GL_NO_ERROR);
558
+ }
523
559
524
560
}
525
561
@@ -686,16 +722,24 @@ int GLInstancingRenderer::registerShape(const float* vertices, int numvertices,
686
722
687
723
688
724
glBindBuffer (GL_ARRAY_BUFFER, m_data->m_vbo );
689
- char * dest= (char *)glMapBuffer ( GL_ARRAY_BUFFER,GL_WRITE_ONLY);// GL_WRITE_ONLY
690
725
int vertexStrideInBytes = 9 *sizeof (float );
691
726
int sz = numvertices*vertexStrideInBytes;
727
+ #if 0
728
+
729
+ char* dest= (char*)glMapBuffer( GL_ARRAY_BUFFER,GL_WRITE_ONLY);//GL_WRITE_ONLY
730
+
731
+
692
732
#ifdef B3_DEBUG
693
733
int totalUsed = vertexStrideInBytes*gfxObj->m_vertexArrayOffset+sz;
694
734
b3Assert(totalUsed<m_data->m_maxShapeCapacityInBytes);
695
735
#endif//B3_DEBUG
696
736
697
737
memcpy(dest+vertexStrideInBytes*gfxObj->m_vertexArrayOffset,vertices,sz);
698
738
glUnmapBuffer( GL_ARRAY_BUFFER);
739
+ #else
740
+ glBufferSubData ( GL_ARRAY_BUFFER,vertexStrideInBytes*gfxObj->m_vertexArrayOffset ,sz,
741
+ vertices);
742
+ #endif
699
743
700
744
glGenBuffers (1 , &gfxObj->m_index_vbo );
701
745
@@ -1465,7 +1509,7 @@ void GLInstancingRenderer::renderSceneInternal(int renderMode)
1465
1509
#endif // OLD_SHADOWMAP_INIT
1466
1510
1467
1511
glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
1468
- glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR );
1512
+ glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
1469
1513
1470
1514
1471
1515
0 commit comments