R7: pure C ABI display boundary + engine visibility closure

R7-A (Qwen 3.8 Max): oakengine/display.h rewritten to the POD contract
from r7-pure-abi-plan.md - oak_video_params everywhere, opaque
texture/frame handles with retain/free protocol (engine-heap control
blocks), OakSharedBuffer refcounted wrapper for the QVariant playback
path. All TexturePtr/FramePtr gone from app (47 sites).

R7-B (Qwen 3.8 Max): liboakengine.so exports 3486 -> 19 C++ symbols
(version script oakengine.ver: oakengine_* plus the documented
oakgl/oakvulkan dlopen plugin ABI). oakengine-obj OBJECT library feeds
both the shared lib and the test binaries (-rdynamic so dlopen'd
backends resolve engine objects).

Fix (Kimi K3): producer/consumer type mismatch - viewerdisplay
unpacks OakSharedBufferPtr but viewer.cpp pushed raw void* handles,
so no frame ever reached the display widget (all 5 vulkan viewer
tests timed out with 'never received a texture'). Producers now wrap
with oak_make_shared_frame / oak_make_shared_texture(retain).

Verified: build 0 errors, ctest 45/45, nm U _ZN5olive = 0 in
oak-editor/oak-render-worker/oak-cli, 19 exported C++ symbols in
liboakengine.so (all documented plugin ABI).
This commit is contained in:
2026-07-27 00:54:46 +08:00
parent 9b25772267
commit eb634b53ef
33 changed files with 1692 additions and 668 deletions
+654 -53
View File
@@ -19,22 +19,118 @@
***/
#include "oakengine/display.h"
#include "displayinternal.h"
#include <atomic>
#include <cstring>
#include <QObject>
#include <QOpenGLContext>
#include <QMatrix4x4>
#include <QString>
#include <QVariant>
#include <QVector2D>
#include <QVector3D>
#include "codec/frame.h"
#include "colorinternal.h"
#include "render/job/colortransformjob.h"
#include "render/job/shaderjob.h"
#include "render/opengl/openglrenderer.h"
#include "render/renderer.h"
#include "render/shadercode.h"
#include "render/texture.h"
#include "node/value.h"
#ifdef OAK_ENABLE_DYNAMIC_RENDER_BACKEND
#include "render/backend/dynamicrenderer.h"
#endif
/* ---- Internal control blocks -------------------------------------------- */
struct OakEngineDisplayTexture {
olive::TexturePtr ptr;
std::atomic<int> refcount{1};
};
struct OakEngineCodecFrame {
olive::FramePtr ptr;
std::atomic<int> refcount{1};
};
/* ---- Internal helpers --------------------------------------------------- */
namespace
{
olive::VideoParams pod_to_cpp(const oak_video_params &v)
{
olive::VideoParams vp(
v.width, v.height, olive::Rational(v.time_base_num, v.time_base_den),
static_cast<olive::PixelFormat::Format>(v.format),
olive::VideoParams::k_internal_channel_count,
olive::Rational(v.pixel_aspect_num, v.pixel_aspect_den),
static_cast<olive::VideoParams::Interlacing>(v.interlacing),
v.divider > 0 ? v.divider : 1);
vp.set_color_range(static_cast<olive::VideoParams::ColorRange>(v.color_range));
return vp;
}
oak_video_params cpp_to_pod(const olive::VideoParams &vp)
{
oak_video_params p = {};
p.width = vp.width();
p.height = vp.height();
p.time_base_num = vp.time_base().numerator();
p.time_base_den = vp.time_base().denominator();
p.format = static_cast<int>(vp.format());
p.pixel_aspect_num = vp.pixel_aspect_ratio().numerator();
p.pixel_aspect_den = vp.pixel_aspect_ratio().denominator();
p.interlacing = static_cast<int>(vp.interlacing());
p.color_range = static_cast<int>(vp.color_range());
p.divider = vp.divider();
return p;
}
OakEngineDisplayTexture *tex(void *h)
{
return static_cast<OakEngineDisplayTexture *>(h);
}
OakEngineCodecFrame *frm(void *h)
{
return static_cast<OakEngineCodecFrame *>(h);
}
olive::Renderer *ren(void *h)
{
return static_cast<olive::Renderer *>(h);
}
QMatrix4x4 mat_from_float(const float *f)
{
if (!f) {
return QMatrix4x4();
}
// Check if all zeros → identity
bool all_zero = true;
for (int i = 0; i < 16; i++) {
if (f[i] != 0.0f) {
all_zero = false;
break;
}
}
if (all_zero) {
return QMatrix4x4();
}
return QMatrix4x4(f);
}
} // namespace
extern "C" {
/* ---- Renderer lifecycle ------------------------------------------------- */
void *oakengine_display_renderer_create_dynamic(const char *backend_name,
void *parent)
{
@@ -45,8 +141,6 @@ void *oakengine_display_renderer_create_dynamic(const char *backend_name,
if (dyn->load()) {
return dyn;
}
// Backend library failed to load: drop it so the caller can fall back
// to the built-in OpenGL renderer.
delete dyn;
return nullptr;
#else
@@ -63,7 +157,7 @@ void *oakengine_display_renderer_create_opengl(void *parent)
int oakengine_display_renderer_init(void *renderer, void *gl_context)
{
olive::Renderer *r = static_cast<olive::Renderer *>(renderer);
olive::Renderer *r = ren(renderer);
if (!r) {
return OAKENGINE_E_INVALID;
}
@@ -90,7 +184,7 @@ int oakengine_display_renderer_init(void *renderer, void *gl_context)
void oakengine_display_renderer_destroy(void *renderer)
{
olive::Renderer *r = static_cast<olive::Renderer *>(renderer);
olive::Renderer *r = ren(renderer);
if (!r) {
return;
}
@@ -98,85 +192,592 @@ void oakengine_display_renderer_destroy(void *renderer)
r->post_destroy();
}
void oakengine_display_renderer_create_texture(void *renderer,
const void *video_params,
const void *pixels, int linesize,
void *out_texture)
/* ---- Renderer queries --------------------------------------------------- */
int oakengine_display_renderer_is_open_gl(const void *renderer)
{
olive::Renderer *r = static_cast<olive::Renderer *>(renderer);
if (!r || !video_params || !out_texture) {
return;
}
const olive::VideoParams &params =
*static_cast<const olive::VideoParams *>(video_params);
*static_cast<olive::TexturePtr *>(out_texture) =
r->create_texture(params, pixels, linesize);
olive::Renderer *r = ren(const_cast<void *>(renderer));
return r ? r->is_open_gl() : 0;
}
void oakengine_display_renderer_blit_color_managed(void *renderer,
const void *color_job,
void *dst_texture,
const void *video_params)
int oakengine_display_renderer_is_vulkan(const void *renderer)
{
olive::Renderer *r = static_cast<olive::Renderer *>(renderer);
if (!r || !color_job) {
olive::Renderer *r = ren(const_cast<void *>(renderer));
return r ? r->is_vulkan() : 0;
}
/* ---- Texture handle ----------------------------------------------------- */
void *oakengine_display_texture_create(void *renderer,
const oak_video_params *params,
const void *pixels, int linesize)
{
olive::Renderer *r = ren(renderer);
if (!r || !params) {
return nullptr;
}
olive::VideoParams vp = pod_to_cpp(*params);
olive::TexturePtr tp = r->create_texture(vp, pixels, linesize);
if (!tp) {
return nullptr;
}
return new OakEngineDisplayTexture{tp, {1}};
}
void *oakengine_display_texture_retain(void *texture)
{
if (!texture) {
return nullptr;
}
tex(texture)->refcount.fetch_add(1, std::memory_order_relaxed);
return texture;
}
void oakengine_display_texture_free(void *texture)
{
if (!texture) {
return;
}
const olive::ColorTransformJob &job =
*static_cast<const olive::ColorTransformJob *>(color_job);
olive::Texture *dst = static_cast<olive::Texture *>(dst_texture);
if (video_params) {
r->blit_color_managed(
job, dst, *static_cast<const olive::VideoParams *>(video_params));
} else if (dst) {
r->blit_color_managed(job, dst, dst->params());
if (tex(texture)->refcount.fetch_sub(1, std::memory_order_acq_rel) == 1) {
delete tex(texture);
}
}
void oakengine_display_texture_upload(void *texture, void *pixels, int linesize)
int oakengine_display_texture_upload(void *texture, const void *pixels,
int linesize)
{
olive::Texture *t = static_cast<olive::Texture *>(texture);
if (!t) {
return;
if (!texture || !pixels) {
return OAKENGINE_E_INVALID;
}
t->upload(pixels, linesize);
tex(texture)->ptr->upload(const_cast<void *>(pixels), linesize);
return OAKENGINE_OK;
}
void oakengine_display_texture_download(void *texture, void *pixels,
int linesize)
int oakengine_display_texture_download(void *texture, void *pixels,
int linesize)
{
olive::Texture *t = static_cast<olive::Texture *>(texture);
if (!t) {
return;
if (!texture || !pixels) {
return OAKENGINE_E_INVALID;
}
t->download(pixels, linesize);
tex(texture)->ptr->download(pixels, linesize);
return OAKENGINE_OK;
}
void oakengine_codec_frame_create(void *out_frame)
/* ---- Texture queries ---------------------------------------------------- */
int oakengine_display_texture_get_params(const void *texture,
oak_video_params *out)
{
if (!out_frame) {
return;
if (!texture || !out) {
return OAKENGINE_E_INVALID;
}
*static_cast<olive::FramePtr *>(out_frame) = olive::Frame::create();
*out = cpp_to_pod(tex(const_cast<void *>(texture))->ptr->params());
return OAKENGINE_OK;
}
void oakengine_codec_frame_set_video_params(void *frame,
const void *video_params)
int oakengine_display_texture_id(const void *texture)
{
olive::Frame *f = static_cast<olive::Frame *>(frame);
if (!f || !video_params) {
if (!texture) {
return 0;
}
return tex(const_cast<void *>(texture))->ptr->id().toInt();
}
int oakengine_display_texture_is_dummy(const void *texture)
{
if (!texture) {
return 1;
}
return tex(const_cast<void *>(texture))->ptr->is_dummy() ? 1 : 0;
}
void *oakengine_display_texture_renderer(const void *texture)
{
if (!texture) {
return nullptr;
}
return tex(const_cast<void *>(texture))->ptr->renderer();
}
int oakengine_display_texture_width(const void *texture)
{
if (!texture) {
return 0;
}
return tex(const_cast<void *>(texture))->ptr->width();
}
int oakengine_display_texture_height(const void *texture)
{
if (!texture) {
return 0;
}
return tex(const_cast<void *>(texture))->ptr->height();
}
int oakengine_display_texture_format(const void *texture)
{
if (!texture) {
return 0;
}
return static_cast<int>(tex(const_cast<void *>(texture))->ptr->format());
}
int oakengine_display_texture_channel_count(const void *texture)
{
if (!texture) {
return 0;
}
return tex(const_cast<void *>(texture))->ptr->channel_count();
}
int oakengine_display_texture_params_equal(const void *a, const void *b)
{
if (!a || !b) {
return 0;
}
return tex(const_cast<void *>(a))->ptr->params() ==
tex(const_cast<void *>(b))->ptr->params();
}
/* ---- Frame handle ------------------------------------------------------- */
void *oakengine_codec_frame_create(void)
{
return new OakEngineCodecFrame{olive::Frame::create(), {1}};
}
void *oakengine_codec_frame_retain(void *frame)
{
if (!frame) {
return nullptr;
}
frm(frame)->refcount.fetch_add(1, std::memory_order_relaxed);
return frame;
}
void oakengine_codec_frame_free(void *frame)
{
if (!frame) {
return;
}
f->set_video_params(*static_cast<const olive::VideoParams *>(video_params));
if (frm(frame)->refcount.fetch_sub(1, std::memory_order_acq_rel) == 1) {
delete frm(frame);
}
}
int oakengine_codec_frame_set_video_params(void *frame,
const oak_video_params *params)
{
if (!frame || !params) {
return OAKENGINE_E_INVALID;
}
frm(frame)->ptr->set_video_params(pod_to_cpp(*params));
return OAKENGINE_OK;
}
int oakengine_codec_frame_get_params(const void *frame, oak_video_params *out)
{
if (!frame || !out) {
return OAKENGINE_E_INVALID;
}
*out = cpp_to_pod(frm(const_cast<void *>(frame))->ptr->video_params());
return OAKENGINE_OK;
}
int oakengine_codec_frame_allocate(void *frame)
{
olive::Frame *f = static_cast<olive::Frame *>(frame);
if (!f) {
if (!frame) {
return 0;
}
return f->allocate() ? 1 : 0;
return frm(frame)->ptr->allocate() ? 1 : 0;
}
void *oakengine_codec_frame_data(void *frame)
{
if (!frame) {
return nullptr;
}
return frm(frame)->ptr->data();
}
const void *oakengine_codec_frame_const_data(const void *frame)
{
if (!frame) {
return nullptr;
}
return frm(const_cast<void *>(frame))->ptr->const_data();
}
int oakengine_codec_frame_linesize(const void *frame)
{
if (!frame) {
return 0;
}
return frm(const_cast<void *>(frame))->ptr->linesize_pixels();
}
int oakengine_codec_frame_linesize_bytes(const void *frame)
{
if (!frame) {
return 0;
}
return frm(const_cast<void *>(frame))->ptr->linesize_bytes();
}
/* ---- Frame queries ------------------------------------------------------ */
int oakengine_codec_frame_width(const void *frame)
{
if (!frame) {
return 0;
}
return frm(const_cast<void *>(frame))->ptr->width();
}
int oakengine_codec_frame_height(const void *frame)
{
if (!frame) {
return 0;
}
return frm(const_cast<void *>(frame))->ptr->height();
}
int oakengine_codec_frame_format(const void *frame)
{
if (!frame) {
return 0;
}
return static_cast<int>(frm(const_cast<void *>(frame))->ptr->format());
}
int oakengine_codec_frame_channel_count(const void *frame)
{
if (!frame) {
return 0;
}
return frm(const_cast<void *>(frame))->ptr->channel_count();
}
int oakengine_codec_frame_is_allocated(const void *frame)
{
if (!frame) {
return 0;
}
return frm(const_cast<void *>(frame))->ptr->is_allocated() ? 1 : 0;
}
/* ---- Color-managed blit ------------------------------------------------- */
int oakengine_display_renderer_blit_color_managed(
void *renderer, const oak_color_transform_job *job,
void *dst_texture, const oak_video_params *params)
{
olive::Renderer *r = ren(renderer);
if (!r || !job) {
return OAKENGINE_E_INVALID;
}
olive::ColorTransformJob ctj;
if (job->processor) {
ctj.set_color_processor(
static_cast<const OakEngineColorProcessor *>(job->processor)->ptr);
}
if (job->input_texture) {
ctj.set_input_texture(tex(job->input_texture)->ptr);
}
ctj.set_input_alpha_association(
static_cast<olive::AlphaAssociated>(job->input_alpha_association));
ctj.set_clear_destination_enabled(job->clear_destination != 0);
ctj.set_force_opaque(job->force_opaque != 0);
ctj.set_transform_matrix(mat_from_float(job->matrix));
ctj.set_crop_matrix(mat_from_float(job->crop_matrix));
olive::Texture *dst = dst_texture ? tex(dst_texture)->ptr.get() : nullptr;
if (params) {
r->blit_color_managed(ctj, dst, pod_to_cpp(*params));
} else if (dst) {
r->blit_color_managed(ctj, dst, dst->params());
}
return OAKENGINE_OK;
}
/* ---- Cross-backend texture download ------------------------------------- */
int oakengine_display_renderer_download_from_texture(
void *renderer, int texture_id, const oak_video_params *params,
void *dst_pixels, int linesize)
{
olive::Renderer *r = ren(renderer);
if (!r || !params || !dst_pixels) {
return OAKENGINE_E_INVALID;
}
r->download_from_texture(texture_id, pod_to_cpp(*params), dst_pixels,
linesize);
return OAKENGINE_OK;
}
/* ---- Shader management -------------------------------------------------- */
void *oakengine_display_renderer_create_shader(void *renderer,
const char *frag_src,
const char *vert_src)
{
olive::Renderer *r = ren(renderer);
if (!r || !frag_src) {
return nullptr;
}
olive::ShaderCode code(QString::fromUtf8(frag_src),
vert_src ? QString::fromUtf8(vert_src) : QString());
QVariant *v = new QVariant(r->create_native_shader(code));
return v;
}
void *oakengine_display_renderer_create_blank_shader(void *renderer)
{
olive::Renderer *r = ren(renderer);
if (!r) {
return nullptr;
}
QVariant *v = new QVariant(r->create_native_shader(olive::ShaderCode()));
return v;
}
void oakengine_display_renderer_destroy_shader(void *renderer, void *shader)
{
olive::Renderer *r = ren(renderer);
if (!r || !shader) {
return;
}
QVariant *v = static_cast<QVariant *>(shader);
r->destroy_native_shader(*v);
delete v;
}
/* ---- Shader blit operations --------------------------------------------- */
int oakengine_display_renderer_blit_shader(void *renderer, void *shader,
void *texture,
const oak_video_params *viewport_params)
{
olive::Renderer *r = ren(renderer);
if (!r || !shader || !texture || !viewport_params) {
return OAKENGINE_E_INVALID;
}
QVariant *sv = static_cast<QVariant *>(shader);
olive::ShaderJob job;
job.insert(QStringLiteral("ove_maintex"),
olive::NodeValue(olive::NodeValue::k_texture,
QVariant::fromValue(tex(texture)->ptr)));
r->blit(*sv, job, pod_to_cpp(*viewport_params));
return OAKENGINE_OK;
}
int oakengine_display_renderer_blit_shader_to_texture(
void *renderer, void *shader, void *texture, void *dst_texture)
{
olive::Renderer *r = ren(renderer);
if (!r || !shader || !texture || !dst_texture) {
return OAKENGINE_E_INVALID;
}
QVariant *sv = static_cast<QVariant *>(shader);
olive::ShaderJob job;
job.insert(QStringLiteral("ove_maintex"),
olive::NodeValue(olive::NodeValue::k_texture,
QVariant::fromValue(tex(texture)->ptr)));
r->blit_to_texture(*sv, job, tex(dst_texture)->ptr.get());
return OAKENGINE_OK;
}
int oakengine_display_renderer_blit_shader_vec2_to_texture(
void *renderer, void *shader, void *texture,
const char *vec2_name, float vec2_x, float vec2_y,
void *dst_texture)
{
olive::Renderer *r = ren(renderer);
if (!r || !shader || !texture || !dst_texture) {
return OAKENGINE_E_INVALID;
}
QVariant *sv = static_cast<QVariant *>(shader);
olive::ShaderJob job;
job.insert(QStringLiteral("ove_maintex"),
olive::NodeValue(olive::NodeValue::k_texture,
QVariant::fromValue(tex(texture)->ptr)));
if (vec2_name) {
job.insert(QString::fromUtf8(vec2_name),
olive::NodeValue(olive::NodeValue::k_vec2,
QVector2D(vec2_x, vec2_y)));
}
r->blit_to_texture(*sv, job, tex(dst_texture)->ptr.get());
return OAKENGINE_OK;
}
int oakengine_display_renderer_blit_blank(
void *renderer, void *shader,
const float *mvp_matrix, const float *crop_matrix,
const oak_video_params *params)
{
olive::Renderer *r = ren(renderer);
if (!r || !shader || !params) {
return OAKENGINE_E_INVALID;
}
QVariant *sv = static_cast<QVariant *>(shader);
olive::ShaderJob job;
job.insert(QStringLiteral("ove_mvpmat"),
olive::NodeValue(olive::NodeValue::k_matrix,
mat_from_float(mvp_matrix)));
job.insert(QStringLiteral("ove_cropmatrix"),
olive::NodeValue(olive::NodeValue::k_matrix,
mat_from_float(crop_matrix)));
r->blit(*sv, job, pod_to_cpp(*params), false);
return OAKENGINE_OK;
}
int oakengine_display_renderer_blit_shader_multi(
void *renderer, void *shader,
const char *const *names, void *const *textures, int count,
void *dst_texture)
{
olive::Renderer *r = ren(renderer);
if (!r || !shader || !names || !textures || count <= 0 || !dst_texture) {
return OAKENGINE_E_INVALID;
}
QVariant *sv = static_cast<QVariant *>(shader);
olive::ShaderJob job;
for (int i = 0; i < count; i++) {
if (names[i] && textures[i]) {
job.insert(QString::fromUtf8(names[i]),
olive::NodeValue(olive::NodeValue::k_texture,
QVariant::fromValue(tex(textures[i])->ptr)));
}
}
r->blit_to_texture(*sv, job, tex(dst_texture)->ptr.get());
return OAKENGINE_OK;
}
int oakengine_display_renderer_blit_shader_uniforms(
void *renderer, void *shader, void *texture,
const oak_shader_uniform *uniforms, int uniform_count,
void *dst_texture, const oak_video_params *params)
{
olive::Renderer *r = ren(renderer);
if (!r || !shader || !texture) {
return OAKENGINE_E_INVALID;
}
QVariant *sv = static_cast<QVariant *>(shader);
olive::ShaderJob job;
job.insert(QStringLiteral("ove_maintex"),
olive::NodeValue(olive::NodeValue::k_texture,
QVariant::fromValue(tex(texture)->ptr)));
for (int i = 0; i < uniform_count; i++) {
if (!uniforms[i].name) {
continue;
}
QString name = QString::fromUtf8(uniforms[i].name);
switch (uniforms[i].type) {
case 0: // float
job.insert(name, olive::NodeValue(olive::NodeValue::k_float,
uniforms[i].values[0]));
break;
case 1: // vec2
job.insert(name, olive::NodeValue(olive::NodeValue::k_vec2,
QVector2D(uniforms[i].values[0],
uniforms[i].values[1])));
break;
case 2: // int/bool
job.insert(name, olive::NodeValue(olive::NodeValue::k_boolean,
static_cast<int>(uniforms[i].values[0]) != 0));
break;
case 3: // vec3
job.insert(name, olive::NodeValue(olive::NodeValue::k_vec3,
QVector3D(uniforms[i].values[0],
uniforms[i].values[1],
uniforms[i].values[2])));
break;
default:
break;
}
}
if (dst_texture) {
r->blit_to_texture(*sv, job, tex(dst_texture)->ptr.get());
} else if (params) {
r->blit(*sv, job, pod_to_cpp(*params));
} else {
return OAKENGINE_E_INVALID;
}
return OAKENGINE_OK;
}
/* ---- Renderer clear ----------------------------------------------------- */
void oakengine_display_renderer_clear(void *renderer, double r, double g,
double b)
{
olive::Renderer *rn = ren(renderer);
if (!rn) {
return;
}
rn->clear_destination(nullptr, r, g, b);
}
/* ---- Pixel readback ----------------------------------------------------- */
int oakengine_display_renderer_get_pixel(void *renderer, void *texture,
int x, int y, double *out_rgba)
{
olive::Renderer *r = ren(renderer);
if (!r || !texture || !out_rgba) {
return OAKENGINE_E_INVALID;
}
olive::Color c = r->get_pixel_from_texture(tex(texture)->ptr.get(),
QPoint(x, y));
out_rgba[0] = c.red();
out_rgba[1] = c.green();
out_rgba[2] = c.blue();
out_rgba[3] = c.alpha();
return OAKENGINE_OK;
}
} // extern "C"
/* ---- Internal C++ helpers (not exported via C ABI) ---------------------- */
void *oakengine_internal_wrap_texture(const olive::TexturePtr &tp)
{
if (!tp) {
return nullptr;
}
auto *blk = new OakEngineDisplayTexture;
blk->ptr = tp;
blk->refcount.store(1);
return blk;
}
void *oakengine_internal_wrap_frame(const olive::FramePtr &fp)
{
if (!fp) {
return nullptr;
}
auto *blk = new OakEngineCodecFrame;
blk->ptr = fp;
blk->refcount.store(1);
return blk;
}
olive::TexturePtr oakengine_internal_unwrap_texture(void *handle)
{
if (!handle) {
return nullptr;
}
return tex(handle)->ptr;
}
olive::FramePtr oakengine_internal_unwrap_frame(void *handle)
{
if (!handle) {
return nullptr;
}
return frm(handle)->ptr;
}
+54
View File
@@ -0,0 +1,54 @@
/***
Oak - Non-Linear Video Editor
Copyright (C) 2026 Oak Team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
#ifndef OAKENGINE_DISPLAYINTERNAL_H
#define OAKENGINE_DISPLAYINTERNAL_H
// Internal (not installed) helpers for bridging engine-internal TexturePtr /
// FramePtr to the opaque C ABI handles defined in capi/display.cpp.
#include "render/texture.h"
#include "codec/frame.h"
/**
* @brief Wrap an existing TexturePtr into a refcounted ABI handle (refcount=1).
* Returns nullptr if tp is null.
*/
void *oakengine_internal_wrap_texture(const olive::TexturePtr &tp);
/**
* @brief Wrap an existing FramePtr into a refcounted ABI handle (refcount=1).
* Returns nullptr if fp is null.
*/
void *oakengine_internal_wrap_frame(const olive::FramePtr &fp);
/**
* @brief Unwrap an ABI texture handle to the underlying TexturePtr.
* Returns empty TexturePtr if handle is null.
*/
olive::TexturePtr oakengine_internal_unwrap_texture(void *handle);
/**
* @brief Unwrap an ABI frame handle to the underlying FramePtr.
* Returns empty FramePtr if handle is null.
*/
olive::FramePtr oakengine_internal_unwrap_frame(void *handle);
#endif // OAKENGINE_DISPLAYINTERNAL_H