Lines Matching refs:target
116 GrGLenum target = gpu->bindBuffer(fIntendedType, this);
117 GrGLenum error = GL_ALLOC_CALL(BufferData(target, (GrGLsizeiptr)size, data, fUsage));
181 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this);
186 GL_ALLOC_CALL(BufferData(target, this->size(), nullptr, fUsage));
192 GL_CALL_RET(fMapPtr, MapBuffer(target, readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
196 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this);
199 GrGLenum error = GL_ALLOC_CALL(BufferData(target, this->size(), nullptr, fUsage));
214 GL_CALL_RET(fMapPtr, MapBufferRange(target, 0, this->size(), access));
218 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this);
221 GrGLenum error = GL_ALLOC_CALL(BufferData(target, this->size(), nullptr, fUsage));
226 GL_CALL_RET(fMapPtr, MapBufferSubData(target, 0, this->size(),
250 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this);
251 GL_CALL(UnmapBuffer(target));
275 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this);
280 GL_ALLOC_CALL(BufferData(target, (GrGLsizeiptr)srcSizeInBytes, src, fUsage));
293 GL_ALLOC_CALL(BufferData(target, (GrGLsizeiptr)this->size(), nullptr, fUsage));
297 GL_CALL(BufferSubData(target, 0, (GrGLsizeiptr) srcSizeInBytes, src));
305 GL_ALLOC_CALL(BufferData(target, (GrGLsizeiptr)srcSizeInBytes, src, fUsage));