More coding style conformance

This commit is contained in:
Alexander Bock
2017-11-11 11:25:49 -05:00
parent f29b15a37f
commit 758e26789c
170 changed files with 2585 additions and 1229 deletions
+3 -1
View File
@@ -52,7 +52,9 @@ void* PixelBuffer::mapBuffer(Access access) {
return dataPtr;
}
void* PixelBuffer::mapBufferRange(GLintptr offset, GLsizeiptr length, BufferAccessMask access) {
void* PixelBuffer::mapBufferRange(GLintptr offset, GLsizeiptr length,
BufferAccessMask access)
{
void* dataPtr = glMapBufferRange(GL_PIXEL_UNPACK_BUFFER, offset, length, access);
_isMapped = dataPtr ? true : false;
return dataPtr;