SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Bugs that have been resolved.

Moderator: Graf Zahl

User avatar
Graf Zahl
GZDoom Developer
GZDoom Developer
Posts: 7148
Joined: Wed Jul 20, 2005 9:48
Location: Germany
Contact:

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by Graf Zahl »

With this kind of persistent instabilities my suspicion would be that something that's installed on this computer is really playing badly, it's most likely not the driver itself causing the problems but being the victim of some other application doing screwy things.
ibm5155
Posts: 152
Joined: Tue Oct 25, 2011 13:05

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by ibm5155 »

I'll try that (I'm doing the w10 big update and also some new AMD driver that came now)...

I hope the new drivers will not screw the screen brightness like they Always do when update (I heard that's something related to amd and the intel gpu are trying to control the same screen)

EDIT: how did I knew that? updated the os and the screen bright controll is now broken...
EDIT2: installing both gpu drivers is a pain in the ass, installing both cause the computer to not show nothing >.> here we go playing the Let's fix Windows game
EDIT 3: And i briked my notebook ( thanks and driver update)........
EDIT 4: screw this, the amd gpu act like a voodoo 2, the system goes useless without the intel gpu, and with both I don't have vídeo signal...
Well, I"m going to get stucked with only the intel gpu for a while :(
ibm5155
Posts: 152
Joined: Tue Oct 25, 2011 13:05

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by ibm5155 »

Good and bad news:
good news: The bright textures are working now even under áreas where the fog equals zero.
bad news: the screen still doesn't work in fullscreen BUT, it Works in fullscreen if I run gzdoom with some warp command to start the game for example on map01 instead of going to the doom 2 title.
dpJudas
Developer
Developer
Posts: 798
Joined: Sat Jul 23, 2016 7:53

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by dpJudas »

At the moment I think your crashes are due to faulty drivers. I'm not even sure what triggers it because the fullscreen code is completely independent from the OpenGL rendering code.

In any case, I would probably find it easier to add windowless windowed mode (that you could just use) than track down the reason for the driver crash for full screen.
ibm5155
Posts: 152
Joined: Tue Oct 25, 2011 13:05

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by ibm5155 »

error information update: I discovered that the intel gpu never crash if I set the aspect ratio to 16:9 and play the game with any kind of 16:9 resolution (but all 4:3 resolutions fails to run)...
The only sidenote is that the doom2 background menu image is just black (but this one I hearded from others so I belive its normal with the intel gpu)
dpJudas
Developer
Developer
Posts: 798
Joined: Sat Jul 23, 2016 7:53

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by dpJudas »

This is a long shot, but try add the following to the top of the FGLRenderBuffers::Setup function (in gl_renderbuffers.cpp):

Code: Select all

void FGLRenderBuffers::Setup(int width, int height)
{
    width = (width + 15) / 16 * 16;
    height = (height + 15) / 16 * 16;
    
    ... the rest of the code in the function ...
}
Maybe Intel's driver crashes if the buffer size isn't aligned or something.
Major Cooke
Developer
Developer
Posts: 240
Joined: Wed Mar 04, 2009 19:25

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by Major Cooke »

Is this at all potentially related to this bug? I'm thinking not, but who knows.
User avatar
Graf Zahl
GZDoom Developer
GZDoom Developer
Posts: 7148
Joined: Wed Jul 20, 2005 9:48
Location: Germany
Contact:

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by Graf Zahl »

Is this still current or has it been resolved?
User avatar
Graf Zahl
GZDoom Developer
GZDoom Developer
Posts: 7148
Joined: Wed Jul 20, 2005 9:48
Location: Germany
Contact:

Re: SetCamera broken wih commit aeb7df09de843542c3da7c889e5cc18540e59f87

Post by Graf Zahl »

ok then...
Locked

Return to “Closed Bugs”