org.lwjgl.util.remotery.LibRemotery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-remotery Show documentation
Show all versions of lwjgl-remotery Show documentation
A realtime CPU/GPU profiler hosted in a single C file with a viewer that runs in a web browser.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.util.remotery;
import org.lwjgl.system.*;
/** Initializes the remotery shared library. */
final class LibRemotery {
static {
String libName = Platform.mapLibraryNameBundled("lwjgl_remotery");
Library.loadSystem(System::load, System::loadLibrary, LibRemotery.class, libName);
}
private LibRemotery() {
}
static void initialize() {
// intentionally empty to trigger static initializer
}
}