lwjgl Display.Update() is very slow
up vote
0
down vote
favorite
I have a problem with the Display.update(); function in lwjgl. This function take about 64ms to render and all the rest of my code take about 1ms to render. I don't know why it's takes this time.And i have search on internet some information but without result.
Here is my Display init.
try {
Display.setDisplayMode(new DisplayMode(width, height));
Display.setTitle(title);
Display.setResizable(true);
Display.sync(60);
Display.create(new PixelFormat().withDepthBits(24),attribs);
GL11.glEnable(GL13.GL_MULTISAMPLE);
GL11.glViewport(0, 0, width, height);
} catch (LWJGLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
I have trying to remove some lines but they make no difference.
Thanks
opengl lwjgl display
add a comment |
up vote
0
down vote
favorite
I have a problem with the Display.update(); function in lwjgl. This function take about 64ms to render and all the rest of my code take about 1ms to render. I don't know why it's takes this time.And i have search on internet some information but without result.
Here is my Display init.
try {
Display.setDisplayMode(new DisplayMode(width, height));
Display.setTitle(title);
Display.setResizable(true);
Display.sync(60);
Display.create(new PixelFormat().withDepthBits(24),attribs);
GL11.glEnable(GL13.GL_MULTISAMPLE);
GL11.glViewport(0, 0, width, height);
} catch (LWJGLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
I have trying to remove some lines but they make no difference.
Thanks
opengl lwjgl display
2
Provide an MCVE.
– httpdigest
2 days ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a problem with the Display.update(); function in lwjgl. This function take about 64ms to render and all the rest of my code take about 1ms to render. I don't know why it's takes this time.And i have search on internet some information but without result.
Here is my Display init.
try {
Display.setDisplayMode(new DisplayMode(width, height));
Display.setTitle(title);
Display.setResizable(true);
Display.sync(60);
Display.create(new PixelFormat().withDepthBits(24),attribs);
GL11.glEnable(GL13.GL_MULTISAMPLE);
GL11.glViewport(0, 0, width, height);
} catch (LWJGLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
I have trying to remove some lines but they make no difference.
Thanks
opengl lwjgl display
I have a problem with the Display.update(); function in lwjgl. This function take about 64ms to render and all the rest of my code take about 1ms to render. I don't know why it's takes this time.And i have search on internet some information but without result.
Here is my Display init.
try {
Display.setDisplayMode(new DisplayMode(width, height));
Display.setTitle(title);
Display.setResizable(true);
Display.sync(60);
Display.create(new PixelFormat().withDepthBits(24),attribs);
GL11.glEnable(GL13.GL_MULTISAMPLE);
GL11.glViewport(0, 0, width, height);
} catch (LWJGLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
I have trying to remove some lines but they make no difference.
Thanks
opengl lwjgl display
opengl lwjgl display
asked 2 days ago
LeProblemEDMN
1
1
2
Provide an MCVE.
– httpdigest
2 days ago
add a comment |
2
Provide an MCVE.
– httpdigest
2 days ago
2
2
Provide an MCVE.
– httpdigest
2 days ago
Provide an MCVE.
– httpdigest
2 days ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53350340%2flwjgl-display-update-is-very-slow%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Provide an MCVE.
– httpdigest
2 days ago