First of all, I have a camera object with a method called GetViewProj() to get the projection*view matrix.
I have also created a shaderprogram object to handle compilation and linking of a shader and setting uniforms and attributes. Each model has an instance of this shaderprogram to handle a specific shader.
I would like to be able to be able to render the scene like the following:
void RenderScene(){
ModelA->Render();
ModelB->Render();
}
What I want to know is how to properly tie in the view and projection to these models.Do I just do the following for each model in the RenderScene function:
ModelA->shaderprogram->setUniform("viewProj",Camera->GetViewProj());
ModelB->shaderprogram->setUniform("viewProj",Camera->GetViewProj());
I would also like to know if there is a better method in general when comes to setting this up.
My interpretation of a given model's
Render
function would be that it should be responsible for all the actions required for performing the render, so rather than setting your view projections at the beginning of your render scene call (which, btw means all of your models have to be defined in world space, which is unsavory), I would have it the responsibility of theRender
function to go out and get the current modelview matrix.In my applications I have a Stacks singleton type which has a static access method to fetch the instance. I don't bind my shaders to the models themselves, so I use a render helper method that accepts both a mesh and a Shader program.
Your model
Render
method could similarly reach out to a singleton and fetch the appropriate matrix, so that you're not responsible for managing it at therenderScene
level.