Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ABRG-Models/morphologica
Browse files Browse the repository at this point in the history
  • Loading branch information
sebjameswml committed Nov 16, 2023
2 parents 0b2c199 + c4f9a04 commit 3fe9107
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions morph/gl/compute_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ namespace morph {
glGetInteger64i_v (GL_MAX_COMPUTE_WORK_GROUP_SIZE, 2, &this->max_compute_work_group_size[2]);
std::cout << "GL_MAX_COMPUTE_WORK_GROUP_SIZE (x, y, z): " << this->max_compute_work_group_size << std::endl;

glGetIntegerv (GL_MAX_COMPUTE_SHARED_MEMORY_SIZE, &pval);
morph::gl::Util::checkError (__FILE__, __LINE__);
std::cout << "GL_MAX_COMPUTE_SHARED_MEMORY_SIZE: " << pval << " bytes" << std::endl;

// Shader storage
glGetIntegerv (GL_MAX_SHADER_STORAGE_BLOCK_SIZE, &pval);
morph::gl::Util::checkError (__FILE__, __LINE__);
Expand Down

0 comments on commit 3fe9107

Please sign in to comment.