diff options
author | AdamJackson <AdamJackson@web> | 2016-09-27 17:07:56 +0000 |
---|---|---|
committer | xorg <iki-xorg@freedesktop.org> | 2016-09-27 17:07:56 +0000 |
commit | 797ff8c846b63f5c893865475eb94cf5146ed6e0 (patch) | |
tree | b17427acca9596450ace6edc3eeed4c9c79492c8 | |
parent | cd6323925d9d57efe46e97153f6076ebe4f805d2 (diff) |
-rw-r--r-- | Development/Documentation/GlamorPerformance.mdwn | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Development/Documentation/GlamorPerformance.mdwn b/Development/Documentation/GlamorPerformance.mdwn index 77294c33..1747051f 100644 --- a/Development/Documentation/GlamorPerformance.mdwn +++ b/Development/Documentation/GlamorPerformance.mdwn @@ -28,13 +28,13 @@ The rectangle ops are probably about as perfect as they're going to get. ### Text ops -TODO +When damage is active for a drawable we look up the glyphs twice, once in damage and once in glamor, which is a waste of CPU. ### Span ops FillSpans might benefit from an alternate calling convention, where rather than being passed a span list the caller asks the driver to allocate the span storage, fills that in, then calls Set or Fill. This would let us eliminate the copy into the vbo and just store there directly. -GetSpans and SetSpans are irrelevant, you can't hit it unless you're using the mi blit routines, and we're not. +GetSpans and SetSpans are irrelevant, you can't hit them unless you're using the mi blit routines, and we're not. ## Render @@ -64,4 +64,8 @@ The Render implementation needs major work: ## XVideo -TODO +Might be nice to add support for more formats? Should inspect the source to various video players and see what they'd prefer. + +## Übershader + +Switching among shader programs isn't free. Would be worth investigating whether a single shader performs as well as the current design. |