summaryrefslogtreecommitdiffstats
path: root/libs/hwui/OpenGLRenderer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Don't use two different variables to refer to mSnapshot.Romain Guy2010-10-221-1/+1
* Don't perform glCopyTextImage with coordinates outside the buffer.Romain Guy2010-10-221-0/+8
* Optimizing display lists by referencing pointers to resources instead of copy...Chet Haase2010-10-211-9/+9
* Solve rendering issue with embedded WebViews.Romain Guy2010-10-191-8/+5
* Use VBOs to render most geometries.Romain Guy2010-10-181-44/+46
* Don't draw entirely transparent 9patch meshes.Romain Guy2010-10-151-5/+7
* Fix text rendering artifact.Romain Guy2010-10-151-0/+7
* Fix clipping issue in StackView.Romain Guy2010-10-151-3/+6
* Fix text rendering issue.Romain Guy2010-10-141-3/+9
* Fix layer rendering glitch.Romain Guy2010-10-131-2/+1
* Don't draw TextView's alpha layers when not needed.Romain Guy2010-10-131-0/+1
* Return identity matrix when rendering in an FBO.Romain Guy2010-10-131-1/+4
* Add a getNativeMatrix() API.Romain Guy2010-10-131-0/+4
* Optimize layer clears.Romain Guy2010-10-121-4/+3
* Tweak layers caching for better performance in Launcher.Romain Guy2010-10-121-0/+2
* Optimize 9patch rendering.Romain Guy2010-10-121-3/+3
* Don't recreate a new texture every time we draw a layer.Romain Guy2010-10-121-13/+8
* Don't draw fully transparent views/primitives.Romain Guy2010-10-111-2/+24
* Optimize GLSL shaders.Romain Guy2010-10-111-3/+11
* Don't update 9patches on every frame.Romain Guy2010-10-081-3/+2
* Better cache for layers, reduce memory usage and increase framerate.Romain Guy2010-10-081-9/+9
* Don't clear the framebuffer when not needed.Romain Guy2010-10-061-4/+9
* Optimize saveLayer() when the clip flag is set.Romain Guy2010-10-051-39/+121
* Remove logs to reduce logcat spam.Romain Guy2010-10-041-3/+0
* Apply bilinear filtering on text only when necessary.Romain Guy2010-10-041-2/+4
* Fix INVALID_OPERATION error with layers rendering.Romain Guy2010-10-011-11/+18
* Adding display lists to the GL renderer (checkpoint.)Romain Guy2010-09-261-4/+5
* Add debug mode to measure performance.Romain Guy2010-09-241-0/+3
* Correctly initialize/refresh layers.Romain Guy2010-09-221-2/+9
* Draw text decorations with lines instead of rectangles.Romain Guy2010-09-221-9/+20
* Fix OpenGL errors in various places.Romain Guy2010-09-221-6/+11
* Fix positioning of 1 pixel wide lines (esp. non AA lines.)Romain Guy2010-09-171-1/+1
* Add support for non AA lines.Romain Guy2010-09-171-10/+32
* Add support for drawLines(), with anti-aliasingRomain Guy2010-09-161-4/+61
* Snap layer bounds to pixel boundaries.Romain Guy2010-09-161-0/+2
* Better error handling in the OpenGL renderer.Romain Guy2010-09-161-1/+15
* Fix 9patch rendering.Romain Guy2010-09-151-12/+9
* Docs updates.Romain Guy2010-09-131-1/+9
* Document the implementation of saveLayer().Romain Guy2010-09-131-15/+50
* Forgot the return value...Romain Guy2010-09-131-1/+2
* Fix rendering issue with layers intersecting the clip rect.Romain Guy2010-09-131-1/+5
* Fix text rendering issue with text scaling.Romain Guy2010-09-121-12/+0
* Optimize calls to glCopyTexImage2D().Romain Guy2010-09-121-8/+30
* Correct implementation of saveLayer().Romain Guy2010-09-121-67/+81
* Add support for advanced blend modes with the framebuffer.Romain Guy2010-09-091-33/+64
* Do not convert 8888 bitmaps to 565 when doing a copy.Romain Guy2010-09-091-0/+1
* Add support for Canvas flags on save.Romain Guy2010-09-011-35/+42
* Add hooks for hardware accelerated WebView.Romain Guy2010-08-311-0/+23
* Apply gamma correction to font rendering.Romain Guy2010-08-271-3/+5
* Use only one GL context per process, share chaches.Romain Guy2010-08-241-113/+51