Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: chrome/common/x11_util.cc

Issue 210021: Changes x11_util::GetRenderVisualFormat to determine the format id... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/common/x11_util_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/x11_util.cc
===================================================================
--- chrome/common/x11_util.cc (revision 26569)
+++ chrome/common/x11_util.cc (working copy)
@@ -15,6 +15,7 @@
#include <sys/ipc.h>
#include <sys/shm.h>
+#include <list>
#include <set>
#include "base/logging.h"
@@ -24,6 +25,34 @@
namespace x11_util {
+namespace {
+
+// Used to cache the XRenderPictFormat for a visual/display pair.
+struct CachedPictFormat {
+ bool equals(Display* display, Visual* visual) const {
+ return display == this->display && visual == this->visual;
+ }
+
+ Display* display;
+ Visual* visual;
+ XRenderPictFormat* format;
+};
+
+typedef std::list<CachedPictFormat> CachedPictFormats;
+
+// Returns the cache of pict formats.
+CachedPictFormats* get_cached_pict_formats() {
evanm 2010/11/09 19:30:17 Why not GetCachedPictFormats?
+ static CachedPictFormats* formats = NULL;
+ if (!formats)
+ formats = new CachedPictFormats();
+ return formats;
+}
+
+// Maximum number of CachedPictFormats we keep around.
+const size_t kMaxCacheSize = 5;
+
+} // namespace
+
bool XDisplayExists() {
return (gdk_display_get_default() != NULL);
}
@@ -330,15 +359,30 @@
}
XRenderPictFormat* GetRenderVisualFormat(Display* dpy, Visual* visual) {
- static XRenderPictFormat* pictformat = NULL;
- if (pictformat)
- return pictformat;
-
DCHECK(QueryRenderSupport(dpy));
- pictformat = XRenderFindVisualFormat(dpy, visual);
+ CachedPictFormats* formats = get_cached_pict_formats();
+
+ for (CachedPictFormats::const_iterator i = formats->begin();
+ i != formats->end(); ++i) {
+ if (i->equals(dpy, visual))
+ return i->format;
+ }
+
+ // Not cached, look up the value.
+ XRenderPictFormat* pictformat = XRenderFindVisualFormat(dpy, visual);
CHECK(pictformat) << "XRENDER does not support default visual";
+ // And store it in the cache.
+ CachedPictFormat cached_value;
+ cached_value.visual = visual;
+ cached_value.display = dpy;
+ cached_value.format = pictformat;
+ formats->push_front(cached_value);
+
+ if (formats->size() == kMaxCacheSize)
+ formats->pop_back();
+
return pictformat;
}
« no previous file with comments | « no previous file | chrome/common/x11_util_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698