aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-18 18:20:20 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-18 18:20:20 +0000
commit2277b54e81c617ecfc60948cdaa2c6f4eb9f5a82 (patch)
treedf3b9ede869be587656fabf3aad5fc048f3bb25d
parentae6b777ba6d37b5330cdadc15ccff796fe172ca2 (diff)
Yet another build fix for r10148
git-svn-id: http://skia.googlecode.com/svn/trunk@10150 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--src/gpu/gl/GrGLCreateNullInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/gl/GrGLCreateNullInterface.cpp b/src/gpu/gl/GrGLCreateNullInterface.cpp
index f01133453a..bca02eb6bd 100644
--- a/src/gpu/gl/GrGLCreateNullInterface.cpp
+++ b/src/gpu/gl/GrGLCreateNullInterface.cpp
@@ -91,7 +91,7 @@ static void delete_buffer(GrBufferObj* buffer) {
// Add this slot to the free list
gBuffers[id] = gBuffers[0];
- gBuffers[0] = (GrBufferObj*) id;
+ gBuffers[0] = SkTCast<GrBufferObj*>((const void*) id);
}
GrGLvoid GR_GL_FUNCTION_TYPE nullGLActiveTexture(GrGLenum texture) {}