Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
83 lines (73 loc) · 3.72 KB

TODO

File metadata and controls

83 lines (73 loc) · 3.72 KB
 
Apr 26, 2001
Apr 26, 2001
1
Nov 17, 2008
Nov 17, 2008
2
1.3 release checklist:
Apr 13, 2009
Apr 13, 2009
3
* Create jobs@libsdl.org
May 7, 2009
May 7, 2009
4
* Implement landscape mode for iPhone port
Dec 13, 2008
Dec 13, 2008
5
* Add higher precision timers for profiling
Nov 17, 2008
Nov 17, 2008
6
* Implement YUV texture support
Dec 10, 2008
Dec 10, 2008
7
- in progress, software support is done, Ryan is working on OpenGL shaders
Nov 17, 2008
Nov 17, 2008
8
* Implement desktop video mode change notification?
Dec 25, 2008
Dec 25, 2008
9
* Add OpenGL 3.0 context support
Jan 3, 2009
Jan 3, 2009
10
11
* Finish multiple display support
* Open windows on display that is selected when creating a window
Jan 3, 2009
Jan 3, 2009
12
13
14
15
* Create testing plan - becoming more and more important...
- unit tests for each feature and combination with expected output
and actual output comparison.
* Public license for SDL_compat.c, tests, and SDL_main*
Dec 10, 2008
Dec 10, 2008
16
17
18
* Verify mouse grab support
* Properly handle mouse grab with Vista DPI scaling
* Make sure the mouse is where it's supposed to be when un-grabbed
Feb 9, 2009
Feb 9, 2009
19
* Plan how to handle events on foreign windows
Dec 10, 2008
Dec 10, 2008
20
* Add keyboard enumeration / name query API
Jan 2, 2009
Jan 2, 2009
21
22
* Implement NET_WM_PING and NET_WM_PID/WM_CLIENT_MACHINE (?)
- http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html#KILLINGWINDOWS
Jan 2, 2009
Jan 2, 2009
23
* Add a timeout parameter for SDL_WaitEvent() (?)
Jan 4, 2009
Jan 4, 2009
24
- http://lists.libsdl.org/pipermail/sdl-libsdl.org/2008-May/thread.html#65067
Jan 4, 2009
Jan 4, 2009
25
* Implement key repeat at the driver level
Jan 4, 2009
Jan 4, 2009
26
* Add name -> keysym and name -> scancode lookup functions
Jan 29, 2009
Jan 29, 2009
27
* Fix building haptic system on win32
Feb 14, 2009
Feb 14, 2009
28
* Add always on top window styles
Feb 14, 2009
Feb 14, 2009
29
* Add video modes that have an alpha channel?
Aug 2, 2009
Aug 2, 2009
30
31
* Implement SDL_RenderReadPixels() for screenshots and automated testing
* Create extended set of (negative) error codes and have the API functions document and return them.
Aug 5, 2009
Aug 5, 2009
32
* Add clipboard support (from scrap demo)
Aug 7, 2009
Aug 7, 2009
33
* Add support for desktop windows?
Dec 15, 2009
Dec 15, 2009
34
35
36
37
38
39
40
41
42
43
44
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);
Sep 21, 2009
Sep 21, 2009
45
* Add support for synchronizing 2D updates with vblank (bug #406)
Sep 24, 2009
Sep 24, 2009
46
47
* Add support for real-time threads and/or adjusting thread priority?
* Add support for querying the number of CPUs and binding threads to them?
Oct 7, 2009
Oct 7, 2009
48
* Allow setting multiple icon sizes
Nov 17, 2008
Nov 17, 2008
49
Dec 12, 2009
Dec 12, 2009
50
51
52
53
* Add concept of viewport to fullscreen windows
* See why windows are being rearranged. Is the shield window not up?
* Make sure you can create and show a fullscreen window in one step
* Figure out how to handle OpenGL context lost on Mac OS X (does it happen?)
Dec 15, 2009
Dec 15, 2009
54
* Write automated test case for multi-draw APIs
Dec 18, 2009
Dec 18, 2009
55
* Make sure you can build SDL without the renderer to slim it down a bunch
Dec 12, 2009
Dec 12, 2009
56
Jan 10, 2010
Jan 10, 2010
57
58
59
60
61
62
63
64
* Check 1.2 revisions:
3554 - Need to resolve semantics for locking keys on different platforms
4874 - Do we want screen rotation? At what level?
4974 - Windows file code needs to convert UTF-8 to Unicode, but we don't need to tap dance for Windows 95/98
4484, 4485 - Verify that SDL's Windows keyboard handling works correctly
4865 - See if this is still needed (mouse coordinate clamping)
4866 - See if this is still needed (blocking window repositioning)
Apr 26, 2001
Apr 26, 2001
65
Wish list for the 1.3 development branch:
Mar 14, 2006
Mar 14, 2006
66
http://bugzilla.libsdl.org/
Apr 26, 2001
Apr 26, 2001
67
Jul 10, 2006
Jul 10, 2006
68
* Add a way to register custom events
Apr 26, 2001
Apr 26, 2001
69
70
71
* DirectInput joystick support needs to be implemented
* Explicit vertical retrace wait (maybe separate from SDL_Flip?)
* Shaped windows, windows without borders
Dec 10, 2008
Dec 10, 2008
72
* Multiple display support
Apr 26, 2001
Apr 26, 2001
73
74
* Add a timestamp to events
* Add audio input API
Mar 18, 2008
Mar 18, 2008
75
* Add modifier state to key and button events
Apr 26, 2001
Apr 26, 2001
76
77
78
79
80
In the jump from 1.2 to 1.3, we should change the SDL_Rect members to
int and evaluate all the rest of the datatypes. This is the only place
we should do it though, since the 1.2 series should not break binary
compatibility in this way.
Aug 18, 2001
Aug 18, 2001
81
82
Requests:
Sep 5, 2009
Sep 5, 2009
83
* PCM volume control (deprecated, but possible)