Skip to content

Commit

Permalink
Debug|TextureVariantSpec|Fixed: TextureVariantSpec::asText() was miss…
Browse files Browse the repository at this point in the history
…ing some info
  • Loading branch information
danij-deng committed Apr 9, 2013
1 parent 40f3701 commit 6901827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/client/src/gl/gl_texmanager.cpp
Expand Up @@ -1018,7 +1018,7 @@ String texturevariantspecification_t::asText() const
}
}

text += " Context:" + textureUsageContextNames[tc-TEXTUREVARIANTUSAGECONTEXT_FIRST + 1];
text += " Context:" + textureUsageContextNames[tc-TEXTUREVARIANTUSAGECONTEXT_FIRST + 1]
+ " Flags:" + String::number(spec.flags & ~TSF_INTERNAL_MASK)
+ " Border:" + String::number(spec.border)
+ " MinFilter:" + filterModeNames[3 + de::clamp(-1, spec.minFilter, 0)]
Expand Down

0 comments on commit 6901827

Please sign in to comment.