![JAR search and dependency download from the Maven repository](/logo.png)
jogamp.nativewindow.windows.DWM_BLURBEHIND Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jogl-all Show documentation
Show all versions of jogl-all Show documentation
Java™ Binding for the OpenGL® API
/* !---- DO NOT EDIT: This file autogenerated by com/jogamp/gluegen/JavaEmitter.java on Tue Jun 25 21:03:59 CEST 2013 ----! */
package jogamp.nativewindow.windows;
import java.nio.*;
import com.jogamp.gluegen.runtime.*;
import com.jogamp.common.os.*;
import com.jogamp.common.nio.*;
import jogamp.common.os.MachineDescriptionRuntime;
import javax.media.nativewindow.util.Point;
import javax.media.nativewindow.NativeWindowException;
import jogamp.nativewindow.NWJNILibLoader;
import jogamp.nativewindow.Debug;
public class DWM_BLURBEHIND {
StructAccessor accessor;
private static final int mdIdx = MachineDescriptionRuntime.getStatic().ordinal();
private static final int[] DWM_BLURBEHIND_size = new int[] { 16 /* ARMle_EABI */, 16 /* X86_32_UNIX */, 24 /* X86_64_UNIX */, 16 /* X86_32_MACOS */, 16 /* X86_32_WINDOWS */, 24 /* X86_64_WINDOWS */, 16 /* SPARC_32_SUNOS */ };
private static final int[] dwFlags_offset = new int[] { 0 /* ARMle_EABI */, 0 /* X86_32_UNIX */, 0 /* X86_64_UNIX */, 0 /* X86_32_MACOS */, 0 /* X86_32_WINDOWS */, 0 /* X86_64_WINDOWS */, 0 /* SPARC_32_SUNOS */ };
private static final int[] fEnable_offset = new int[] { 4 /* ARMle_EABI */, 4 /* X86_32_UNIX */, 4 /* X86_64_UNIX */, 4 /* X86_32_MACOS */, 4 /* X86_32_WINDOWS */, 4 /* X86_64_WINDOWS */, 4 /* SPARC_32_SUNOS */ };
private static final int[] hRgnBlur_offset = new int[] { 8 /* ARMle_EABI */, 8 /* X86_32_UNIX */, 8 /* X86_64_UNIX */, 8 /* X86_32_MACOS */, 8 /* X86_32_WINDOWS */, 8 /* X86_64_WINDOWS */, 8 /* SPARC_32_SUNOS */ };
private static final int[] fTransitionOnMaximized_offset = new int[] { 12 /* ARMle_EABI */, 12 /* X86_32_UNIX */, 16 /* X86_64_UNIX */, 12 /* X86_32_MACOS */, 12 /* X86_32_WINDOWS */, 16 /* X86_64_WINDOWS */, 12 /* SPARC_32_SUNOS */ };
public static int size() {
return DWM_BLURBEHIND_size[mdIdx];
}
public static DWM_BLURBEHIND create() {
return create(Buffers.newDirectByteBuffer(size()));
}
public static DWM_BLURBEHIND create(java.nio.ByteBuffer buf) {
return new DWM_BLURBEHIND(buf);
}
DWM_BLURBEHIND(java.nio.ByteBuffer buf) {
accessor = new StructAccessor(buf);
}
public java.nio.ByteBuffer getBuffer() {
return accessor.getBuffer();
}
public DWM_BLURBEHIND setDwFlags(int val) {
accessor.setIntAt(dwFlags_offset[mdIdx], val);
return this;
}
public int getDwFlags() {
return accessor.getIntAt(dwFlags_offset[mdIdx]);
}
public DWM_BLURBEHIND setFEnable(int val) {
accessor.setIntAt(fEnable_offset[mdIdx], val, MachineDescriptionRuntime.getStatic().md.intSizeInBytes());
return this;
}
public int getFEnable() {
return accessor.getIntAt(fEnable_offset[mdIdx], MachineDescriptionRuntime.getStatic().md.intSizeInBytes());
}
public DWM_BLURBEHIND setHRgnBlur(long val) {
accessor.setLongAt(hRgnBlur_offset[mdIdx], val, MachineDescriptionRuntime.getStatic().md.pointerSizeInBytes());
return this;
}
public long getHRgnBlur() {
return accessor.getLongAt(hRgnBlur_offset[mdIdx], MachineDescriptionRuntime.getStatic().md.pointerSizeInBytes());
}
public DWM_BLURBEHIND setFTransitionOnMaximized(int val) {
accessor.setIntAt(fTransitionOnMaximized_offset[mdIdx], val, MachineDescriptionRuntime.getStatic().md.intSizeInBytes());
return this;
}
public int getFTransitionOnMaximized() {
return accessor.getIntAt(fTransitionOnMaximized_offset[mdIdx], MachineDescriptionRuntime.getStatic().md.intSizeInBytes());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy