aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu/src/GrGLTexture.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-13 19:28:02 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-13 19:28:02 +0000
commit79d2dbed5a08e0d3f65646d52b4bb884cd0af9b5 (patch)
treec268ce162808024eac81a47db1175d2a434f3727 /gpu/src/GrGLTexture.cpp
parent5a23424b409a45169928f4be1f68b3ab7131e783 (diff)
uint32_t -> int for texture extents
Review URL: http://codereview.appspot.com/4584053/ git-svn-id: http://skia.googlecode.com/svn/trunk@1574 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gpu/src/GrGLTexture.cpp')
-rw-r--r--gpu/src/GrGLTexture.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gpu/src/GrGLTexture.cpp b/gpu/src/GrGLTexture.cpp
index d3ccfa6b2c..59b11625fa 100644
--- a/gpu/src/GrGLTexture.cpp
+++ b/gpu/src/GrGLTexture.cpp
@@ -153,10 +153,10 @@ void GrGLTexture::onAbandon() {
}
}
-void GrGLTexture::uploadTextureData(uint32_t x,
- uint32_t y,
- uint32_t width,
- uint32_t height,
+void GrGLTexture::uploadTextureData(int x,
+ int y,
+ int width,
+ int height,
const void* srcData) {
GPUGL->setSpareTextureUnit();