mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 21:12:25 +02:00
Canvas basic image submission fully working
This commit is contained in:
parent
b28bac1f5f
commit
43d6bb298d
4 changed files with 8 additions and 12 deletions
|
@ -17,6 +17,4 @@ CanvasEntityRenderer::~CanvasEntityRenderer() { }
|
|||
|
||||
void CanvasEntityRenderer::doRenderUpdateAsynchronousTyped(const TypedEntityPointer& entity) {
|
||||
_texture = entity->getTexture();
|
||||
|
||||
qDebug() << "CanvasEntityRenderer::doRenderUpdateAsynchronousTyped";
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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<uint32_t>& destRect, const QVector<uint32_t>& srcRect) {
|
||||
qCWarning(entities) << "canvasSubmitSubImage unimplemented! called on " << entityID;
|
||||
}
|
||||
|
|
|
@ -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<uint32_t>& destRect, const QVector<uint32_t>& srcRect);
|
||||
|
||||
signals:
|
||||
/*@jsdoc
|
||||
* Triggered on the client that is the physics simulation owner during the collision of two entities. Note: Isn't triggered
|
||||
|
|
Loading…
Reference in a new issue