You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1000B

  1. GL_ARB_compute_shader
  2. http://www.opengl.org/registry/specs/ARB/compute_shader.txt
  3. GL_ARB_compute_shader
  4. GL_COMPUTE_SHADER_BIT 0x00000020
  5. GL_MAX_COMPUTE_SHARED_MEMORY_SIZE 0x8262
  6. GL_MAX_COMPUTE_UNIFORM_COMPONENTS 0x8263
  7. GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS 0x8264
  8. GL_MAX_COMPUTE_ATOMIC_COUNTERS 0x8265
  9. GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS 0x8266
  10. GL_COMPUTE_WORK_GROUP_SIZE 0x8267
  11. GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS 0x90EB
  12. GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER 0x90EC
  13. GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED
  14. GL_DISPATCH_INDIRECT_BUFFER 0x90EE
  15. GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF
  16. GL_COMPUTE_SHADER 0x91B9
  17. GL_MAX_COMPUTE_UNIFORM_BLOCKS 0x91BB
  18. GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS 0x91BC
  19. GL_MAX_COMPUTE_IMAGE_UNIFORMS 0x91BD
  20. GL_MAX_COMPUTE_WORK_GROUP_COUNT 0x91BE
  21. GL_MAX_COMPUTE_WORK_GROUP_SIZE 0x91BF
  22. void glDispatchCompute (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z)
  23. void glDispatchComputeIndirect (GLintptr indirect)