// Copyright (c) 2025 Reito // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef ELECTRON_SHELL_COMMON_API_ELECTRON_API_SHARED_TEXTURE_H_ #define ELECTRON_SHELL_COMMON_API_ELECTRON_API_SHARED_TEXTURE_H_ #include #include #include "v8/include/v8-forward.h" namespace electron::api::shared_texture { v8::Local ImportSharedTexture(v8::Isolate* isolate, v8::Local options); v8::Local FinishTransferSharedTexture(v8::Isolate* isolate, v8::Local options); } // namespace electron::api::shared_texture #endif // ELECTRON_SHELL_COMMON_API_ELECTRON_API_SHARED_TEXTURE_H_