summaryrefslogtreecommitdiff
path: root/thirdparty/thorvg/src/loaders/raw/tvgRawLoader.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-01-14 16:38:51 +0100
committerGitHub <noreply@github.com>2022-01-14 16:38:51 +0100
commit8866c365829896bf6b4c8ec4be25c161ccaf7282 (patch)
treebe2731f43c9315468ee1b4e6346297b4110de2ce /thirdparty/thorvg/src/loaders/raw/tvgRawLoader.h
parent6689a9360c2dae0ca940e4e470c4d0a0e0a9bef4 (diff)
parent8d02759c720c3a91663e56979273feabad1dc051 (diff)
Merge pull request #49645 from fire/thorvg
Diffstat (limited to 'thirdparty/thorvg/src/loaders/raw/tvgRawLoader.h')
-rw-r--r--thirdparty/thorvg/src/loaders/raw/tvgRawLoader.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/thirdparty/thorvg/src/loaders/raw/tvgRawLoader.h b/thirdparty/thorvg/src/loaders/raw/tvgRawLoader.h
new file mode 100644
index 0000000000..20fa332981
--- /dev/null
+++ b/thirdparty/thorvg/src/loaders/raw/tvgRawLoader.h
@@ -0,0 +1,42 @@
+/*
+ * Copyright (c) 2020-2021 Samsung Electronics Co., Ltd. All rights reserved.
+
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+#ifndef _TVG_RAW_LOADER_H_
+#define _TVG_RAW_LOADER_H_
+
+class RawLoader : public LoadModule
+{
+public:
+ const uint32_t* content = nullptr;
+ bool copy = false;
+
+ ~RawLoader();
+
+ using LoadModule::open;
+ bool open(const uint32_t* data, uint32_t w, uint32_t h, bool copy) override;
+ bool read() override;
+ bool close() override;
+
+ unique_ptr<Surface> bitmap() override;
+};
+
+
+#endif //_TVG_RAW_LOADER_H_