diff options
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/blorp_clear.c (renamed from src/mesa/drivers/dri/i965/brw_blorp_clear.cpp) | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 14bd81a759e..45af1d4b00c 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -97,10 +97,10 @@ i965_compiler_GENERATED_FILES = \ i965_FILES = \ blorp.c \ blorp.h \ + blorp_clear.c \ blorp_priv.h \ brw_binding_tables.c \ brw_blorp_blit.cpp \ - brw_blorp_clear.cpp \ brw_blorp.c \ brw_blorp.h \ brw_cc.c \ diff --git a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp b/src/mesa/drivers/dri/i965/blorp_clear.c index d2858adcba0..2da08f83c7a 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp +++ b/src/mesa/drivers/dri/i965/blorp_clear.c @@ -170,8 +170,6 @@ blorp_clear(struct brw_context *brw, const struct brw_blorp_surf *surf, brw_blorp_exec(brw, ¶ms); } -extern "C" { - void brw_blorp_ccs_resolve(struct brw_context *brw, struct brw_blorp_surf *surf, enum isl_format format) @@ -201,5 +199,3 @@ brw_blorp_ccs_resolve(struct brw_context *brw, struct brw_blorp_surf *surf, brw_blorp_exec(brw, ¶ms); } - -} /* extern "C" */ |