Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Jan 6, 2013
1 parent 0511cb3 commit d9694cf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions doomsday/engine/include/resource/materials.h
Expand Up @@ -228,9 +228,9 @@ namespace de {
material_t *material = 0);

/**
* Prepare a MaterialVariantSpecification according to a usage context. If
* incomplete context information is supplied, suitable default values will
* be chosen in their place.
* Prepare a material variant specification in accordance to the specified
* usage context. If incomplete context information is supplied, suitable
* default values will be chosen in their place.
*
* @param materialContext Material (usage) context identifier.
* @param flags @ref textureVariantSpecificationFlags
Expand Down
6 changes: 3 additions & 3 deletions doomsday/engine/include/resource/materialvariant.h
Expand Up @@ -61,13 +61,13 @@ namespace de {
struct texturevariantspecification_s *primarySpec;

/**
* Construct a default MaterialVariantSpecification instance.
* Construct a default MaterialVariantSpec instance.
*/
MaterialVariantSpec() : context(MC_UNKNOWN), primarySpec(0)
{}

/**
* Construct a MaterialVariantSpecification instance by duplicating @a other.
* Construct a MaterialVariantSpec instance by duplicating @a other.
*/
MaterialVariantSpec(MaterialVariantSpec const &other)
: context(other.context), primarySpec(other.primarySpec)
Expand Down Expand Up @@ -160,7 +160,7 @@ namespace de {
/// @return Material from which this variant is derived.
struct material_s &generalCase() const;

/// @return MaterialVariantSpecification from which this variant is derived.
/// @return MaterialVariantSpec from which this variant is derived.
MaterialVariantSpec const &spec() const;

/**
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/src/resource/materials.cpp
Expand Up @@ -177,7 +177,7 @@ struct Materials::Instance

void animateAllGroups()
{
DENG2_FOR_EACH(AnimGroups, i, groups)
DENG2_FOR_EACH(Materials::AnimGroups, i, groups)
{
i->animate();
}
Expand Down

0 comments on commit d9694cf

Please sign in to comment.