Skip to content

Commit

Permalink
fixed shader loading program
Browse files Browse the repository at this point in the history
  • Loading branch information
denizdiktas committed Jun 15, 2023
1 parent ff0a29d commit eaece85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Arrangement_on_surface_2/demo/earth/mainwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ void MainWidget::init_sp_smooth()
}
void MainWidget::init_sp_per_vertex_color()
{
const char* vs = "shaders/color_only_vs.glsl";
const char* fs = "shaders/color_only_fs.glsl";
const char* vs = "shaders/per_vertex_color_vs.glsl";
const char* fs = "shaders/per_vertex_color_fs.glsl";
m_sp_per_vertex_color.init(vs, "", fs);
}
void MainWidget::init_sp_arc()
Expand Down

0 comments on commit eaece85

Please sign in to comment.