You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(134) |
Sep
(52) |
Oct
(13) |
Nov
(342) |
Dec
(163) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(44) |
Feb
(62) |
Mar
(158) |
Apr
(38) |
May
(70) |
Jun
(58) |
Jul
(104) |
Aug
(207) |
Sep
(83) |
Oct
(122) |
Nov
(23) |
Dec
(49) |
| 2004 |
Jan
(119) |
Feb
(132) |
Mar
(192) |
Apr
(140) |
May
(77) |
Jun
(74) |
Jul
(201) |
Aug
(63) |
Sep
(102) |
Oct
(70) |
Nov
(173) |
Dec
(78) |
| 2005 |
Jan
(174) |
Feb
(197) |
Mar
(105) |
Apr
(59) |
May
(77) |
Jun
(43) |
Jul
(21) |
Aug
(18) |
Sep
(47) |
Oct
(37) |
Nov
(74) |
Dec
(50) |
| 2006 |
Jan
(44) |
Feb
(19) |
Mar
(32) |
Apr
(24) |
May
(31) |
Jun
(55) |
Jul
(138) |
Aug
(28) |
Sep
(12) |
Oct
(41) |
Nov
(58) |
Dec
(24) |
| 2007 |
Jan
(28) |
Feb
(14) |
Mar
(10) |
Apr
(68) |
May
(30) |
Jun
(26) |
Jul
(18) |
Aug
(63) |
Sep
(19) |
Oct
(29) |
Nov
(20) |
Dec
(10) |
| 2008 |
Jan
(38) |
Feb
(7) |
Mar
(37) |
Apr
(120) |
May
(41) |
Jun
(36) |
Jul
(39) |
Aug
(24) |
Sep
(28) |
Oct
(30) |
Nov
(36) |
Dec
(75) |
| 2009 |
Jan
(46) |
Feb
(22) |
Mar
(50) |
Apr
(70) |
May
(134) |
Jun
(105) |
Jul
(75) |
Aug
(34) |
Sep
(38) |
Oct
(34) |
Nov
(19) |
Dec
(20) |
| 2010 |
Jan
(11) |
Feb
(20) |
Mar
(65) |
Apr
(83) |
May
(104) |
Jun
(73) |
Jul
(78) |
Aug
(57) |
Sep
(43) |
Oct
(35) |
Nov
(9) |
Dec
(4) |
| 2011 |
Jan
(21) |
Feb
(11) |
Mar
(18) |
Apr
(10) |
May
(18) |
Jun
(15) |
Jul
(48) |
Aug
(25) |
Sep
(17) |
Oct
(45) |
Nov
(15) |
Dec
(12) |
| 2012 |
Jan
(21) |
Feb
(9) |
Mar
(12) |
Apr
(9) |
May
(9) |
Jun
(5) |
Jul
(1) |
Aug
(10) |
Sep
(12) |
Oct
(1) |
Nov
(28) |
Dec
(5) |
| 2013 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2016 |
Jan
(2) |
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
1
|
2
(1) |
3
(2) |
4
|
|
5
(1) |
6
|
7
(11) |
8
(4) |
9
(2) |
10
(6) |
11
(14) |
|
12
(10) |
13
(13) |
14
(8) |
15
|
16
|
17
(2) |
18
|
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
|
26
|
27
(3) |
28
(1) |
29
|
30
|
31
|
|
|
From: Brian M. <ma...@us...> - 2004-12-27 21:39:39
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5596/src/java/org/lwjgl/test Modified Files: WindowCreationTest.java Log Message: move before creation Index: WindowCreationTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/WindowCreationTest.java,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- WindowCreationTest.java 27 Dec 2004 21:32:22 -0000 1.25 +++ WindowCreationTest.java 27 Dec 2004 21:39:30 -0000 1.26 @@ -57,14 +57,13 @@ int x = 100, y = 100; boolean fullscreen = false; + System.out.println("Moving to 100, 100"); + Display.setLocation(x, y); // Create the actual window try { setDisplayMode(); Display.create(); - - System.out.println("Moving to 100, 100"); - Display.setLocation(x, y); } catch (Exception e) { e.printStackTrace(); System.out.println("Unable to create window!, exiting..."); |
|
From: Brian M. <ma...@us...> - 2004-12-27 21:38:59
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5399/src/java/org/lwjgl/opengl Modified Files: Display.java Log Message: respect display location Index: Display.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/Display.java,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- Display.java 14 Dec 2004 08:11:18 -0000 1.35 +++ Display.java 27 Dec 2004 21:38:50 -0000 1.36 @@ -69,13 +69,13 @@ private static long timeNow, timeThen; /** X coordinate of the window */ - private static int x; + private static int x = -1; /** * Y coordinate of the window. Y in window coordinates is from the top of the display down, * unlike GL, where it is typically at the bottom of the display. */ - private static int y; + private static int y = -1; /** Title of the window (never null) */ private static String title = "Game"; @@ -201,8 +201,12 @@ * A native context must exist, and it will be attached to the window. */ private static void createWindow() throws LWJGLException { - x = Math.max(0, (initial_mode.getWidth() - current_mode.getWidth()) / 2); - y = Math.max(0, (initial_mode.getHeight() - current_mode.getHeight()) / 2); + // if no display location set, center window + if(x == -1 && y == -1) { + setLocation(Math.max(0, (initial_mode.getWidth() - current_mode.getWidth()) / 2), + Math.max(0, (initial_mode.getHeight() - current_mode.getHeight()) / 2)); + } + display_impl.createWindow(current_mode, fullscreen, (fullscreen) ? 0 : x, (fullscreen) ? 0 : y); setTitle(title); initControls(); @@ -610,6 +614,7 @@ display_impl.destroyContext(); GLContext.unloadOpenGLLibrary(); context = null; + x = y = -1; try { GLContext.useContext(null); } catch (LWJGLException e) { @@ -657,7 +662,9 @@ * The window is clamped to remain entirely on the screen. If you attempt * to position the window such that it would extend off the screen, the window * is simply placed as close to the edge as possible. - * @param x , y The new window location + * <br><b>note</b>If no location has been specified (or x == y == -1) the window will be centered + * @param x The new window location on the x axis + * @param y The new window location on the y axis */ public static void setLocation(int x, int y) { if (fullscreen) { @@ -666,8 +673,6 @@ // offset if already created if(isCreated()) { - x = Math.max(0, Math.min(initial_mode.getWidth() - current_mode.getWidth(), x)); - y = Math.max(0, Math.min(initial_mode.getHeight() - current_mode.getHeight(), y)); display_impl.reshape(x, y, current_mode.getWidth(), current_mode.getHeight()); } |
|
From: Brian M. <ma...@us...> - 2004-12-27 21:32:32
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4187/src/java/org/lwjgl/test Modified Files: WindowCreationTest.java Log Message: move window after centering updated output Index: WindowCreationTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/WindowCreationTest.java,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- WindowCreationTest.java 11 Nov 2004 16:03:15 -0000 1.24 +++ WindowCreationTest.java 27 Dec 2004 21:32:22 -0000 1.25 @@ -58,13 +58,13 @@ int x = 100, y = 100; boolean fullscreen = false; - System.out.println("Moving to 100, 100"); - Display.setLocation(x, y); - // Create the actual window try { setDisplayMode(); Display.create(); + + System.out.println("Moving to 100, 100"); + Display.setLocation(x, y); } catch (Exception e) { e.printStackTrace(); System.out.println("Unable to create window!, exiting..."); @@ -72,7 +72,11 @@ } System.out.println("Window created"); - System.out.println(Display.getDisplayMode().getHeight() + ", " + Display.getDisplayMode().getWidth() + ", " + Display.getTitle()); + System.out.println("Width: " + Display.getDisplayMode().getWidth() + + ", Height: " + Display.getDisplayMode().getHeight() + + ", Bits per pixel: " + Display.getDisplayMode().getBitsPerPixel() + + ", Frequency: " + Display.getDisplayMode().getFrequency() + + ", Title: "+ Display.getTitle()); Display.setVSyncEnabled(true); Display.setTitle("WindowCreationTest"); |