mirror of
https://github.com/libretro/RetroArch
synced 2025-02-20 06:40:18 +00:00
move camera_driver.h header incldue out of driver.h
This commit is contained in:
parent
54dc5ca071
commit
271975954f
@ -16,7 +16,8 @@
|
||||
*/
|
||||
|
||||
#include <glsym/glsym.h>
|
||||
#include "../../driver.h"
|
||||
|
||||
#include "../camera_driver.h"
|
||||
#include "../../gfx/video_texture.h"
|
||||
|
||||
typedef struct android_camera
|
||||
|
@ -13,7 +13,7 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "../../driver.h"
|
||||
#include "../camera_driver.h"
|
||||
|
||||
static void *nullcamera_init(const char *device, uint64_t caps,
|
||||
unsigned width, unsigned height)
|
||||
|
@ -14,8 +14,10 @@
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <boolean.h>
|
||||
#include "../../driver.h"
|
||||
|
||||
#include "../camera_driver.h"
|
||||
|
||||
/* forward declarations */
|
||||
void *RWebCamInit(uint64_t caps, unsigned width, unsigned height);
|
||||
|
@ -32,13 +32,15 @@
|
||||
#include <linux/videodev2.h>
|
||||
|
||||
#include <memmap.h>
|
||||
|
||||
#include <retro_assert.h>
|
||||
#include <retro_miscellaneous.h>
|
||||
#include <gfx/scaler/scaler.h>
|
||||
#include <retro_stat.h>
|
||||
|
||||
#include <compat/strl.h>
|
||||
|
||||
#include "../../general.h"
|
||||
#include "../camera_driver.h"
|
||||
#include "../../performance.h"
|
||||
#include "../../verbosity.h"
|
||||
|
||||
|
1
driver.c
1
driver.c
@ -23,6 +23,7 @@
|
||||
#include "verbosity.h"
|
||||
#include "audio/audio_driver.h"
|
||||
#include "audio/audio_resampler_driver.h"
|
||||
#include "camera/camera_driver.h"
|
||||
#include "location/location_driver.h"
|
||||
|
||||
#ifdef HAVE_MENU
|
||||
|
1
driver.h
1
driver.h
@ -27,7 +27,6 @@
|
||||
|
||||
#include "libretro_private.h"
|
||||
|
||||
#include "camera/camera_driver.h"
|
||||
#include "record/record_driver.h"
|
||||
|
||||
#include "libretro_version_1.h"
|
||||
|
@ -28,6 +28,7 @@
|
||||
#endif
|
||||
|
||||
#include "audio/audio_driver.h"
|
||||
#include "camera/camera_driver.h"
|
||||
#include "location/location_driver.h"
|
||||
#include "performance.h"
|
||||
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "../driver.h"
|
||||
#include "../general.h"
|
||||
#include "../dynamic.h"
|
||||
#include "../camera/camera_driver.h"
|
||||
#include "../location/location_driver.h"
|
||||
#include "../audio/audio_driver.h"
|
||||
#include "../audio/audio_resampler_driver.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user