mirror of
https://gitee.com/openharmony/graphic_graphic_2d
synced 2024-11-23 07:02:25 +00:00
无用代码删除
Signed-off-by: unknown <wangyan471@huawei.com>
This commit is contained in:
parent
9e572cfb62
commit
db8807c783
@ -1,35 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "rs_ui_share_context.h"
|
||||
#include "pipeline/rs_render_thread.h"
|
||||
|
||||
namespace OHOS {
|
||||
namespace Rosen {
|
||||
RSUIShareContext& RSUIShareContext::GetInstance()
|
||||
{
|
||||
static RSUIShareContext singleton;
|
||||
return singleton;
|
||||
}
|
||||
|
||||
EGLContext RSUIShareContext::GetRsRenderContext() const
|
||||
{
|
||||
auto context = RSRenderThread::Instance().GetRenderContext();
|
||||
if (!context) {
|
||||
return EGL_NO_CONTEXT;
|
||||
}
|
||||
return context->GetEGLContext();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2021-2023 Huawei Device Co., Ltd.
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#ifndef RENDER_SERVICE_CLIENT_CORE_UI_RS_UI_SHARE_CONTEXT_H
|
||||
#define RENDER_SERVICE_CLIENT_CORE_UI_RS_UI_SHARE_CONTEXT_H
|
||||
|
||||
#ifdef ROSEN_IOS
|
||||
#include "render_context/render_context_egl_defines.h"
|
||||
#else
|
||||
#include "EGL/egl.h"
|
||||
#endif
|
||||
#include "common/rs_common_def.h"
|
||||
|
||||
namespace OHOS {
|
||||
namespace Rosen {
|
||||
class RSC_EXPORT RSUIShareContext final {
|
||||
public:
|
||||
static RSUIShareContext& GetInstance();
|
||||
~RSUIShareContext() = default;
|
||||
EGLContext GetRsRenderContext() const;
|
||||
private:
|
||||
RSUIShareContext() = default;
|
||||
RSUIShareContext(const RSUIShareContext&) = delete;
|
||||
RSUIShareContext& operator=(const RSUIShareContext&) = delete;
|
||||
};
|
||||
} // namespace Rosen
|
||||
} // namespace OHOS
|
||||
#endif // RENDER_SERVICE_CLIENT_CORE_UI_RS_UI_SHARE_CONTEXT_H
|
Loading…
Reference in New Issue
Block a user