Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: src/gpu/GrGpu.h

Issue 275493004: Rename from "(un)lock" to "(un)map" for geometry buffers. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/gpu/GrGpu.h
diff --git a/src/gpu/GrGpu.h b/src/gpu/GrGpu.h
index fc1623708edec835eda45c3ab02517ef6d29b489..fd17397cd8d41f071befc785240a6cb8bc25a2cf 100644
--- a/src/gpu/GrGpu.h
+++ b/src/gpu/GrGpu.h
@@ -101,8 +101,8 @@ public:
*
* @param size size in bytes of the vertex buffer
* @param dynamic hints whether the data will be frequently changed
- * by either GrVertexBuffer::lock or
- * GrVertexBuffer::updateData.
+ * by either GrVertexBuffer::map() or
+ * GrVertexBuffer::updateData().
*
* @return The vertex buffer if successful, otherwise NULL.
*/
@@ -113,8 +113,8 @@ public:
*
* @param size size in bytes of the index buffer
* @param dynamic hints whether the data will be frequently changed
robertphillips 2014/05/07 20:01:26 lock -> map ?
bsalomon 2014/05/07 20:44:20 Done.
- * by either GrIndexBuffer::lock or
- * GrIndexBuffer::updateData.
+ * by either GrIndexBuffer::lock() or
+ * GrIndexBuffer::updateData().
*
* @return The index buffer if successful, otherwise NULL.
*/

Powered by Google App Engine
This is Rietveld 408576698