I'm using assimp to load my various 3d models I've found around the internet to lab with. From reading assimp docs, it dosn't seem to say anything about linear/non-linear colorspaces. Can I assume the loaded models are in one space or another?
I'm using a deferred renderer. It kinda works like this:
I've read about having srgb textures and srgb framebuffers... should my "final texture", which ultimately is blitted onto the back buffer, be of "sRGB" format? If not, which textures should it be? Would that "automatically" give me sRGB-correct graphics?
Bring in linear space textures and then render the viewport as sRGB with glEnable(GL_FRAMEBUFFER_SRGB)
.
Look at this guide for more.