OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:initialBackgroundColor
(Results
1 - 8
of
8
) sorted by null
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3WindowConfiguration.java
34
Color
initialBackgroundColor
= Color.BLACK;
119
initialBackgroundColor
= color;
Lwjgl3ApplicationConfiguration.java
68
Color
initialBackgroundColor
= Color.BLACK;
106
copy.
initialBackgroundColor
= config.
initialBackgroundColor
;
284
initialBackgroundColor
= color;
Lwjgl3Application.java
324
appConfig.setInitialBackgroundColor(config.
initialBackgroundColor
);
409
GL11.glClearColor(config.
initialBackgroundColor
.r, config.
initialBackgroundColor
.g, config.
initialBackgroundColor
.b,
410
config.
initialBackgroundColor
.a);
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwGraphics.java
58
private Color
initialBackgroundColor
;
78
initialBackgroundColor
= config.
initialBackgroundColor
;
422
Gdx.gl.glClearColor(
initialBackgroundColor
.r,
initialBackgroundColor
.g,
initialBackgroundColor
.b,
initialBackgroundColor
.a);
JglfwApplicationConfiguration.java
63
public Color
initialBackgroundColor
= Color.BLACK;
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglAWTCanvas.java
132
canvas.setBackground(new Color(config.
initialBackgroundColor
.r, config.
initialBackgroundColor
.g,
133
config.
initialBackgroundColor
.b, config.
initialBackgroundColor
.a));
LwjglApplicationConfiguration.java
79
public Color
initialBackgroundColor
= Color.BLACK;
LwjglGraphics.java
211
Display.setInitialBackground(config.
initialBackgroundColor
.r, config.
initialBackgroundColor
.g,
212
config.
initialBackgroundColor
.b);
Completed in 724 milliseconds