| 133 | } |
| 134 | |
| 135 | GLboolean GLBufferObject::Unmap() |
| 136 | { |
| 137 | FATAL_ASSERT(mapped_ == true); |
| 138 | mapped_ = false; |
| 139 | Bind(); |
| 140 | GLboolean result = glUnmapBuffer(target_); |
| 141 | GL_LOG_ERRORS(); |
| 142 | return result; |
| 143 | } |
| 144 | |
| 145 | #if !defined(WITH_OPENGLES) || (defined(WITH_OPENGLES) && GL_ES_VERSION_3_2) |
| 146 | void GLBufferObject::TexBuffer(GLenum internalformat) |
no outgoing calls
no test coverage detected