Commit db04a493 authored by Sam Lantinga's avatar Sam Lantinga

Added notes from e-mail on desktop window implementation

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404312
parent e4877f62
...@@ -31,6 +31,17 @@ ...@@ -31,6 +31,17 @@
* Create extended set of (negative) error codes and have the API functions document and return them. * Create extended set of (negative) error codes and have the API functions document and return them.
* Add clipboard support (from scrap demo) * Add clipboard support (from scrap demo)
* Add support for desktop windows? * Add support for desktop windows?
With Qt, I can do this by the codes as follows:
setAttribute(Qt::WA_X11NetWmWindowTypeDesktop);
setWindowFlags(Qt::SplashScreen);
Qt::WindowFlags flags = 0;
flags |= Qt::FramelessWindowHint;
flags |= Qt::Tool;
flags |= Qt::WindowStaysOnBottomHint;
setWindowFlags(flags);
* Add support for synchronizing 2D updates with vblank (bug #406) * Add support for synchronizing 2D updates with vblank (bug #406)
* Add support for real-time threads and/or adjusting thread priority? * Add support for real-time threads and/or adjusting thread priority?
* Add support for querying the number of CPUs and binding threads to them? * Add support for querying the number of CPUs and binding threads to them?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment