io.qt.qt3d.render.QTextureBuffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-qt3drender Show documentation
Show all versions of qtjambi-qt3drender Show documentation
Contains classes that enable 2D and 3D rendering
The newest version!
package io.qt.qt3d.render;
import io.qt.*;
/**
* A QAbstractTexture with a TargetBuffer target format
* Java wrapper for Qt class Qt3DRender::QTextureBuffer
*/
public class QTextureBuffer extends io.qt.qt3d.render.QAbstractTexture
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QTextureBuffer.class);
/**
* See Qt3DRender::QTextureBuffer:: QTextureBuffer(Qt3DCore::QNode*)
* @param parent
*/
@SuppressWarnings({"exports"})
public QTextureBuffer(io.qt.qt3d.core.@Nullable QNode parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QTextureBuffer instance, io.qt.qt3d.core.QNode parent);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QTextureBuffer(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QTextureBuffer(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QTextureBuffer instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QTextureBuffer(io.qt.qt3d.core.QNode)}
* with parent = null
.
*/
public QTextureBuffer() {
this((io.qt.qt3d.core.QNode)null);
}
}