Module: Mesa Branch: master Commit: 5664f57df3b7dfc5def189d1ee7a1b3df7d92bd6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5664f57df3b7dfc5def189d1ee7a1b3df7d92bd6
Author: Emil Velikov <[email protected]> Date: Mon Mar 16 11:50:47 2015 +0000 gallium/sw/kms: trivial cleanups Remove the forward declaration and make use of the DEBUG_PRINT macro for debug builds. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Brian Paul <[email protected]> --- src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c b/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c index ce3de78..e61a173 100644 --- a/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c +++ b/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c @@ -51,16 +51,14 @@ #include "state_tracker/sw_winsys.h" #include "state_tracker/drm_driver.h" +#include "kms_dri_sw_winsys.h" -#if 0 +#ifdef DEBUG #define DEBUG_PRINT(msg, ...) fprintf(stderr, msg, __VA_ARGS__) #else #define DEBUG_PRINT(msg, ...) #endif -struct sw_winsys; - -struct sw_winsys *kms_dri_create_winsys(int fd); struct kms_sw_displaytarget { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
