From 43d6bb298df8cb2937245f92e682ef02e0e6711d Mon Sep 17 00:00:00 2001 From: Ada Date: Thu, 27 Feb 2025 07:50:49 +1000 Subject: [PATCH] Canvas basic image submission fully working --- .../src/RenderableCanvasEntityItem.cpp | 2 -- libraries/entities/src/CanvasEntityItem.cpp.in | 1 + libraries/entities/src/EntityScriptingInterface.cpp | 4 ---- libraries/entities/src/EntityScriptingInterface.h | 13 +++++++------ 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/libraries/entities-renderer/src/RenderableCanvasEntityItem.cpp b/libraries/entities-renderer/src/RenderableCanvasEntityItem.cpp index c25fd1d4fc..2db3a6d601 100644 --- a/libraries/entities-renderer/src/RenderableCanvasEntityItem.cpp +++ b/libraries/entities-renderer/src/RenderableCanvasEntityItem.cpp @@ -17,6 +17,4 @@ CanvasEntityRenderer::~CanvasEntityRenderer() { } void CanvasEntityRenderer::doRenderUpdateAsynchronousTyped(const TypedEntityPointer& entity) { _texture = entity->getTexture(); - - qDebug() << "CanvasEntityRenderer::doRenderUpdateAsynchronousTyped"; } diff --git a/libraries/entities/src/CanvasEntityItem.cpp.in b/libraries/entities/src/CanvasEntityItem.cpp.in index 2effb5f591..dfcfb62724 100644 --- a/libraries/entities/src/CanvasEntityItem.cpp.in +++ b/libraries/entities/src/CanvasEntityItem.cpp.in @@ -116,6 +116,7 @@ void CanvasEntityItem::setImageData(const QByteArray& data) { _texture = texture; setNeedsRenderUpdate(true); + somethingChangedNotification(); } void CanvasEntityItem::setImageSubData(const QByteArray& data, uint32_t dx, uint32_t dy, uint32_t dw, uint32_t dh, uint32_t sx, uint32_t sy, uint32_t sw, uint32_t sh) { diff --git a/libraries/entities/src/EntityScriptingInterface.cpp b/libraries/entities/src/EntityScriptingInterface.cpp index c5c1c94172..c751f0680a 100644 --- a/libraries/entities/src/EntityScriptingInterface.cpp +++ b/libraries/entities/src/EntityScriptingInterface.cpp @@ -2709,7 +2709,3 @@ void EntityScriptingInterface::canvasSubmitImage(const QUuid& entityID, const QB qCWarning(entities) << "canvasSubmitImage called on a non-canvas entity " << entityID; } } - -void EntityScriptingInterface::canvasSubmitSubImage(const QUuid& entityID, const QByteArray& imageData, const QVector& destRect, const QVector& srcRect) { - qCWarning(entities) << "canvasSubmitSubImage unimplemented! called on " << entityID; -} diff --git a/libraries/entities/src/EntityScriptingInterface.h b/libraries/entities/src/EntityScriptingInterface.h index 3bd4deefbc..cdc427da1f 100644 --- a/libraries/entities/src/EntityScriptingInterface.h +++ b/libraries/entities/src/EntityScriptingInterface.h @@ -2196,15 +2196,16 @@ public slots: Q_INVOKABLE const EntityPropertyInfo getPropertyInfo(const QString& propertyName) const; /*@jsdoc - * TODO + * Submits an sRGBA8 buffer to a Canvas entity. The buffer must be the correct + * size for the canvas entity (4 * width * height) or nothing will happen. + * This function only has client-side effects, the image data will not be + * sent across the network. + * @function Entities.canvasSubmitImage + * @param {Uuid} entityID - The Canvas entity that this image will be submitted to. + * @param {ArrayBuffer} imageData - The sRGBA8 image data to submit. */ Q_INVOKABLE void canvasSubmitImage(const QUuid& entityID, const QByteArray& imageData); - /*@jsdoc - * TODO - */ - Q_INVOKABLE void canvasSubmitSubImage(const QUuid& entityID, const QByteArray& imageData, const QVector& destRect, const QVector& srcRect); - signals: /*@jsdoc * Triggered on the client that is the physics simulation owner during the collision of two entities. Note: Isn't triggered