diff options
author | Jim Huang <jserv@0xlab.org> | 2010-08-10 02:56:47 +0800 |
---|---|---|
committer | Jim Huang <jserv@0xlab.org> | 2010-08-10 02:56:47 +0800 |
commit | 6e1a9430e8e8de13109f1b234d937541a45a8ac5 (patch) | |
tree | 254bab9c3166dd1f3be1de9f82b7caf7e0492b49 /libpixelflinger | |
parent | 0fcbdb4147858d40d581d3b034f5150962632943 (diff) | |
download | core-6e1a9430e8e8de13109f1b234d937541a45a8ac5.tar.gz core-6e1a9430e8e8de13109f1b234d937541a45a8ac5.tar.bz2 core-6e1a9430e8e8de13109f1b234d937541a45a8ac5.zip |
pixelflinger: Fix function naming typo: gglBitBlti
From the functionality, the function gglBitBlti() implemented bit-block
(image) transfer operation in which several bitmaps are combined into
one using a raster operator. Renaming to gglBitBlit() should be
explicit.
Change-Id: I23886623b5421131cf7c7bfb8ec67c3809566c93
Diffstat (limited to 'libpixelflinger')
-rw-r--r-- | libpixelflinger/raster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpixelflinger/raster.cpp b/libpixelflinger/raster.cpp index d75120294..32b2a97aa 100644 --- a/libpixelflinger/raster.cpp +++ b/libpixelflinger/raster.cpp @@ -143,7 +143,7 @@ void ggl_copyPixels(void* con, GGLint xs, GGLint ys, using namespace android; -GGLint gglBitBlti(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4]) +GGLint gglBitBlit(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4]) { GGL_CONTEXT(c, (void*)con); |