diff options
| author | 2010-07-30 18:01:25 -0700 | |
|---|---|---|
| committer | 2010-07-30 18:01:25 -0700 | |
| commit | 4d7fc3651bd93d588d2b8580010414b59bc67729 (patch) | |
| tree | b4dcee8ac4dcc5b34eb7f988aab0e6a558e2a7c5 /opengl/libagl/array.cpp | |
| parent | 483b20e5ae65495d841de1844d97d79fbc0c1866 (diff) | |
| parent | bd2de0e42adc3fad30d86ed2c8d0488bc9501f36 (diff) | |
Merge "remove copybit hack from software opengl (libagl)" into gingerbread
Diffstat (limited to 'opengl/libagl/array.cpp')
| -rw-r--r-- | opengl/libagl/array.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/opengl/libagl/array.cpp b/opengl/libagl/array.cpp index 71825c502a03..4997dc8d5028 100644 --- a/opengl/libagl/array.cpp +++ b/opengl/libagl/array.cpp @@ -26,9 +26,6 @@ #include "primitives.h" #include "texture.h" #include "BufferObjectManager.h" -#ifdef LIBAGL_USE_GRALLOC_COPYBITS -#include "copybit.h" -#endif // LIBAGL_USE_GRALLOC_COPYBITS // ---------------------------------------------------------------------------- @@ -707,12 +704,6 @@ void drawPrimitivesTriangleStrip(ogles_context_t* c, void drawPrimitivesTriangleFan(ogles_context_t* c, GLint first, GLsizei count) { -#ifdef LIBAGL_USE_GRALLOC_COPYBITS - if (drawTriangleFanWithCopybit(c, first, count)) { - return; - } -#endif // LIBAGL_USE_GRALLOC_COPYBITS - drawPrimitivesTriangleFanOrStrip(c, first, count, 2); } |