mirror of https://github.com/AxioDL/boo.git
Huge compile performance refactor
This commit is contained in:
parent
867665cc78
commit
fa8989bed3
|
@ -2,7 +2,7 @@
|
|||
#define IGFXCONTEXT_HPP
|
||||
|
||||
#include <memory>
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef BOO_IAUDIOSUBMIX_HPP
|
||||
#define BOO_IAUDIOSUBMIX_HPP
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include "boo/BooObject.hpp"
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#ifndef BOO_IAUDIOVOICE_HPP
|
||||
#define BOO_IAUDIOVOICE_HPP
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
#include "boo/BooObject.hpp"
|
||||
|
||||
namespace boo
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include <string>
|
||||
#include <functional>
|
||||
#include <vector>
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef BOO_IMIDIREADER_HPP
|
||||
#define BOO_IMIDIREADER_HPP
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <cstdlib>
|
||||
#include <cstdint>
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include <memory>
|
||||
#include <functional>
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
#include "boo/System.hpp"
|
||||
#include "boo/ThreadLocalPtr.hpp"
|
||||
#include "boo/BooObject.hpp"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#ifndef CDEVICEBASE
|
||||
#define CDEVICEBASE
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include <mutex>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include "DeviceToken.hpp"
|
||||
#include "IHIDListener.hpp"
|
||||
#include "DeviceSignature.hpp"
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef WIN32_LEAN_AND_MEAN
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef CDOLPHINSMASHADAPTER_HPP
|
||||
#define CDOLPHINSMASHADAPTER_HPP
|
||||
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
#include "DeviceBase.hpp"
|
||||
#include "../System.hpp"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef CDUALSHOCKPAD_HPP
|
||||
#define CDUALSHOCKPAD_HPP
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
#include <type_traits>
|
||||
#include "DeviceBase.hpp"
|
||||
#include "boo/System.hpp"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "AudioMatrix.hpp"
|
||||
#include "AudioVoiceEngine.hpp"
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
|
||||
#include "boo/audiodev/IAudioVoice.hpp"
|
||||
#include <vector>
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
#include <limits.h>
|
||||
#include <float.h>
|
||||
#include <cfloat>
|
||||
|
||||
#if __SSE__
|
||||
#include <immintrin.h>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "AudioMatrix.hpp"
|
||||
#include "AudioVoiceEngine.hpp"
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
#include <immintrin.h>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "AudioSubmix.hpp"
|
||||
#include "AudioVoiceEngine.hpp"
|
||||
#include "AudioVoice.hpp"
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#include <algorithm>
|
||||
|
||||
#undef min
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "boo/inputdev/DolphinSmashAdapter.hpp"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#include "boo/inputdev/DualshockPad.hpp"
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <math.h>
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <memory.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include <mutex>
|
||||
#include <condition_variable>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <libudev.h>
|
||||
#include <stropts.h>
|
||||
#include <linux/usb/ch9.h>
|
||||
|
@ -15,7 +15,7 @@
|
|||
#include <fcntl.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#include "boo/inputdev/HIDParser.hpp"
|
||||
|
||||
namespace boo
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
#include <thread>
|
||||
#include <mutex>
|
||||
#include <condition_variable>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
#include <algorithm>
|
||||
|
||||
#ifndef WIN32_LEAN_AND_MEAN
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
#include "boo/inputdev/DeviceFinder.hpp"
|
||||
#include "boo/inputdev/HIDParser.hpp"
|
||||
#include <libudev.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
#include <signal.h>
|
||||
#include <fcntl.h>
|
||||
#include <linux/hidraw.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include "boo/inputdev/IHIDListener.hpp"
|
||||
#include "boo/inputdev/DeviceFinder.hpp"
|
||||
#include "boo/inputdev/XInputPad.hpp"
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#include <thread>
|
||||
|
||||
#ifndef WIN32_LEAN_AND_MEAN
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include <memory>
|
||||
#include <dbus/dbus.h>
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
DBusConnection* RegisterDBus(const char* appName, bool& isFirst)
|
||||
{
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
|
||||
#include <thread>
|
||||
#include <mutex>
|
||||
|
|
2
logvisor
2
logvisor
|
@ -1 +1 @@
|
|||
Subproject commit 408ae926d76128fa23a12607d0a1e0a970ab3554
|
||||
Subproject commit beee8b397056efcdc33020a26cf69d1039f0f802
|
|
@ -1,5 +1,5 @@
|
|||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include <cstdio>
|
||||
#include <cmath>
|
||||
#include <boo/boo.hpp>
|
||||
#include <boo/graphicsdev/GL.hpp>
|
||||
#include <boo/graphicsdev/Vulkan.hpp>
|
||||
|
|
Loading…
Reference in New Issue