diff options
-rw-r--r-- | dev/a5-artrender/artrender_app.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/a5-artrender/artrender_app.cc b/dev/a5-artrender/artrender_app.cc index 87f014b..e0d24c7 100644 --- a/dev/a5-artrender/artrender_app.cc +++ b/dev/a5-artrender/artrender_app.cc @@ -165,10 +165,10 @@ void ArtRenderApp::LoadShadersAndTextures() { // To try out different shading styles, you can replace diffuse.png and specular.png with // some of the other texture files in the data/ directory. - diffuse_ramp_.InitFromFile(Platform::FindFile("diffuse.png", search_path_)); + diffuse_ramp_.InitFromFile(Platform::FindFile("toonDiffuse.png", search_path_)); diffuse_ramp_.set_wrap_mode(GL_CLAMP_TO_EDGE); - specular_ramp_.InitFromFile(Platform::FindFile("specular.png", search_path_)); + specular_ramp_.InitFromFile(Platform::FindFile("toonSpecular.png", search_path_)); specular_ramp_.set_wrap_mode(GL_CLAMP_TO_EDGE); } |