From 8c4603c73675958efc960fbd4bb599a2909d106a Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 16 Jan 2023 14:52:43 +0100 Subject: Source codes --- Whisper/ML/mlStartup.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Whisper/ML/mlStartup.cpp (limited to 'Whisper/ML/mlStartup.cpp') diff --git a/Whisper/ML/mlStartup.cpp b/Whisper/ML/mlStartup.cpp new file mode 100644 index 0000000..815ce52 --- /dev/null +++ b/Whisper/ML/mlStartup.cpp @@ -0,0 +1,27 @@ +#include "stdafx.h" +#include "mlStartup.h" +#include "../D3D/startup.h" +#include "LookupTables.h" + +namespace +{ + static DirectCompute::LookupTables s_tables; +} + +namespace DirectCompute +{ + const LookupTables& lookupTables = s_tables; + + HRESULT mlStartup() + { + CHECK( d3dStartup() ); + CHECK( s_tables.create() ); + return S_OK; + } + + void mlShutdown() + { + s_tables.clear(); + d3dShutdown(); + } +} \ No newline at end of file -- cgit v1.2.3