Remove header includes

This commit is contained in:
twinaphex 2016-09-01 05:46:10 +02:00
parent 19f352371d
commit 815c0eb3ee
5 changed files with 11 additions and 8 deletions

View File

@ -30,7 +30,6 @@
#include <gfx/scaler/scaler.h>
#include <formats/image.h>
#include "../../general.h"
#include "../../verbosity.h"
#include "../font_driver.h"
#include "../video_coord_array.h"

View File

@ -19,6 +19,7 @@
#include <stdint.h>
#include "../../driver.h"
#include "../../configuration.h"
#include "../../frontend/frontend_driver.h"
#include "../common/egl_common.h"

View File

@ -14,11 +14,16 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <encodings/utf.h>
#include "../common/gl_common.h"
#include "../font_driver.h"
#include "../video_shader_driver.h"
#include "../video_context_driver.h"
#include <encodings/utf.h>
#include "../../configuration.h"
/* TODO: Move viewport side effects to the caller: it's a source of bugs. */

View File

@ -16,6 +16,10 @@
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#include <compat/strl.h>
#include <compat/posix_string.h>
#include <file/file_path.h>
@ -23,17 +27,12 @@
#include <streams/file_stream.h>
#include <string/stdstring.h>
#include "../../general.h"
#include "shader_glsl.h"
#include "../video_state_tracker.h"
#include "../../dynamic.h"
#include "../../managers/state_manager.h"
#include "../../core.h"
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#ifdef HAVE_OPENGL
#include "../common/gl_common.h"
#endif

View File

@ -23,7 +23,6 @@
#include <gfx/math/matrix_4x4.h>
#include <string/stdstring.h>
#include "../../general.h"
#include "../video_state_tracker.h"
#include "../../dynamic.h"