Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Showing
with 10468 additions and 0 deletions
File added
File added
<?xml version="1.0" encoding="utf-8"?>
<TpsData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Name>Last Resort Font</Name>
<Location>/Engine/Content/SlateDebug/Fonts/LastResort.ttf</Location>
<Date>2016-06-10T14:17:31.3888811-04:00</Date>
<Function>The Last Resort font is a collection of glyphs to represent types of Unicode characters</Function>
<Justification>These glyphs are designed to allow users to recognize an encoded value in scenarios where the desired font doesnt provide a character</Justification>
<Eula>http://www.unicode.org/policies/lastresortfont_eula.html</Eula>
<RedistributeTo>
<EndUserGroup>Licensees</EndUserGroup>
<EndUserGroup>Git</EndUserGroup>
<EndUserGroup>P4</EndUserGroup>
</RedistributeTo>
<LicenseFolder>/Engine/Source/ThirdParty/Licenses/LastResortFont_License.txt</LicenseFolder>
</TpsData>
\ No newline at end of file
File added
This diff is collapsed.
@echo off
set CWD=%cd%
set CHROME_USER_DATA=%CWD%/.tmp_chrome_data/
echo "Opening chrome..."
set CHROME="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
if exist "C:\Program Files\Google\Chrome\Application\chrome.exe" (
set CHROME="C:\Program Files\Google\Chrome\Application\chrome.exe"
)
REM --allow-file-access-from-files allow to load a file from a file:// webpage required for GPUDumpViewer.html to work.
REM --user-data-dir is required to force chrome to open a new instance so that --allow-file-access-from-files is honored.
%CHROME% "file://%CWD%/GPUDumpViewer.html" --allow-file-access-from-files --new-window --incognito --user-data-dir="%CHROME_USER_DATA%"
echo "Closing chrome..."
REM Wait for 2s to shut down so that CHROME_USER_DATA can be deleted completly
timeout /t 2 /nobreak > NUL
rmdir /S /Q "%CHROME_USER_DATA%"
#!/usr/bin/env bash
# Copyright Epic Games, Inc. All Rights Reserved.
set -eu
UNAMEOS="$(uname -s)"
ADDRESS="127.0.0.1"
PORT="8000"
URL="http://$ADDRESS:$PORT/GPUDumpViewer.html"
SCRIPT=$(readlink -f "$0")
# Absolute path this script is in, thus /home/user/bin
SCRIPTPATH=$(dirname "$SCRIPT")
pushd "$SCRIPTPATH"
GetAllChildProcesses() {
local Children=$(ps -o pid= ppid "$1")
for PID in $Children
do
GetAllChildProcesses "$PID"
done
echo "$Children"
}
# Gather all the descendant children of this process, and first kill -TERM. If any child process
# is still alive finally send a -KILL
TermHandler() {
MaxWait=30
CurrentWait=0
ProcessesToKill=$(GetAllChildProcesses $$)
kill -s TERM $ProcessesToKill 2> /dev/null
ProcessesStillAlive=$(ps -o pid= -p $ProcessesToKill)
# Wait until all the processes have been gracefully killed, or max Wait time
while [ -n "$ProcessesStillAlive" ] && [ "$CurrentWait" -lt "$MaxWait" ]
do
CurrentWait=$((CurrentWait + 1))
sleep 1
ProcessesStillAlive=$(ps -o pid= -p $ProcessesToKill)
done
# If some processes are still alive after MaxWait, lets just force kill them
if [ -n "$ProcessesStillAlive" ]; then
kill -s KILL $ProcessesStillAlive 2> /dev/null
fi
}
# trap when SIGINT or SIGTERM are received with a custom function
trap TermHandler SIGTERM SIGINT
APPS=()
APPS+=(xdg-open)
if [[ "${UNAMEOS}" =~ "Darwin" ]]; then
APPS+=(open)
fi
CMD=
for val in "${APPS[@]}"; do
CMD="$(command -v "${val}")" || true
if [[ -n "${CMD}" ]]; then
break
fi
done
if [[ -z "${CMD}" ]]; then
echo "ERROR: Browser launch command not found"
exit 1
fi
ARGS=("${CMD}")
ARGS+=("$URL")
echo "Executing:"
echo
echo "Starting simple webserver..."
exec python3 -m http.server "$PORT" --bind "$ADDRESS" &
P1=$!
sleep 1
echo "${ARGS[0]} \\"
for ((i=1; i < ${#ARGS[@]}; i++ )); do
echo " ${ARGS[$i]} \\";
done
echo
# Start the browser now that the server is running
"${ARGS[@]}"
# Wait on the webserver - in general this will be killed by a Ctrl-C
wait $P1
echo
echo "Closing ${CMD}..."
popd
File added
vr_rel/Binaries/Win64/tbb.pdb 2024-12-14T12:41:15.369Z
vr_rel/Binaries/Win64/tbbmalloc.pdb 2024-12-14T12:41:15.437Z
vr_rel/Binaries/Win64/vr_rel.pdb 2025-03-11T02:17:34.395Z
Engine/Content/SlateDebug/Fonts/LastResort.tps 2024-12-14T12:46:22.674Z
Engine/Content/SlateDebug/Fonts/LastResort.ttf 2024-12-14T12:46:22.680Z
Engine/Extras/GPUDumpViewer/GPUDumpViewer.html 2024-12-14T12:50:39.512Z
Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.bat 2024-12-14T12:50:39.512Z
Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.sh 2024-12-14T12:50:39.512Z
vr_rel/Binaries/Win64/D3D12/D3D12Core.dll 2025-02-15T18:04:23.502Z
vr_rel/Binaries/Win64/D3D12/d3d12SDKLayers.dll 2025-02-15T18:04:23.508Z
vr_rel/Binaries/Win64/DML/DirectML.dll 2025-02-15T18:11:52.062Z
vr_rel/Binaries/Win64/boost_atomic-mt-x64.dll 2025-02-15T18:11:51.496Z
vr_rel/Binaries/Win64/boost_chrono-mt-x64.dll 2025-02-15T18:11:51.496Z
vr_rel/Binaries/Win64/boost_filesystem-mt-x64.dll 2025-02-15T18:11:51.496Z
vr_rel/Binaries/Win64/boost_iostreams-mt-x64.dll 2025-02-15T18:11:51.496Z
vr_rel/Binaries/Win64/boost_program_options-mt-x64.dll 2025-02-15T18:11:51.499Z
vr_rel/Binaries/Win64/boost_python311-mt-x64.dll 2025-02-15T18:11:51.499Z
vr_rel/Binaries/Win64/boost_regex-mt-x64.dll 2025-02-15T18:11:51.501Z
vr_rel/Binaries/Win64/boost_system-mt-x64.dll 2025-02-15T18:11:51.501Z
vr_rel/Binaries/Win64/boost_thread-mt-x64.dll 2025-02-15T18:11:51.665Z
vr_rel/Binaries/Win64/tbb.dll 2025-02-15T18:04:20.941Z
vr_rel/Binaries/Win64/tbbmalloc.dll 2025-02-15T18:04:20.942Z
vr_rel/Binaries/Win64/vr_rel.exe 2025-03-11T02:17:34.380Z
Engine/Binaries/Win64/EOSSDK-Win64-Shipping.dll 2025-02-15T18:04:29.291Z
Engine/Extras/Redist/en-us/UEPrereqSetup_x64.exe 2025-02-15T18:09:16.201Z
Engine/Binaries/ThirdParty/DbgHelp/dbghelp.dll 2025-02-15T18:03:18.382Z
Engine/Binaries/ThirdParty/MsQuic/v220/win64/msquic.dll 2025-02-15T18:04:20.950Z
Engine/Binaries/ThirdParty/NVIDIA/NVaftermath/Win64/GFSDK_Aftermath_Lib.x64.dll 2025-02-15T18:04:20.963Z
Engine/Binaries/ThirdParty/Ogg/Win64/VS2015/libogg_64.dll 2025-02-15T18:04:20.964Z
Engine/Binaries/ThirdParty/OpenXR/win64/openxr_loader.dll 2025-02-15T18:04:20.982Z
Engine/Binaries/ThirdParty/Vorbis/Win64/VS2015/libvorbis_64.dll 2025-02-15T18:04:23.006Z
Engine/Binaries/ThirdParty/Vorbis/Win64/VS2015/libvorbisfile_64.dll 2025-02-15T18:04:23.006Z
Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64/WinPixEventRuntime.dll 2025-02-15T18:04:23.512Z
Engine/Binaries/ThirdParty/Windows/XAudio2_9/x64/xaudio2_9redist.dll 2025-02-15T18:04:23.513Z
Engine/Content/Renderer/TessellationTable.bin 2024-12-14T12:46:22.498Z
Engine/Content/Slate/Cursor/invisible.cur 2024-12-14T12:46:22.532Z
Engine/Plugins/NNE/NNERuntimeORT/Binaries/ThirdParty/Onnxruntime/Win64/onnxruntime.dll 2025-02-15T18:11:04.542Z
Engine/Config/StagedBuild_vr_rel.ini 2025-03-11T02:32:27.869Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_api_dump.dll 2025-02-15T18:04:23.019Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_api_dump.json 2024-12-14T12:41:33.759Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_gfxreconstruct.dll 2025-02-15T18:04:23.023Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_gfxreconstruct.json 2024-12-14T12:41:33.763Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_khronos_profiles.dll 2025-02-15T18:04:23.025Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_khronos_profiles.json 2024-12-14T12:41:33.765Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_khronos_synchronization2.dll 2025-02-15T18:04:23.025Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_khronos_synchronization2.json 2024-12-14T12:41:33.765Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_khronos_validation.dll 2025-02-15T18:04:23.498Z
Engine/Binaries/ThirdParty/Vulkan/Win64/VkLayer_khronos_validation.json 2024-12-14T12:41:34.701Z
vr_rel.exe 2025-03-11T02:32:27.866Z
This diff is collapsed.
File added
File added
File added
File added
File added
File added
File added