diff options
| author | 2010-07-30 18:01:25 -0700 | |
|---|---|---|
| committer | 2010-07-30 18:01:25 -0700 | |
| commit | 3efd03a3c2c26ee2bcdf6d7798c870300d2eb326 (patch) | |
| tree | fd5f12762d88bb4ff8729e56005cbc2ad334becb /opengl/libagl/array.cpp | |
| parent | 6e6cc2014ff5bb90a60a33386c434875c36f7650 (diff) | |
| parent | bb0628d9debc5ddd5b1ca3311d6397bbe668c4ee (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 71825c502a..4997dc8d50 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); } |