Skip to content

Commit

Permalink
pixelflinger: Fix function naming typo: gglBitBlti
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jserv committed Aug 9, 2010
1 parent 0fcbdb4 commit 6e1a943
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/pixelflinger/pixelflinger.h
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ extern "C" {
ssize_t gglInit(GGLContext** context);
ssize_t gglUninit(GGLContext* context);

GGLint gglBitBlti(
GGLint gglBitBlit(
GGLContext* c,
int tmu,
GGLint crop[4],
Expand Down
2 changes: 1 addition & 1 deletion libpixelflinger/raster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 6e1a943

Please sign in to comment.