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

Unified Diff: src/gpu/GrInOrderDrawBuffer.cpp

Issue 174123003: Add hooks for GL_EXT_debug_marker in gpu (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 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/GrInOrderDrawBuffer.cpp
diff --git a/src/gpu/GrInOrderDrawBuffer.cpp b/src/gpu/GrInOrderDrawBuffer.cpp
index 669167c419bbc9680bb2dabbd344a0ef8354256d..0090d28a8cf7fd92c76b73255ee59962ae7a2f37 100644
--- a/src/gpu/GrInOrderDrawBuffer.cpp
+++ b/src/gpu/GrInOrderDrawBuffer.cpp
@@ -441,6 +441,18 @@ void GrInOrderDrawBuffer::clear(const SkIRect* rect, GrColor color,
renderTarget->ref();
}
+void GrInOrderDrawBuffer::insertEventMarker(const char* marker) {
+ // TODO: adds command to buffer
+}
+
+void GrInOrderDrawBuffer::pushGroupMarker(const char* marker) {
+ // TODO: adds command to buffer
+}
+
+void GrInOrderDrawBuffer::popGroupMarker() {
+ // TODO: adds command to buffer
+}
+
void GrInOrderDrawBuffer::reset() {
SkASSERT(1 == fGeoPoolStateStack.count());
this->resetVertexSource();

Powered by Google App Engine
This is Rietveld 408576698