Skip to content

Commit

Permalink
Refactor: Completed rename of p_materialmanager.c/h to materials.c/h
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Nov 10, 2011
1 parent c63a139 commit fc5c1ed
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/engine.pro
Expand Up @@ -187,6 +187,7 @@ DENG_HEADERS = \
portable/include/lumpfile.h \
portable/include/lumpinfo.h \
portable/include/material.h \
portable/include/materials.h \
portable/include/materialvariant.h \
portable/include/m_args.h \
portable/include/m_bams.h \
Expand Down Expand Up @@ -217,7 +218,6 @@ DENG_HEADERS = \
portable/include/p_mapdata.h \
portable/include/p_maptypes.h \
portable/include/p_maputil.h \
portable/include/p_materialmanager.h \
portable/include/p_object.h \
portable/include/p_objlink.h \
portable/include/p_particle.h \
Expand Down Expand Up @@ -436,6 +436,7 @@ SOURCES += \
portable/src/lumpdirectory.c \
portable/src/lumpfile.c \
portable/src/material.c \
portable/src/materials.c \
portable/src/materialvariant.c \
portable/src/m_args.c \
portable/src/m_bams.c \
Expand Down Expand Up @@ -466,7 +467,6 @@ SOURCES += \
portable/src/p_intercept.c \
portable/src/p_linedef.c \
portable/src/p_maputil.c \
portable/src/p_materialmanager.c \
portable/src/p_mobj.c \
portable/src/p_objlink.c \
portable/src/p_particle.c \
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/de_refresh.h
Expand Up @@ -29,7 +29,7 @@
#ifndef LIBDENG_REFRESH
#define LIBDENG_REFRESH

#include "p_materialmanager.h"
#include "materials.h"
#include "textures.h"
#include "r_data.h"
#include "r_draw.h"
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/edit_map.h
Expand Up @@ -30,7 +30,7 @@

#include "p_mapdata.h"
#include "m_binarytree.h"
#include "p_materialmanager.h"
#include "materials.h"

// Editable map.
typedef struct editmap_s {
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/materials.h
@@ -1,4 +1,4 @@
/**\file p_materialmanager.h
/**\file materials.h
*\section License
* License: GPL
* Online License Link: http://www.gnu.org/licenses/gpl.html
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/r_things.h
Expand Up @@ -31,7 +31,7 @@

#include "p_mapdata.h"
#include "r_data.h"
#include "p_materialmanager.h"
#include "materials.h"
#include "rend_model.h"

// Sprites are patches with a special naming convention so they can be
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/sv_pool.h
Expand Up @@ -32,7 +32,7 @@
#include "dd_share.h"
#include "p_object.h"
#include "r_data.h"
#include "p_materialmanager.h"
#include "materials.h"

// Prefer adding new flags inside the deltas instead of adding new delta types.
typedef enum {
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/def_data.c
Expand Up @@ -36,7 +36,7 @@

#include "def_data.h"
#include "gl_main.h"
#include "p_materialmanager.h"
#include "materials.h"

// Helper Routines -------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/materials.c
@@ -1,4 +1,4 @@
/**\file p_materialmanager.c
/**\file materials.c
*\section License
* License: GPL
* Online License Link: http://www.gnu.org/licenses/gpl.html
Expand Down

0 comments on commit fc5c1ed

Please sign in to comment.