io.qt.qt3d.render.QNoDraw Maven / Gradle / Ivy
package io.qt.qt3d.render;
import io.qt.*;
/**
* When a Qt3DRender::QNoDraw node is present in a FrameGraph branch, this prevents the renderer from rendering any primitive
* Java wrapper for Qt class Qt3DRender::QNoDraw
*/
public class QNoDraw extends io.qt.qt3d.render.QFrameGraphNode
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QNoDraw.class);
/**
* See Qt3DRender::QNoDraw:: QNoDraw(Qt3DCore::QNode*)
* @param parent
*/
@SuppressWarnings({"exports"})
public QNoDraw(io.qt.qt3d.core.@Nullable QNode parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QNoDraw instance, io.qt.qt3d.core.QNode parent);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QNoDraw(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QNoDraw(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QNoDraw instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QNoDraw(io.qt.qt3d.core.QNode)}
* with parent = null
.
*/
public QNoDraw() {
this((io.qt.qt3d.core.QNode)null);
}
}