Lines Matching refs:GL_CALL
13 #define GL_CALL(X) GR_GL_CALL(this->glGpu()->glInterface(), X) macro
102 GL_CALL(GenBuffers(1, &fBufferID)); in GrGLBuffer()
112 GL_CALL(DeleteBuffers(1, &fBufferID)); in GrGLBuffer()
139 GL_CALL(DeleteBuffers(1, &fBufferID)); in onRelease()
179 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage)); in onMap()
188 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage)); in onMap()
203 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage)); in onMap()
234 GL_CALL(UnmapBuffer(target)); in onUnmap()
239 GL_CALL(UnmapBufferSubData(fMapPtr)); in onUnmap()
262 GL_CALL(BufferData(target, (GrGLsizeiptr) srcSizeInBytes, src, fUsage)); in onUpdateData()
271 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage)); in onUpdateData()
272 GL_CALL(BufferSubData(target, 0, (GrGLsizeiptr) srcSizeInBytes, src)); in onUpdateData()
279 GL_CALL(BufferData(target, srcSizeInBytes, src, fUsage)); in onUpdateData()