All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.glfw.GLFWNativeX11 Maven / Gradle / Ivy

Go to download

An multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop. It provides a simple API for creating windows, contexts and surfaces, receiving input and events.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.glfw;

import java.nio.*;

import org.lwjgl.system.*;

import static org.lwjgl.system.APIUtil.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.JNI.*;
import static org.lwjgl.system.MemoryStack.*;
import static org.lwjgl.system.MemoryUtil.*;

/** Native bindings to the GLFW library's X11 native access functions. */
public class GLFWNativeX11 {

    protected GLFWNativeX11() {
        throw new UnsupportedOperationException();
    }

    /** Contains the function pointers loaded from {@code GLFW.getLibrary()}. */
    public static final class Functions {

        private Functions() {}

        /** Function address. */
        public static final long
            GetX11Display         = apiGetFunctionAddress(GLFW.getLibrary(), "glfwGetX11Display"),
            GetX11Adapter         = apiGetFunctionAddress(GLFW.getLibrary(), "glfwGetX11Adapter"),
            GetX11Monitor         = apiGetFunctionAddress(GLFW.getLibrary(), "glfwGetX11Monitor"),
            GetX11Window          = apiGetFunctionAddress(GLFW.getLibrary(), "glfwGetX11Window"),
            SetX11SelectionString = apiGetFunctionAddress(GLFW.getLibrary(), "glfwSetX11SelectionString"),
            GetX11SelectionString = apiGetFunctionAddress(GLFW.getLibrary(), "glfwGetX11SelectionString");

    }

    // --- [ glfwGetX11Display ] ---

    /**
     * Returns the {@code Display} used by GLFW.
     * 
     * 

Note: This function may be called from any thread. Access is not synchronized.

* * @return The {@code Display} used by GLFW, or {@code NULL} if an error occurred. * * @since version 3.0 */ @NativeType("Display *") public static long glfwGetX11Display() { long __functionAddress = Functions.GetX11Display; return invokeP(__functionAddress); } // --- [ glfwGetX11Adapter ] --- /** * Returns the {@code RRCrtc} of the specified monitor. * *

Note: This function may be called from any thread. Access is not synchronized.

* * @param monitor the GLFW monitor * * @return The {@code RRCrtc} of the specified monitor, or {@code None} if an error occurred. * * @since version 3.1 */ @NativeType("RRCrtc") public static long glfwGetX11Adapter(@NativeType("GLFWmonitor *") long monitor) { long __functionAddress = Functions.GetX11Adapter; if (CHECKS) { check(monitor); } return invokePP(__functionAddress, monitor); } // --- [ glfwGetX11Monitor ] --- /** * Returns the {@code RROutput} of the specified monitor. * *

Note: This function may be called from any thread. Access is not synchronized.

* * @param monitor the GLFW monitor * * @return The {@code RROutput} of the specified monitor, or {@code None} if an error occurred. * * @since version 3.1 */ @NativeType("RROutput") public static long glfwGetX11Monitor(@NativeType("GLFWmonitor *") long monitor) { long __functionAddress = Functions.GetX11Monitor; if (CHECKS) { check(monitor); } return invokePP(__functionAddress, monitor); } // --- [ glfwGetX11Window ] --- /** * Returns the {@code Window} of the specified window. * *

Note: This function may be called from any thread. Access is not synchronized.

* * @param window a GLFW window * * @return The {@code Window} of the specified window, or {@code None} if an error occurred. * * @since version 3.0 */ @NativeType("Window") public static long glfwGetX11Window(@NativeType("GLFWwindow *") long window) { long __functionAddress = Functions.GetX11Window; if (CHECKS) { check(window); } return invokePP(__functionAddress, window); } // --- [ glfwSetX11SelectionString ] --- /** Unsafe version of: {@link #glfwSetX11SelectionString SetX11SelectionString} */ public static void nglfwSetX11SelectionString(long string) { long __functionAddress = Functions.SetX11SelectionString; invokePV(__functionAddress, string); } /** * Sets the current primary selection to the specified string. * *

This function must only be called from the main thread.

* * @param string a UTF-8 encoded string. The specified string is copied before this function returns. * * @since version 3.3 */ public static void glfwSetX11SelectionString(@NativeType("const char *") ByteBuffer string) { if (CHECKS) { checkNT1(string); } nglfwSetX11SelectionString(memAddress(string)); } /** * Sets the current primary selection to the specified string. * *

This function must only be called from the main thread.

* * @param string a UTF-8 encoded string. The specified string is copied before this function returns. * * @since version 3.3 */ public static void glfwSetX11SelectionString(@NativeType("const char *") CharSequence string) { MemoryStack stack = stackGet(); int stackPointer = stack.getPointer(); try { ByteBuffer stringEncoded = stack.UTF8(string); nglfwSetX11SelectionString(memAddress(stringEncoded)); } finally { stack.setPointer(stackPointer); } } // --- [ glfwGetX11SelectionString ] --- /** Unsafe version of: {@link #glfwGetX11SelectionString GetX11SelectionString} */ public static long nglfwGetX11SelectionString() { long __functionAddress = Functions.GetX11SelectionString; return invokeP(__functionAddress); } /** * Returns the contents of the current primary selection as a string. * *

If the selection is empty or if its contents cannot be converted, {@code NULL} is returned and a {@link GLFW#GLFW_FORMAT_UNAVAILABLE FORMAT_UNAVAILABLE} error is generated.

* *

The returned string is allocated and freed by GLFW. You should not free it yourself. It is valid until the next call to {@link #glfwGetX11SelectionString GetX11SelectionString} or * {@link #glfwSetX11SelectionString SetX11SelectionString}, or until the library is terminated.

* *

This function must only be called from the main thread.

* * @return the contents of the selection as a UTF-8 encoded string, or {@code NULL} if an error occurred * * @since version 3.3 */ @NativeType("const char *") public static String glfwGetX11SelectionString() { long __result = nglfwGetX11SelectionString(); return memUTF8(__result); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy