| 18 | |
| 19 | template <typename CreateObjectsFunction> |
| 20 | GLuint createObject(CreateObjectsFunction function) |
| 21 | { |
| 22 | GLuint id; |
| 23 | function(1, &id); |
| 24 | return id; |
| 25 | } |
| 26 | |
| 27 | template <typename DeleteObjectsFunction> |
| 28 | void deleteObject(DeleteObjectsFunction function, const GLuint id, const bool hasOwnership) |
no outgoing calls
no test coverage detected