Rollback files that didn't need to change

This commit is contained in:
nsubiron 2018-10-31 19:53:34 +01:00
parent 2a6e341434
commit 46a6ecec1c
6 changed files with 15 additions and 15 deletions

View File

@ -3,12 +3,12 @@
//
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#include "Carla.h"
#include "Carla/Sensor/PixelReader.h"
#include "Engine/TextureRenderTarget2D.h"
#include "Carla/Sensor/PixelReader.h"
// For now we only support Vulkan on Windows.
#if PLATFORM_WINDOWS
# define CARLA_WITH_VULKAN_SUPPORT 1

View File

@ -3,15 +3,16 @@
//
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#include "Carla.h"
#include "Carla/Sensor/RayCastLidar.h"
#include "Carla/Actor/ActorBlueprintFunctionLibrary.h"
#include "DrawDebugHelpers.h"
#include "StaticMeshResources.h"
#include "Engine/CollisionProfile.h"
#include "Runtime/Engine/Classes/Kismet/KismetMathLibrary.h"
#include "Carla/Sensor/RayCastLidar.h"
#include "Carla/Actor/ActorBlueprintFunctionLibrary.h"
#include "StaticMeshResources.h"
FActorDefinition ARayCastLidar::GetSensorDefinition()
{
@ -68,8 +69,8 @@ void ARayCastLidar::Tick(const float DeltaTime)
ReadPoints(DeltaTime);
auto &stream = GetDataStream();
stream.Send_GameThread(*this, LidarMeasurement, stream.PopBufferFromPool());
auto &DataStream = GetDataStream();
DataStream.Send_GameThread(*this, LidarMeasurement, DataStream.PopBufferFromPool());
}
void ARayCastLidar::ReadPoints(const float DeltaTime)

View File

@ -3,7 +3,9 @@
//
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#include "Carla.h"
#include "Carla/Sensor/SceneCaptureSensor.h"
#include "Components/DrawFrustumComponent.h"
#include "Components/SceneCaptureComponent2D.h"
@ -11,8 +13,6 @@
#include "Engine/TextureRenderTarget2D.h"
#include "HighResScreenshot.h"
#include "Carla/Sensor/SceneCaptureSensor.h"
static auto SCENE_CAPTURE_COUNTER = 0u;
// =============================================================================

View File

@ -9,9 +9,9 @@
#include "Carla/Sensor/Sensor.h"
#include <compiler/disable-ue4-macros.h>
#include <carla/sensor/SensorRegistry.h>
#include <compiler/enable-ue4-macros.h>
#define LIBCARLA_SENSOR_REGISTRY_WITH_SENSOR_INCLUDES
#include <carla/sensor/SensorRegistry.h>

View File

@ -5,11 +5,10 @@
// For a copy, see <https://opensource.org/licenses/MIT>.
#include "Carla.h"
#include "Carla/Sensor/ShaderBasedSensor.h"
#include "ConstructorHelpers.h"
#include "Carla/Sensor/ShaderBasedSensor.h"
bool AShaderBasedSensor::LoadPostProcessingMaterial(const FString &Path, const float Weight)
{
ConstructorHelpers::FObjectFinder<UMaterial> Loader(*Path);

View File

@ -47,7 +47,7 @@ eval set -- "$OPTS"
while true; do
case "$1" in
--gdb )
GDB="gdb -tui --args";
GDB="gdb --args";
shift ;;
--xml )
XML_OUTPUT=true;