diff options
-rw-r--r-- | shaders/fragment.frag | 1 | ||||
-rw-r--r-- | src/model_loader/ObjModelLoader.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/shaders/fragment.frag b/shaders/fragment.frag index ee6106d..b078a58 100644 --- a/shaders/fragment.frag +++ b/shaders/fragment.frag @@ -8,5 +8,4 @@ uniform sampler2D tex; void main() { out_color = texture(tex, texcoord_frag); - //out_color = vec4(1.0, 0.0, 0.0, 1.0); }
\ No newline at end of file diff --git a/src/model_loader/ObjModelLoader.cpp b/src/model_loader/ObjModelLoader.cpp index a42f8d7..f70123a 100644 --- a/src/model_loader/ObjModelLoader.cpp +++ b/src/model_loader/ObjModelLoader.cpp @@ -179,7 +179,7 @@ namespace amalgine { if(num_columns == 2) { columns[0].data[columns[0].size] = '\0'; columns[1].data[columns[1].size] = '\0'; - temp_texture_coords.push_back({ atof(columns[0].data), atof(columns[1].data) }); + temp_texture_coords.push_back({ atof(columns[0].data), 1.0f - atof(columns[1].data) }); } } else if(line_data.size > 7 && memcmp(line_data.data, "mtllib ", 7) == 0) { StringView column_data = { line_data.data + 7, line_data.size - 7 }; |