diff --git a/.cirrus.yml b/.cirrus.yml deleted file mode 100644 index 723d5c5..0000000 --- a/.cirrus.yml +++ /dev/null @@ -1,51 +0,0 @@ -# download at https://api.cirrus-ci.com/v1/artifact/github/electronstudio/jaylib/main/binary.zip - - -mac_task: - macos_instance: - image: ghcr.io/cirruslabs/macos-sonoma-xcode:latest - env: - RAYLIB_PLATFORM: macosx-arm64 - RAYLIB_VERSION: 5.5.0-3 - setup_script: - - brew update - - brew install java11 - - sudo ln -sfn /opt/homebrew/opt/openjdk@11/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-11.jdk - - export CPPFLAGS="-I/opt/homebrew/opt/openjdk@11/include" - build_raylib_script: - - git submodule update --init --recursive - - cd raylib - - mkdir build - - cd build - - cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. - - make -j8 - - sudo make install - build_script: - - ./build-java.sh - - ./build-native.sh - artifacts: - path: "./*macos*.jar" - -pi_task: - arm_container: - image: dtcooper/raspberrypi-os:python-bullseye - env: - RAYLIB_PLATFORM: linux-arm64 - RAYLIB_VERSION: 5.5.0-3 - setup_script: - - apt update - - apt -y install openjdk-11-jdk cmake libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev - build_raylib_script: - - git submodule update --init --recursive - - cd raylib - - mkdir build - - cd build - - cmake -DPLATFORM="Desktop" -DOPENGL_VERSION=2.1 -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. - - make -j2 - - make install - - find /usr/lib - build_script: - - ./build-java.sh - - ./build-native.sh - artifacts: - path: "./*linux*.jar" \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2e9645e..f05bbb9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,11 +9,13 @@ on: workflow_dispatch: env: - RAYLIB_VERSION: 5.5.0-3 + RAYLIB_VERSION: 6.0.1-0 jobs: build-linux: runs-on: ubuntu-latest + env: + RAYLIB_PLATFORM: linux-x86_64 container: image: electronstudio/ubuntu16-modern:latest options: --user root @@ -21,12 +23,22 @@ jobs: # override /__e/node20 because GitHub Actions uses a version that requires too-recent glibc - /tmp:/__e/node20 - steps: - name: fix node run: | ln -s /usr/local/bin /__e/node20/bin + - name: Build SDL + run: | + wget https://github.com/libsdl-org/SDL/releases/download/release-3.4.4/SDL3-3.4.4.tar.gz + tar xvfz SDL3-3.4.4.tar.gz + sed -i 's/#define SDL_DYNAMIC_API 1/#define SDL_DYNAMIC_API 0/' SDL3-3.4.4/src/dynapi/SDL_dynapi.h + mkdir build + cd build + cmake ../SDL3-3.4.4 -DSDL_SHARED=OFF -DSDL_STATIC=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release -DSDL_VULKAN=OFF -DSDL_CAMERA=OFF -DSDL_GPU=OFF -DSDL_TEST_LIBRARY=OFF -DSDL_TESTS=OFF -DSDL_RENDER=OFF -DSDL_HAPTIC=OFF + cmake --build . --config Release + cmake --install . + - uses: actions/checkout@v2 with: submodules: recursive @@ -36,18 +48,27 @@ jobs: cd raylib mkdir build cd build - cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. + cmake -DPLATFORM="SDL" -DOPENGL_VERSION="3.3" -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. make -j2 make install - name: Build jaylib - env: - RAYLIB_PLATFORM: linux-x86_64 run: | ./build-java.sh ./build-native.sh ./build-docs.sh + - name: Test + run: | + java -cp jaylib-$RAYLIB_VERSION.jar:jaylib-natives-$RAYLIB_PLATFORM-$RAYLIB_VERSION.jar com.raylib.Test >/tmp/output 2>&1 || true + cat /tmp/output + if grep -q "INFO: Initializing raylib" /tmp/output; then + echo "Passed" + else + echo "Failed" + exit 1 + fi + - name: Upload jar uses: actions/upload-artifact@v4 with: @@ -56,6 +77,8 @@ jobs: build-linux-32bit: runs-on: ubuntu-latest + env: + RAYLIB_PLATFORM: linux-x86 container: image: electronstudio/ubuntu16-modern:i386 options: --user root @@ -68,6 +91,23 @@ jobs: run: | ln -s /usr/local/bin /__e/node20/bin + - name: update cmake + run: | + wget https://github.com/Kitware/CMake/releases/download/v3.31.10/cmake-3.31.10-linux-x86_64.tar.gz + tar xvfz cmake-3.31.10-linux-x86_64.tar.gz + cp -r cmake-3.31.10-linux-x86_64/* /usr/ + + - name: Build SDL + run: | + wget https://github.com/libsdl-org/SDL/releases/download/release-3.4.4/SDL3-3.4.4.tar.gz + tar xvfz SDL3-3.4.4.tar.gz + sed -i 's/#define SDL_DYNAMIC_API 1/#define SDL_DYNAMIC_API 0/' SDL3-3.4.4/src/dynapi/SDL_dynapi.h + mkdir build + cd build + cmake ../SDL3-3.4.4 -DSDL_SHARED=OFF -DSDL_STATIC=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release -DSDL_VULKAN=OFF -DSDL_CAMERA=OFF -DSDL_GPU=OFF -DSDL_TEST_LIBRARY=OFF -DSDL_TESTS=OFF -DSDL_RENDER=OFF -DSDL_HAPTIC=OFF + cmake --build . --config Release + cmake --install . + - uses: actions/checkout@v2 with: submodules: recursive @@ -77,61 +117,96 @@ jobs: cd raylib mkdir build cd build - cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DOPENGL_VERSION=2.1 -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. + cmake -DPLATFORM="SDL" -DOPENGL_VERSION="Software" -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. make -j2 make install - name: Build jaylib - env: - RAYLIB_PLATFORM: linux-x86 run: | ./build-java.sh ./build-native.sh ./build-docs.sh + - name: Test + run: | + java -cp jaylib-$RAYLIB_VERSION.jar:jaylib-natives-$RAYLIB_PLATFORM-$RAYLIB_VERSION.jar com.raylib.Test >/tmp/output 2>&1 || true + cat /tmp/output + if grep -q "INFO: Initializing raylib" /tmp/output; then + echo "Passed" + else + echo "Failed" + exit 1 + fi + - name: Upload jar uses: actions/upload-artifact@v4 with: name: jaylib-linux-x86 path: ./jaylib-natives*.jar -# build-linux-arm: -# runs-on: rpi -# -# steps: -# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it -# - uses: actions/checkout@v2 -# with: -# submodules: recursive -# -# -# - name: Build raylib -# run: | -# cd raylib -# mkdir build -# cd build -# cmake -DBUILD_EXAMPLES=off -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release -DOpenGL_GL_PREFERENCE=GLVND .. -# make -j2 -# make install -# -# - name: Build jaylib -# env: -# RAYLIB_PLATFORM: linux-armhf -# run: | -# ./build-java.sh -# ./build-native.sh -# -# - name: Upload jar -# uses: actions/upload-artifact@v2.2.4 -# with: -# name: jar -# path: ./*.jar - - - build-mac: - runs-on: macos-13 + build-linux-arm64: + runs-on: ubuntu-22.04-arm + env: + RAYLIB_PLATFORM: linux-arm64 + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + with: + submodules: recursive + + - name: install libs + run: | + sudo apt update + sudo apt -y install cmake libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev libgbm-dev libdrm-dev + + - name: Build SDL + run: | + wget https://github.com/libsdl-org/SDL/releases/download/release-3.4.4/SDL3-3.4.4.tar.gz + tar xvfz SDL3-3.4.4.tar.gz + sed -i 's/#define SDL_DYNAMIC_API 1/#define SDL_DYNAMIC_API 0/' SDL3-3.4.4/src/dynapi/SDL_dynapi.h + mkdir build + cd build + cmake ../SDL3-3.4.4 -DSDL_SHARED=OFF -DSDL_STATIC=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release -DSDL_VULKAN=OFF -DSDL_CAMERA=OFF -DSDL_GPU=OFF -DSDL_TEST_LIBRARY=OFF -DSDL_TESTS=OFF -DSDL_RENDER=OFF -DSDL_HAPTIC=OFF -DSDL_TEST_LIBRARY=OFF -DSDL_TESTS=OFF -DSDL_RENDER=OFF -DSDL_HAPTIC=OFF + cmake --build . --config Release + sudo cmake --install . + + - name: Build raylib with SDL if selected + run: | + cd raylib + mkdir build + cd build + cmake -DPLATFORM="SDL" -DOPENGL_VERSION="2.1" -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. + make -j2 + sudo make install + + - name: Build jaylib + run: | + ./build-java.sh + ./build-native.sh + ./build-docs.sh + + - name: Test + run: | + java -cp jaylib-$RAYLIB_VERSION.jar:jaylib-natives-$RAYLIB_PLATFORM-$RAYLIB_VERSION.jar com.raylib.Test >/tmp/output 2>&1 || true + cat /tmp/output + if grep -q "INFO: Initializing raylib" /tmp/output; then + echo "Passed" + else + echo "Failed" + exit 1 + fi + + - name: Upload jar + uses: actions/upload-artifact@v4 + with: + name: jaylib-linux-arm64 + path: ./jaylib-natives*.jar + + build-mac-intel: + runs-on: macos-15-intel env: MACOSX_DEPLOYMENT_TARGET: 10.14 + RAYLIB_PLATFORM: macosx-x86_64 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it @@ -139,38 +214,119 @@ jobs: with: submodules: recursive - - uses: actions/setup-java@v2 + - uses: actions/setup-java@v5 with: - distribution: 'adopt' # See 'Supported distributions' for available options - java-version: '8' + distribution: "temurin" # See 'Supported distributions' for available options + java-version: "8" + architecture: "x64" + - name: Build SDL + run: | + wget https://github.com/libsdl-org/SDL/releases/download/release-3.4.4/SDL3-3.4.4.tar.gz + tar xvfz SDL3-3.4.4.tar.gz + sed -i '' 's/#define SDL_DYNAMIC_API 1/#define SDL_DYNAMIC_API 0/' SDL3-3.4.4/src/dynapi/SDL_dynapi.h + mkdir build + cd build + cmake ../SDL3-3.4.4 -DSDL_SHARED=OFF -DSDL_STATIC=ON -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release -DSDL_VULKAN=OFF -DSDL_CAMERA=OFF -DSDL_GPU=OFF -DSDL_TEST_LIBRARY=OFF -DSDL_TESTS=OFF -DSDL_RENDER=OFF -DSDL_HAPTIC=OFF + cmake --build . --config Release + sudo cmake --install . - # build raylib for arm64 and x86_64 as well - name: Build raylib run: | cd raylib mkdir build cd build - cmake -DBUILD_EXAMPLES=OFF -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. + cmake -DPLATFORM="SDL" -DOPENGL_VERSION="3.3" -DBUILD_EXAMPLES=OFF -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. make -j2 sudo make install - - name: Build jaylib - env: - RAYLIB_PLATFORM: macosx-x86_64 run: | ./build-java.sh ./build-native.sh + - name: Test + run: | + java -cp jaylib-$RAYLIB_VERSION.jar:jaylib-natives-$RAYLIB_PLATFORM-$RAYLIB_VERSION.jar com.raylib.Test >/tmp/output 2>&1 || true + cat /tmp/output + if grep -q "INFO: Initializing raylib" /tmp/output; then + echo "Passed" + else + echo "Failed" + exit 1 + fi + - name: Upload jar uses: actions/upload-artifact@v4 with: name: jaylib-macosx-x86_64 path: ./*macosx-x86_64*.jar + build-mac-arm64: + runs-on: macos-26 + env: + MACOSX_DEPLOYMENT_TARGET: 11.0 + RAYLIB_PLATFORM: macosx-arm64 + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + submodules: recursive + + - uses: actions/setup-java@v5 + with: + distribution: "temurin" # See 'Supported distributions' for available options + java-version: "11" + architecture: "aarch64" + + - name: Build SDL + run: | + wget https://github.com/libsdl-org/SDL/releases/download/release-3.4.4/SDL3-3.4.4.tar.gz + tar xvfz SDL3-3.4.4.tar.gz + sed -i '' 's/#define SDL_DYNAMIC_API 1/#define SDL_DYNAMIC_API 0/' SDL3-3.4.4/src/dynapi/SDL_dynapi.h + mkdir build + cd build + cmake ../SDL3-3.4.4 -DSDL_SHARED=OFF -DSDL_STATIC=ON -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release -DSDL_VULKAN=OFF -DSDL_CAMERA=OFF -DSDL_GPU=OFF -DSDL_TEST_LIBRARY=OFF -DSDL_TESTS=OFF -DSDL_RENDER=OFF -DSDL_HAPTIC=OFF + cmake --build . --config Release + sudo cmake --install . + + - name: Build raylib + run: | + cd raylib + mkdir build + cd build + cmake -DPLATFORM="SDL" -DOPENGL_VERSION="3.3" -DBUILD_EXAMPLES=OFF -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. + make -j2 + sudo make install + + - name: Build jaylib + run: | + ./build-java.sh + ./build-native.sh + + - name: Test + run: | + ls *.jar + java -cp jaylib-$RAYLIB_VERSION.jar:jaylib-natives-$RAYLIB_PLATFORM-$RAYLIB_VERSION.jar com.raylib.Test >/tmp/output 2>&1 || true + cat /tmp/output + if grep -q "INFO: Initializing raylib" /tmp/output; then + echo "Passed" + else + echo "Failed" + exit 1 + fi + + - name: Upload jar + uses: actions/upload-artifact@v4 + with: + name: jaylib-macosx-arm64 + path: ./*macosx-arm64*.jar + build-windows: runs-on: windows-2022 + env: + RAYLIB_PLATFORM: windows-x86_64 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it @@ -178,21 +334,36 @@ jobs: with: submodules: recursive - - uses: actions/setup-java@v2 + - uses: actions/setup-java@v5 with: - distribution: 'adopt' # See 'Supported distributions' for available options - java-version: '8' - + distribution: "temurin" # See 'Supported distributions' for available options + java-version: "8" + architecture: "x64" - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.0.2 + - name: Download SDL3 + run: curl -L -o SDL3.zip https://github.com/libsdl-org/SDL/releases/download/release-3.4.4/SDL3-devel-3.4.4-VC.zip + + - name: Unpack SDL3 + shell: bash + run: | + mkdir -p "${{ runner.temp }}/SDL3" + mkdir -p "${{ runner.temp }}/ziptmp" + unzip SDL3.zip -d "${{ runner.temp }}/ziptmp" + mv "${{ runner.temp }}/ziptmp"/*/* "${{ runner.temp }}/SDL3" + cp -v "${{ runner.temp }}/SDL3/lib/x64/"* . + + - name: Set SDL3_DIR environment variable + run: echo SDL3_DIR=${{ runner.temp }}\SDL3\cmake >> $env:GITHUB_ENV + - name: Build raylib run: | cd raylib mkdir build cd build - cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. + cmake -DPLATFORM="SDL" -DOPENGL_VERSION="3.3" -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. msbuild raylib.sln /target:raylib /property:Configuration=Release copy raylib\Release\raylib.lib ..\.. cd ..\.. @@ -200,12 +371,23 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 - name: Build jaylib - env: - RAYLIB_PLATFORM: windows-x86_64 run: | build-windows.bat shell: cmd + - name: Test + shell: bash + run: | + javac -cp "build;javacpp.jar" -d build src/com/raylib/*.java + java -cp "build;javacpp.jar;jaylib-natives-${RAYLIB_PLATFORM}-${RAYLIB_VERSION}.jar" com.raylib.Test >/tmp/output 2>&1 || true + cat /tmp/output + if grep -q "INFO: Initializing raylib" /tmp/output; then + echo "Passed" + else + echo "Failed" + exit 1 + fi + - name: Upload jar uses: actions/upload-artifact@v4 with: @@ -214,6 +396,8 @@ jobs: build-windows32: runs-on: windows-2022 + env: + RAYLIB_PLATFORM: windows-x86 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it @@ -223,22 +407,36 @@ jobs: - uses: actions/setup-java@v2 with: - distribution: 'adopt' # See 'Supported distributions' for available options - java-version: '8' - architecture: 'x86' - + distribution: "temurin" # See 'Supported distributions' for available options + java-version: "8" + architecture: "x86" - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v2 with: msbuild-architecture: x86 + # - name: Download SDL3 + # run: curl -L -o SDL3.zip https://github.com/libsdl-org/SDL/releases/download/release-3.4.4/SDL3-devel-3.4.4-VC.zip + + # - name: Unpack SDL3 + # shell: bash + # run: | + # mkdir -p "${{ runner.temp }}/SDL3" + # mkdir -p "${{ runner.temp }}/ziptmp" + # unzip SDL3.zip -d "${{ runner.temp }}/ziptmp" + # mv "${{ runner.temp }}/ziptmp"/*/* "${{ runner.temp }}/SDL3" + # cp -v "${{ runner.temp }}/SDL3/lib/x86/"* . + + # - name: Set SDL3_DIR environment variable + # run: echo SDL3_DIR=${{ runner.temp }}\SDL3\cmake >> $env:GITHUB_ENV + - name: Build raylib run: | cd raylib mkdir build cd build - cmake -A Win32 -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DOPENGL_VERSION=2.1 -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. + cmake -A Win32 -DPLATFORM="Win32" -DOPENGL_VERSION="Software" -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_BUSY_WAIT_LOOP=OFF -DSUPPORT_CUSTOM_FRAME_CONTROL=OFF -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release .. msbuild raylib.sln /target:raylib /property:Configuration=Release copy raylib\Release\raylib.lib ..\.. cd ..\.. @@ -248,12 +446,23 @@ jobs: with: arch: x86 - name: Build jaylib - env: - RAYLIB_PLATFORM: windows-x86 run: | build-windows.bat shell: cmd + - name: Test + shell: bash + run: | + javac -cp "build;javacpp.jar" -d build src/com/raylib/*.java + java -d32 -cp "build;javacpp.jar;jaylib-natives-${RAYLIB_PLATFORM}-${RAYLIB_VERSION}.jar" com.raylib.Test + # cat /tmp/output + # if grep -q "INFO: Initializing raylib" /tmp/output; then + # echo "Passed" + # else + # echo "Failed" + # exit 1 + # fi + - name: Upload jar uses: actions/upload-artifact@v4 with: @@ -262,17 +471,26 @@ jobs: merge-artifacts: runs-on: ubuntu-latest - needs: [build-linux, build-linux-32bit, build-mac, build-windows, build-windows32] - + needs: + [ + build-linux, + build-linux-32bit, + build-linux-arm64, + build-mac-intel, + build-mac-arm64, + build-windows, + build-windows32, + ] + steps: - name: Download all artifacts uses: actions/download-artifact@v4 with: path: artifacts merge-multiple: true - + - name: Upload merged artifact uses: actions/upload-artifact@v4 with: name: jaylib-all-platforms - path: artifacts/ \ No newline at end of file + path: artifacts/ diff --git a/.gitignore b/.gitignore index 9ca7801..6eab33e 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,6 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* + +build +gen diff --git a/.idea/SweepConfig.xml b/.idea/SweepConfig.xml new file mode 100644 index 0000000..1b3a926 --- /dev/null +++ b/.idea/SweepConfig.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml index e3ec115..9ba71f3 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -6,10 +6,8 @@ + - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index f0ad1fa..19d5610 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -9,10 +9,11 @@ - + \ No newline at end of file diff --git a/README.md b/README.md index b88fedf..357fdb5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # News +* [Jaylib Discord chat](https://discord.gg/PwmyKc6Jcp) + * Take a look at [Jaylib-FFM](https://github.com/electronstudio/jaylib-ffm) a Java FFM Raylib binding. * The `com.raylib.Jaylib` class has been removed because it seemed to confuse people and IDE @@ -7,7 +9,7 @@ autocompletion. Use `com.raylib.Raylib` instead. The Colors are now in `com.ra If you don't like the fluent constructor syntax of JavaCPP, use the methods in `com.raylib.Helpers` to create structs. -# Jaylib - JNI bindings for [Raylib](https://github.com/raysan5/raylib/) 5.5 + RLGL + Raymath + Physac + RayGui +# Jaylib - JNI bindings for [Raylib](https://github.com/raysan5/raylib/) 6.0 + RLGL + Raymath + Physac + RayGui JNI is the fastest kind of native binding for Java 8+, but is difficult to write. Therefore we are using [JavaCPP](https://github.com/bytedeco/javacpp) to automatically generate the bindings. @@ -24,12 +26,14 @@ they are auto-generated. See [How To Build](#how-to-build) ## Platforms -5.5+ release includes binaries for: -* Windows x86_64 -* Macos x86_64 -* Macos ARM64 -* Linux x86_64 -* Linux ARM64 (Raspberry Pi Bullseye, 64 bit only, untested) +6.0+ release includes binaries for: +* Windows x86_64 (SDL backend, OpenGL 3.3) +* Windows x64 (Software rendering backend) +* Macos x86_64 (SDL backend, Open 3.3) +* Macos ARM64 (SDL backend, OpenGL 3.3) +* Linux x86_64 (SDL backend, OpenGL 3.3) +* Linux x86 (Software rendering backend) +* Linux ARM64 (SDL backend, OpenGL 2.1) ## Docs @@ -113,19 +117,19 @@ public class Demo { Compile it: - javac -cp jaylib-5.5.0-2.jar Demo.java + javac -cp jaylib-6.0.1-0.jar Demo.java Run it: - java -cp jaylib-5.5.0-2.jar:. Demo + java -cp jaylib-6.0.1-0.jar:. Demo On MacOS you need this additional option: - java -XstartOnFirstThread -cp jaylib-5.5.0-2.jar:. Demo + java -XstartOnFirstThread -cp jaylib-6.0.1-0.jar:. Demo On weirdy Windows you use semi-colons: - java -cp jaylib-5.5.0-2.jar;. Demo + java -cp jaylib-6.0.1-0.jar;. Demo ## Known issues diff --git a/build-java.sh b/build-java.sh index c75232c..31fb6dc 100755 --- a/build-java.sh +++ b/build-java.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash rm -r gen cd src echo "STEP 1 - generate Raylib.java" @@ -14,7 +14,7 @@ mv src/com/raylib/RaylibConfig.class gen/com/raylib cp *.h gen/com/raylib cd gen echo "STEP 2 - compile Raylib.java" -java -jar ../javacpp.jar -nodelete com/raylib/Raylib.java -Dplatform.compiler.foo='-DPHYSAC_IMPLEMENTATION -DRAYGUI_IMPLEMENTATION -std=c++11' +java -jar ../javacpp.jar -nodelete com/raylib/Raylib.java -Dplatform.compiler.foo='-DPHYSAC_IMPLEMENTATION -DRAYGUI_IMPLEMENTATION -std=c++11' -Dplatform.compiler.mac='-DPHYSAC_IMPLEMENTATION -DRAYGUI_IMPLEMENTATION -std=c++11 -mmacosx-version-min=10.14 -framework GameController' # /Oi /O2 /MD /LD /link /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /NODEFAULTLIB:MSVCRTD' if [ $? -ne '0' ]; then echo "Fix this before trying again" diff --git a/build-windows.bat b/build-windows.bat index 39b8c7d..0a18c91 100644 --- a/build-windows.bat +++ b/build-windows.bat @@ -34,6 +34,7 @@ echo "STEP 5 - move compilation results from gen folder to natives folder" rmdir /S /Q natives mkdir natives\com\raylib\%RAYLIB_PLATFORM% copy gen\com\raylib\%RAYLIB_PLATFORM%\* natives\com\raylib\%RAYLIB_PLATFORM%\ +copy SDL3.dll natives\com\raylib\%RAYLIB_PLATFORM%\ @REM echo "STEP 4 - unzip javacpp.jar" diff --git a/doc/allclasses-index.html b/doc/allclasses-index.html index a04556e..502c525 100644 --- a/doc/allclasses-index.html +++ b/doc/allclasses-index.html @@ -1,55 +1,51 @@ - + All Classes and Interfaces - + - - - - - + + + + + - -
+
+ - +
diff --git a/doc/allpackages-index.html b/doc/allpackages-index.html index 6f521db..446b3e6 100644 --- a/doc/allpackages-index.html +++ b/doc/allpackages-index.html @@ -1,55 +1,51 @@ - + All Packages - + - - - - - + + + + + - -
+
+ -
+

All Packages

@@ -63,5 +59,6 @@

All Packages

+
diff --git a/doc/com/raylib/Colors.html b/doc/com/raylib/Colors.html index 0a7c419..bdbc46f 100644 --- a/doc/com/raylib/Colors.html +++ b/doc/com/raylib/Colors.html @@ -1,31 +1,30 @@ - + Colors - + - - - - - - + + + + + + - -
+
+ -
- +
+
Package com.raylib

Class Colors

-
java.lang.Object +
java.lang.Object
com.raylib.Colors
-

public final class Colors -extends Object
-
+extends Object
@@ -243,209 +219,157 @@

Field Details

  • LIGHTGRAY

    -
    public static final Raylib.Color LIGHTGRAY
    -
  • GRAY

    -
    public static final Raylib.Color GRAY
    -
  • DARKGRAY

    -
    public static final Raylib.Color DARKGRAY
    -
  • YELLOW

    -
    public static final Raylib.Color YELLOW
    -
  • GOLD

    -
    public static final Raylib.Color GOLD
    -
  • ORANGE

    -
    public static final Raylib.Color ORANGE
    -
  • PINK

    -
    public static final Raylib.Color PINK
    -
  • RED

    -
    public static final Raylib.Color RED
    -
  • MAROON

    -
    public static final Raylib.Color MAROON
    -
  • GREEN

    -
    public static final Raylib.Color GREEN
    -
  • LIME

    -
    public static final Raylib.Color LIME
    -
  • DARKGREEN

    -
    public static final Raylib.Color DARKGREEN
    -
  • SKYBLUE

    -
    public static final Raylib.Color SKYBLUE
    -
  • BLUE

    -
    public static final Raylib.Color BLUE
    -
  • DARKBLUE

    -
    public static final Raylib.Color DARKBLUE
    -
  • PURPLE

    -
    public static final Raylib.Color PURPLE
    -
  • VIOLET

    -
    public static final Raylib.Color VIOLET
    -
  • DARKPURPLE

    -
    public static final Raylib.Color DARKPURPLE
    -
  • BEIGE

    -
    public static final Raylib.Color BEIGE
    -
  • BROWN

    -
    public static final Raylib.Color BROWN
    -
  • DARKBROWN

    -
    public static final Raylib.Color DARKBROWN
    -
  • WHITE

    -
    public static final Raylib.Color WHITE
    -
  • BLACK

    -
    public static final Raylib.Color BLACK
    -
  • BLANK

    -
    public static final Raylib.Color BLANK
    -
  • MAGENTA

    -
    public static final Raylib.Color MAGENTA
    -
  • RAYWHITE

    -
    public static final Raylib.Color RAYWHITE
    -
  • @@ -459,9 +383,7 @@

    Constructor Details

  • Colors

    -
    public Colors()
    -
  • @@ -472,5 +394,6 @@

    Colors

    +
    diff --git a/doc/com/raylib/Helpers.html b/doc/com/raylib/Helpers.html index 00bfba2..f66acfb 100644 --- a/doc/com/raylib/Helpers.html +++ b/doc/com/raylib/Helpers.html @@ -1,31 +1,30 @@ - + Helpers - + - - - - - - + + + + + + - -
    +
    + -
    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    @@ -217,9 +205,7 @@

    Constructor Details

  • Helpers

    -
    public Helpers()
    -
  • @@ -233,142 +219,112 @@

    Method Details

  • newColor

    -
    public static Raylib.Color newColor(int r, int g, int b, int a)
    -
  • newCamera

    -
    public static Raylib.Camera3D newCamera(Raylib.Vector3 position, Raylib.Vector3 target, Raylib.Vector3 up, float fovy, int projection)
    -
  • newCamera2D

    -
    public static Raylib.Camera2D newCamera2D(Raylib.Vector2 offset, Raylib.Vector2 target, float rotation, float zoom)
    -
  • newRectangle

    -
    public static Raylib.Rectangle newRectangle(float x, float y, float width, float height)
    -
  • newRectangle

    -
    public static Raylib.Rectangle newRectangle(Raylib.Rectangle rect)
    -
  • newBoundingBox

    -
    public static Raylib.BoundingBox newBoundingBox(Raylib.Vector3 min, Raylib.Vector3 max)
    -
  • newBoundingBox

    -
    public static Raylib.BoundingBox newBoundingBox(Raylib.BoundingBox bb)
    -
  • newRay

    -
    public static Raylib.Ray newRay(Raylib.Vector3 position, Raylib.Vector3 direction)
    -
  • newRay

    -
    public static Raylib.Ray newRay(Raylib.Ray ray)
    -
  • newRayCollision

    -
    public static Raylib.RayCollision newRayCollision(boolean hit, float distance, Raylib.Vector3 point, Raylib.Vector3 normal)
    -
  • newRayCollision

    -
    public static Raylib.RayCollision newRayCollision(Raylib.RayCollision rc)
    -
  • newVector3

    -
    public static Raylib.Vector3 newVector3(float x, float y, float z)
    -
  • newVector3

    -
    public static Raylib.Vector3 newVector3(Raylib.Vector3 vector3)
    -
  • newVector2

    -
    public static Raylib.Vector2 newVector2(float x, float y)
    -
  • newVector2

    -
    public static Raylib.Vector2 newVector2(Raylib.Vector2 vector2)
    -
  • @@ -379,5 +335,6 @@

    newVector2

    + diff --git a/doc/com/raylib/Raylib.AudioCallback.html b/doc/com/raylib/Raylib.AudioCallback.html index 12b1fcf..1c60f34 100644 --- a/doc/com/raylib/Raylib.AudioCallback.html +++ b/doc/com/raylib/Raylib.AudioCallback.html @@ -1,31 +1,30 @@ - + Raylib.AudioCallback - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.AudioCallback

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    org.bytedeco.javacpp.FunctionPointer
    com.raylib.Raylib.AudioCallback
    @@ -93,10 +93,9 @@

    Class Raylib.AudioCallback<

    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -105,7 +104,6 @@

    Class Raylib.AudioCallback<
    public static class Raylib.AudioCallback extends org.bytedeco.javacpp.FunctionPointer
    -

      @@ -114,7 +112,7 @@

      Class Raylib.AudioCallback<

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -169,8 +167,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -185,18 +183,14 @@

    Constructor Details

  • AudioCallback

    -
    public AudioCallback(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • AudioCallback

    -
    protected AudioCallback()
    -
  • @@ -210,11 +204,9 @@

    Method Details

  • call

    -
    public void call(org.bytedeco.javacpp.Pointer bufferData, @Cast("unsigned int") int frames)
    -
  • @@ -225,5 +217,6 @@

    call

    +
    diff --git a/doc/com/raylib/Raylib.AudioStream.html b/doc/com/raylib/Raylib.AudioStream.html index bb66452..32e5233 100644 --- a/doc/com/raylib/Raylib.AudioStream.html +++ b/doc/com/raylib/Raylib.AudioStream.html @@ -1,31 +1,30 @@ - + Raylib.AudioStream - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.AudioStream

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.AudioStream
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.AudioStream


    public static class Raylib.AudioStream extends org.bytedeco.javacpp.Pointer
    -
      @@ -124,7 +110,7 @@

      Class Raylib.AudioStream

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,8 +200,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • AudioStream

    -
    public AudioStream()
    Default native constructor.
    -
  • AudioStream

    -
    public AudioStream(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • AudioStream

    -
    public AudioStream(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,108 +245,84 @@

    Method Details

  • position

    -
    public Raylib.AudioStream position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.AudioStream getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • buffer

    -
    public Raylib.rAudioBuffer buffer()
    -
  • buffer

    -
    public Raylib.AudioStream buffer(Raylib.rAudioBuffer setter)
    -
  • processor

    -
    public Raylib.rAudioProcessor processor()
    -
  • processor

    -
    public Raylib.AudioStream processor(Raylib.rAudioProcessor setter)
    -
  • sampleRate

    -
    @Cast("unsigned int") public int sampleRate()
    -
  • sampleRate

    -
    public Raylib.AudioStream sampleRate(int setter)
    -
  • sampleSize

    -
    @Cast("unsigned int") public int sampleSize()
    -
  • sampleSize

    -
    public Raylib.AudioStream sampleSize(int setter)
    -
  • channels

    -
    @Cast("unsigned int") public int channels()
    -
  • channels

    -
    public Raylib.AudioStream channels(int setter)
    -
  • @@ -377,5 +333,6 @@

    channels

    +
    diff --git a/doc/com/raylib/Raylib.AutomationEvent.html b/doc/com/raylib/Raylib.AutomationEvent.html index 0bd02ca..3dc51b9 100644 --- a/doc/com/raylib/Raylib.AutomationEvent.html +++ b/doc/com/raylib/Raylib.AutomationEvent.html @@ -1,31 +1,30 @@ - + Raylib.AutomationEvent - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.AutomationEvent

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.AutomationEvent
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -112,7 +102,6 @@

    Class Raylib.AutomationEv
    public static class Raylib.AutomationEvent extends org.bytedeco.javacpp.Pointer
    -

      @@ -121,7 +110,7 @@

      Class Raylib.AutomationEv

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -203,8 +192,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -219,28 +208,22 @@

    Constructor Details

  • AutomationEvent

    -
    public AutomationEvent()
    Default native constructor.
    -
  • AutomationEvent

    -
    public AutomationEvent(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • AutomationEvent

    -
    public AutomationEvent(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -254,85 +237,67 @@

    Method Details

  • position

    -
    public Raylib.AutomationEvent position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.AutomationEvent getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • frame

    -
    @Cast("unsigned int") public int frame()
    -
  • frame

    -
    public Raylib.AutomationEvent frame(int setter)
    -
  • type

    -
    @Cast("unsigned int") public int type()
    -
  • type

    -
    public Raylib.AutomationEvent type(int setter)
    -
  • params

    -
    public int params(int i)
    -
  • params

    -
    public Raylib.AutomationEvent params(int i, int setter)
    -
  • params

    -
    @MemberGetter public org.bytedeco.javacpp.IntPointer params()
    -
  • @@ -343,5 +308,6 @@

    params

    +
    diff --git a/doc/com/raylib/Raylib.AutomationEventList.html b/doc/com/raylib/Raylib.AutomationEventList.html index 1fd4b0d..fcd93d1 100644 --- a/doc/com/raylib/Raylib.AutomationEventList.html +++ b/doc/com/raylib/Raylib.AutomationEventList.html @@ -1,31 +1,30 @@ - + Raylib.AutomationEventList - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.AutomationEventList

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.AutomationEventList
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -111,7 +102,6 @@

    Class Raylib.Automati
    public static class Raylib.AutomationEventList extends org.bytedeco.javacpp.Pointer
    -

      @@ -120,7 +110,7 @@

      Class Raylib.Automati

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -198,8 +188,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -214,28 +204,22 @@

    Constructor Details

  • AutomationEventList

    -
    public AutomationEventList()
    Default native constructor.
    -
  • AutomationEventList

    -
    public AutomationEventList(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • AutomationEventList

    -
    public AutomationEventList(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -249,76 +233,60 @@

    Method Details

  • position

    -
    public Raylib.AutomationEventList position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.AutomationEventList getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • _capacity

    -
    @Cast("unsigned int") @Name("capacity") public int _capacity()
    -
  • _capacity

    -
    public Raylib.AutomationEventList _capacity(int setter)
    -
  • count

    -
    @Cast("unsigned int") public int count()
    -
  • count

    -
    public Raylib.AutomationEventList count(int setter)
    -
  • events

    -
    public Raylib.AutomationEvent events()
    -
  • events

    -
  • @@ -329,5 +297,6 @@

    events

    +
    diff --git a/doc/com/raylib/Raylib.BoneInfo.html b/doc/com/raylib/Raylib.BoneInfo.html index 87d36cf..b65e652 100644 --- a/doc/com/raylib/Raylib.BoneInfo.html +++ b/doc/com/raylib/Raylib.BoneInfo.html @@ -1,31 +1,30 @@ - + Raylib.BoneInfo - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.BoneInfo

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.BoneInfo
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -110,7 +102,6 @@

    Class Raylib.BoneInfo


    public static class Raylib.BoneInfo extends org.bytedeco.javacpp.Pointer
    -
      @@ -119,7 +110,7 @@

      Class Raylib.BoneInfo

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -195,8 +186,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -211,28 +202,22 @@

    Constructor Details

  • BoneInfo

    -
    public BoneInfo()
    Default native constructor.
    -
  • BoneInfo

    -
    public BoneInfo(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • BoneInfo

    -
    public BoneInfo(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -246,69 +231,55 @@

    Method Details

  • position

    -
    public Raylib.BoneInfo position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.BoneInfo getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • name

    -
    @Cast("char") public byte name(int i)
    -
  • name

    -
    public Raylib.BoneInfo name(int i, byte setter)
    -
  • name

    -
    @MemberGetter @Cast("char*") public org.bytedeco.javacpp.BytePointer name()
    -
  • parent

    -
    public int parent()
    -
  • parent

    -
    public Raylib.BoneInfo parent(int setter)
    -
  • @@ -319,5 +290,6 @@

    parent

    +
    diff --git a/doc/com/raylib/Raylib.BoundingBox.html b/doc/com/raylib/Raylib.BoundingBox.html index f26218f..66496a7 100644 --- a/doc/com/raylib/Raylib.BoundingBox.html +++ b/doc/com/raylib/Raylib.BoundingBox.html @@ -1,31 +1,30 @@ - + Raylib.BoundingBox - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.BoundingBox

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.BoundingBox
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -109,7 +102,6 @@

    Class Raylib.BoundingBox


    public static class Raylib.BoundingBox extends org.bytedeco.javacpp.Pointer
    -
      @@ -118,7 +110,7 @@

      Class Raylib.BoundingBox

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -190,8 +182,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -206,28 +198,22 @@

    Constructor Details

  • BoundingBox

    -
    public BoundingBox()
    Default native constructor.
    -
  • BoundingBox

    -
    public BoundingBox(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • BoundingBox

    -
    public BoundingBox(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -241,59 +227,47 @@

    Method Details

  • position

    -
    public Raylib.BoundingBox position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.BoundingBox getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • min

    -
    @ByRef public Raylib.Vector3 min()
    -
  • min

    -
    public Raylib.BoundingBox min(Raylib.Vector3 setter)
    -
  • max

    -
    @ByRef public Raylib.Vector3 max()
    -
  • max

    -
    public Raylib.BoundingBox max(Raylib.Vector3 setter)
    -
  • @@ -304,5 +278,6 @@

    max

    +
    diff --git a/doc/com/raylib/Raylib.Camera2D.html b/doc/com/raylib/Raylib.Camera2D.html index fa37413..5fa54f6 100644 --- a/doc/com/raylib/Raylib.Camera2D.html +++ b/doc/com/raylib/Raylib.Camera2D.html @@ -1,31 +1,30 @@ - + Raylib.Camera2D - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Camera2D

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Camera2D
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.Camera2D


    public static class Raylib.Camera2D extends org.bytedeco.javacpp.Pointer
    -
      @@ -122,7 +110,7 @@

      Class Raylib.Camera2D

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -206,8 +194,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -222,28 +210,22 @@

    Constructor Details

  • Camera2D

    -
    public Camera2D()
    Default native constructor.
    -
  • Camera2D

    -
    public Camera2D(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Camera2D

    -
    public Camera2D(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -257,91 +239,71 @@

    Method Details

  • position

    -
    public Raylib.Camera2D position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Camera2D getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • offset

    -
    @ByRef public Raylib.Vector2 offset()
    -
  • offset

    -
    public Raylib.Camera2D offset(Raylib.Vector2 setter)
    -
  • target

    -
    @ByRef public Raylib.Vector2 target()
    -
  • target

    -
    public Raylib.Camera2D target(Raylib.Vector2 setter)
    -
  • rotation

    -
    public float rotation()
    -
  • rotation

    -
    public Raylib.Camera2D rotation(float setter)
    -
  • zoom

    -
    public float zoom()
    -
  • zoom

    -
    public Raylib.Camera2D zoom(float setter)
    -
  • @@ -352,5 +314,6 @@

    zoom

    +
    diff --git a/doc/com/raylib/Raylib.Camera3D.html b/doc/com/raylib/Raylib.Camera3D.html index 3ffb583..4526faa 100644 --- a/doc/com/raylib/Raylib.Camera3D.html +++ b/doc/com/raylib/Raylib.Camera3D.html @@ -1,31 +1,30 @@ - + Raylib.Camera3D - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Camera3D

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Camera3D
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.Camera3D


    public static class Raylib.Camera3D extends org.bytedeco.javacpp.Pointer
    -
      @@ -124,7 +110,7 @@

      Class Raylib.Camera3D

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,8 +200,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • Camera3D

    -
    public Camera3D()
    Default native constructor.
    -
  • Camera3D

    -
    public Camera3D(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Camera3D

    -
    public Camera3D(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,109 +245,85 @@

    Method Details

  • position

    -
    public Raylib.Camera3D position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Camera3D getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • _position

    -
    @ByRef @Name("position") public Raylib.Vector3 _position()
    -
  • _position

    -
    public Raylib.Camera3D _position(Raylib.Vector3 setter)
    -
  • target

    -
    @ByRef public Raylib.Vector3 target()
    -
  • target

    -
    public Raylib.Camera3D target(Raylib.Vector3 setter)
    -
  • up

    -
    @ByRef public Raylib.Vector3 up()
    -
  • up

    -
    public Raylib.Camera3D up(Raylib.Vector3 setter)
    -
  • fovy

    -
    public float fovy()
    -
  • fovy

    -
    public Raylib.Camera3D fovy(float setter)
    -
  • projection

    -
    public int projection()
    -
  • projection

    -
    public Raylib.Camera3D projection(int setter)
    -
  • @@ -378,5 +334,6 @@

    projection

    +
    diff --git a/doc/com/raylib/Raylib.Color.html b/doc/com/raylib/Raylib.Color.html index 000ecd3..4cda3e5 100644 --- a/doc/com/raylib/Raylib.Color.html +++ b/doc/com/raylib/Raylib.Color.html @@ -1,31 +1,30 @@ - + Raylib.Color - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Color

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Color
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.Color


    public static class Raylib.Color extends org.bytedeco.javacpp.Pointer
    -
      @@ -122,7 +110,7 @@

      Class Raylib.Color

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -206,8 +194,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -222,28 +210,22 @@

    Constructor Details

  • Color

    -
    public Color()
    Default native constructor.
    -
  • Color

    -
    public Color(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Color

    -
    public Color(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -257,93 +239,73 @@

    Method Details

  • position

    -
    public Raylib.Color position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Color getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • r

    -
    @Cast("unsigned char") public byte r()
    -
  • r

    -
    public Raylib.Color r(byte setter)
    -
  • g

    -
    @Cast("unsigned char") public byte g()
    -
  • g

    -
    public Raylib.Color g(byte setter)
    -
  • b

    -
    @Cast("unsigned char") public byte b()
    -
  • b

    -
    public Raylib.Color b(byte setter)
    -
  • a

    -
    @Cast("unsigned char") public byte a()
    -
  • a

    -
    public Raylib.Color a(byte setter)
    -
  • @@ -354,5 +316,6 @@

    a

    +
    diff --git a/doc/com/raylib/Raylib.FilePathList.html b/doc/com/raylib/Raylib.FilePathList.html index d50f0a5..4cb266b 100644 --- a/doc/com/raylib/Raylib.FilePathList.html +++ b/doc/com/raylib/Raylib.FilePathList.html @@ -1,31 +1,30 @@ - + Raylib.FilePathList - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.FilePathList

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.FilePathList
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.FilePathList
    public static class Raylib.FilePathList extends org.bytedeco.javacpp.Pointer
    -

      @@ -122,7 +110,7 @@

      Class Raylib.FilePathList

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
    @@ -170,12 +158,6 @@

    Method Summary

    Method
    Description
    int
    - -
     
    - -
    _capacity(int setter)
    -
     
    -
    int
     
    @@ -207,8 +189,8 @@

    Method Summary

    Methods inherited from class org.bytedeco.javacpp.Pointer

    address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -223,28 +205,22 @@

    Constructor Details

  • FilePathList

    -
    public FilePathList()
    Default native constructor.
    -
  • FilePathList

    -
    public FilePathList(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • FilePathList

    -
    public FilePathList(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -258,95 +234,61 @@

    Method Details

  • position

    -
    public Raylib.FilePathList position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.FilePathList getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
    -
    -
  • -
  • -
    -

    _capacity

    -
    -
    @Cast("unsigned int") -@Name("capacity") -public int _capacity()
    -
    -
    -
  • -
  • -
    -

    _capacity

    -
    -
    public Raylib.FilePathList _capacity(int setter)
    -
  • count

    -
    @Cast("unsigned int") public int count()
    -
  • count

    -
    public Raylib.FilePathList count(int setter)
    -
  • paths

    -
    @Cast("char*") public org.bytedeco.javacpp.BytePointer paths(int i)
    -
  • paths

    -
    public Raylib.FilePathList paths(int i, org.bytedeco.javacpp.BytePointer setter)
    -
  • paths

    -
    @Cast("char**") public org.bytedeco.javacpp.PointerPointer paths()
    -
  • paths

    -
    public Raylib.FilePathList paths(org.bytedeco.javacpp.PointerPointer setter)
    -
  • @@ -357,5 +299,6 @@

    paths

    +
    diff --git a/doc/com/raylib/Raylib.Font.html b/doc/com/raylib/Raylib.Font.html index 0494ea0..0d32a74 100644 --- a/doc/com/raylib/Raylib.Font.html +++ b/doc/com/raylib/Raylib.Font.html @@ -1,31 +1,30 @@ - + Raylib.Font - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Font

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Font
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -117,7 +102,6 @@

    Class Raylib.Font


    public static class Raylib.Font extends org.bytedeco.javacpp.Pointer
    -
      @@ -126,7 +110,7 @@

      Class Raylib.Font

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -222,8 +206,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -238,28 +222,22 @@

    Constructor Details

  • Font

    -
    public Font()
    Default native constructor.
    -
  • Font

    -
    public Font(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Font

    -
    public Font(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -273,123 +251,95 @@

    Method Details

  • position

    -
    public Raylib.Font position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Font getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • baseSize

    -
    public int baseSize()
    -
  • baseSize

    -
    public Raylib.Font baseSize(int setter)
    -
  • glyphCount

    -
    public int glyphCount()
    -
  • glyphCount

    -
    public Raylib.Font glyphCount(int setter)
    -
  • glyphPadding

    -
    public int glyphPadding()
    -
  • glyphPadding

    -
    public Raylib.Font glyphPadding(int setter)
    -
  • texture

    -
    @ByRef @Cast("Texture2D*") public Raylib.Texture texture()
    -
  • texture

    -
    public Raylib.Font texture(Raylib.Texture setter)
    -
  • recs

    -
    public Raylib.Rectangle recs()
    -
  • recs

    -
    public Raylib.Font recs(Raylib.Rectangle setter)
    -
  • glyphs

    -
    public Raylib.GlyphInfo glyphs()
    -
  • glyphs

    -
    public Raylib.Font glyphs(Raylib.GlyphInfo setter)
    -
  • @@ -400,5 +350,6 @@

    glyphs

    +
    diff --git a/doc/com/raylib/Raylib.GlyphInfo.html b/doc/com/raylib/Raylib.GlyphInfo.html index a084d1d..f1eb5e5 100644 --- a/doc/com/raylib/Raylib.GlyphInfo.html +++ b/doc/com/raylib/Raylib.GlyphInfo.html @@ -1,31 +1,30 @@ - + Raylib.GlyphInfo - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.GlyphInfo

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.GlyphInfo
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.GlyphInfo


    public static class Raylib.GlyphInfo extends org.bytedeco.javacpp.Pointer
    -
      @@ -124,7 +110,7 @@

      Class Raylib.GlyphInfo

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,8 +200,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • GlyphInfo

    -
    public GlyphInfo()
    Default native constructor.
    -
  • GlyphInfo

    -
    public GlyphInfo(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • GlyphInfo

    -
    public GlyphInfo(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,106 +245,82 @@

    Method Details

  • position

    -
    public Raylib.GlyphInfo position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.GlyphInfo getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • value

    -
    public int value()
    -
  • value

    -
    public Raylib.GlyphInfo value(int setter)
    -
  • offsetX

    -
    public int offsetX()
    -
  • offsetX

    -
    public Raylib.GlyphInfo offsetX(int setter)
    -
  • offsetY

    -
    public int offsetY()
    -
  • offsetY

    -
    public Raylib.GlyphInfo offsetY(int setter)
    -
  • advanceX

    -
    public int advanceX()
    -
  • advanceX

    -
    public Raylib.GlyphInfo advanceX(int setter)
    -
  • image

    -
    @ByRef public Raylib.Image image()
    -
  • image

    -
    public Raylib.GlyphInfo image(Raylib.Image setter)
    -
  • @@ -375,5 +331,6 @@

    image

    +
    diff --git a/doc/com/raylib/Raylib.GuiStyleProp.html b/doc/com/raylib/Raylib.GuiStyleProp.html index 25772ff..ffe9095 100644 --- a/doc/com/raylib/Raylib.GuiStyleProp.html +++ b/doc/com/raylib/Raylib.GuiStyleProp.html @@ -1,31 +1,30 @@ - + Raylib.GuiStyleProp - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.GuiStyleProp

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.GuiStyleProp
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -111,7 +102,6 @@

    Class Raylib.GuiStyleProp
    public static class Raylib.GuiStyleProp extends org.bytedeco.javacpp.Pointer
    -

      @@ -120,7 +110,7 @@

      Class Raylib.GuiStyleProp

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
    @@ -198,8 +188,8 @@

    Method Summary

    Methods inherited from class org.bytedeco.javacpp.Pointer

    address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -214,28 +204,22 @@

    Constructor Details

  • GuiStyleProp

    -
    public GuiStyleProp()
    Default native constructor.
    -
  • GuiStyleProp

    -
    public GuiStyleProp(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • GuiStyleProp

    -
    public GuiStyleProp(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -249,75 +233,59 @@

    Method Details

  • position

    -
    public Raylib.GuiStyleProp position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.GuiStyleProp getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • controlId

    -
    @Cast("unsigned short") public short controlId()
    -
  • controlId

    -
    public Raylib.GuiStyleProp controlId(short setter)
    -
  • propertyId

    -
    @Cast("unsigned short") public short propertyId()
    -
  • propertyId

    -
    public Raylib.GuiStyleProp propertyId(short setter)
    -
  • propertyValue

    -
    public int propertyValue()
    -
  • propertyValue

    -
    public Raylib.GuiStyleProp propertyValue(int setter)
    -
  • @@ -328,5 +296,6 @@

    propertyValue

    +
    diff --git a/doc/com/raylib/Raylib.Image.html b/doc/com/raylib/Raylib.Image.html index 86789e7..641cf5e 100644 --- a/doc/com/raylib/Raylib.Image.html +++ b/doc/com/raylib/Raylib.Image.html @@ -1,31 +1,30 @@ - + Raylib.Image - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Image

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Image
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.Image


    public static class Raylib.Image extends org.bytedeco.javacpp.Pointer
    -
      @@ -124,7 +110,7 @@

      Class Raylib.Image

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,8 +200,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • Image

    -
    public Image()
    Default native constructor.
    -
  • Image

    -
    public Image(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Image

    -
    public Image(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,105 +245,81 @@

    Method Details

  • position

    -
    public Raylib.Image position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Image getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • data

    -
    public org.bytedeco.javacpp.Pointer data()
    -
  • data

    -
    public Raylib.Image data(org.bytedeco.javacpp.Pointer setter)
    -
  • width

    -
    public int width()
    -
  • width

    -
    public Raylib.Image width(int setter)
    -
  • height

    -
    public int height()
    -
  • height

    -
    public Raylib.Image height(int setter)
    -
  • mipmaps

    -
    public int mipmaps()
    -
  • mipmaps

    -
    public Raylib.Image mipmaps(int setter)
    -
  • format

    -
    public int format()
    -
  • format

    -
    public Raylib.Image format(int setter)
    -
  • @@ -374,5 +330,6 @@

    format

    +
    diff --git a/doc/com/raylib/Raylib.LoadFileDataCallback.html b/doc/com/raylib/Raylib.LoadFileDataCallback.html index 65e97c4..b733dde 100644 --- a/doc/com/raylib/Raylib.LoadFileDataCallback.html +++ b/doc/com/raylib/Raylib.LoadFileDataCallback.html @@ -1,31 +1,30 @@ - + Raylib.LoadFileDataCallback - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.LoadFileDataCallback

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    org.bytedeco.javacpp.FunctionPointer
    com.raylib.Raylib.LoadFileDataCallback
    @@ -93,10 +93,9 @@

    Class Raylib.LoadFil

    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -105,7 +104,6 @@

    Class Raylib.LoadFil
    public static class Raylib.LoadFileDataCallback extends org.bytedeco.javacpp.FunctionPointer
    -

      @@ -114,7 +112,7 @@

      Class Raylib.LoadFil

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -169,8 +167,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -185,18 +183,14 @@

    Constructor Details

  • LoadFileDataCallback

    -
    public LoadFileDataCallback(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • LoadFileDataCallback

    -
    protected LoadFileDataCallback()
    -
  • @@ -210,12 +204,10 @@

    Method Details

  • call

    -
    @Cast("unsigned char*") public org.bytedeco.javacpp.BytePointer call(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.IntPointer dataSize)
    -
  • @@ -226,5 +218,6 @@

    call

    +
    diff --git a/doc/com/raylib/Raylib.LoadFileTextCallback.html b/doc/com/raylib/Raylib.LoadFileTextCallback.html index 4201269..1100b54 100644 --- a/doc/com/raylib/Raylib.LoadFileTextCallback.html +++ b/doc/com/raylib/Raylib.LoadFileTextCallback.html @@ -1,31 +1,30 @@ - + Raylib.LoadFileTextCallback - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.LoadFileTextCallback

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    org.bytedeco.javacpp.FunctionPointer
    com.raylib.Raylib.LoadFileTextCallback
    @@ -93,10 +93,9 @@

    Class Raylib.LoadFil

    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -105,7 +104,6 @@

    Class Raylib.LoadFil
    public static class Raylib.LoadFileTextCallback extends org.bytedeco.javacpp.FunctionPointer
    -

      @@ -114,7 +112,7 @@

      Class Raylib.LoadFil

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -168,8 +166,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -184,18 +182,14 @@

    Constructor Details

  • LoadFileTextCallback

    -
    public LoadFileTextCallback(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • LoadFileTextCallback

    -
    protected LoadFileTextCallback()
    -
  • @@ -209,11 +203,9 @@

    Method Details

  • call

    -
    @Cast("char*") public org.bytedeco.javacpp.BytePointer call(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • @@ -224,5 +216,6 @@

    call

    +
    diff --git a/doc/com/raylib/Raylib.Material.html b/doc/com/raylib/Raylib.Material.html index 8679bc7..d5fb3bd 100644 --- a/doc/com/raylib/Raylib.Material.html +++ b/doc/com/raylib/Raylib.Material.html @@ -1,31 +1,30 @@ - + Raylib.Material - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Material

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Material
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -112,7 +102,6 @@

    Class Raylib.Material


    public static class Raylib.Material extends org.bytedeco.javacpp.Pointer
    -
      @@ -121,7 +110,7 @@

      Class Raylib.Material

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -203,8 +192,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -219,28 +208,22 @@

    Constructor Details

  • Material

    -
    public Material()
    Default native constructor.
    -
  • Material

    -
    public Material(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Material

    -
    public Material(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -254,84 +237,66 @@

    Method Details

  • position

    -
    public Raylib.Material position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Material getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • shader

    -
    @ByRef public Raylib.Shader shader()
    -
  • shader

    -
    public Raylib.Material shader(Raylib.Shader setter)
    -
  • maps

    -
    public Raylib.MaterialMap maps()
    -
  • maps

    -
    public Raylib.Material maps(Raylib.MaterialMap setter)
    -
  • params

    -
    public float params(int i)
    -
  • params

    -
    public Raylib.Material params(int i, float setter)
    -
  • params

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer params()
    -
  • @@ -342,5 +307,6 @@

    params

    +
    diff --git a/doc/com/raylib/Raylib.MaterialMap.html b/doc/com/raylib/Raylib.MaterialMap.html index 8acdb36..117ad94 100644 --- a/doc/com/raylib/Raylib.MaterialMap.html +++ b/doc/com/raylib/Raylib.MaterialMap.html @@ -1,31 +1,30 @@ - + Raylib.MaterialMap - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.MaterialMap

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.MaterialMap
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -111,7 +102,6 @@

    Class Raylib.MaterialMap


    public static class Raylib.MaterialMap extends org.bytedeco.javacpp.Pointer
    -
      @@ -120,7 +110,7 @@

      Class Raylib.MaterialMap

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -198,8 +188,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -214,28 +204,22 @@

    Constructor Details

  • MaterialMap

    -
    public MaterialMap()
    Default native constructor.
    -
  • MaterialMap

    -
    public MaterialMap(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • MaterialMap

    -
    public MaterialMap(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -249,76 +233,60 @@

    Method Details

  • position

    -
    public Raylib.MaterialMap position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.MaterialMap getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • texture

    -
    @ByRef @Cast("Texture2D*") public Raylib.Texture texture()
    -
  • texture

    -
    public Raylib.MaterialMap texture(Raylib.Texture setter)
    -
  • color

    -
    @ByRef public Raylib.Color color()
    -
  • color

    -
    public Raylib.MaterialMap color(Raylib.Color setter)
    -
  • value

    -
    public float value()
    -
  • value

    -
    public Raylib.MaterialMap value(float setter)
    -
  • @@ -329,5 +297,6 @@

    value

    +
    diff --git a/doc/com/raylib/Raylib.Matrix.html b/doc/com/raylib/Raylib.Matrix.html index 721f830..c7ce8dc 100644 --- a/doc/com/raylib/Raylib.Matrix.html +++ b/doc/com/raylib/Raylib.Matrix.html @@ -1,31 +1,30 @@ - + Raylib.Matrix - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Matrix

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Matrix
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -137,7 +102,6 @@

    Class Raylib.Matrix


    public static class Raylib.Matrix extends org.bytedeco.javacpp.Pointer
    -
      @@ -146,7 +110,7 @@

      Class Raylib.Matrix

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -302,8 +266,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -318,28 +282,22 @@

    Constructor Details

  • Matrix

    -
    public Matrix()
    Default native constructor.
    -
  • Matrix

    -
    public Matrix(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Matrix

    -
    public Matrix(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -353,281 +311,213 @@

    Method Details

  • position

    -
    public Raylib.Matrix position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Matrix getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • m0

    -
    public float m0()
    -
  • m0

    -
    public Raylib.Matrix m0(float setter)
    -
  • m4

    -
    public float m4()
    -
  • m4

    -
    public Raylib.Matrix m4(float setter)
    -
  • m8

    -
    public float m8()
    -
  • m8

    -
    public Raylib.Matrix m8(float setter)
    -
  • m12

    -
    public float m12()
    -
  • m12

    -
    public Raylib.Matrix m12(float setter)
    -
  • m1

    -
    public float m1()
    -
  • m1

    -
    public Raylib.Matrix m1(float setter)
    -
  • m5

    -
    public float m5()
    -
  • m5

    -
    public Raylib.Matrix m5(float setter)
    -
  • m9

    -
    public float m9()
    -
  • m9

    -
    public Raylib.Matrix m9(float setter)
    -
  • m13

    -
    public float m13()
    -
  • m13

    -
    public Raylib.Matrix m13(float setter)
    -
  • m2

    -
    public float m2()
    -
  • m2

    -
    public Raylib.Matrix m2(float setter)
    -
  • m6

    -
    public float m6()
    -
  • m6

    -
    public Raylib.Matrix m6(float setter)
    -
  • m10

    -
    public float m10()
    -
  • m10

    -
    public Raylib.Matrix m10(float setter)
    -
  • m14

    -
    public float m14()
    -
  • m14

    -
    public Raylib.Matrix m14(float setter)
    -
  • m3

    -
    public float m3()
    -
  • m3

    -
    public Raylib.Matrix m3(float setter)
    -
  • m7

    -
    public float m7()
    -
  • m7

    -
    public Raylib.Matrix m7(float setter)
    -
  • m11

    -
    public float m11()
    -
  • m11

    -
    public Raylib.Matrix m11(float setter)
    -
  • m15

    -
    public float m15()
    -
  • m15

    -
    public Raylib.Matrix m15(float setter)
    -
  • @@ -638,5 +528,6 @@

    m15

    +
    diff --git a/doc/com/raylib/Raylib.Matrix2x2.html b/doc/com/raylib/Raylib.Matrix2x2.html index 94eddb1..b127b54 100644 --- a/doc/com/raylib/Raylib.Matrix2x2.html +++ b/doc/com/raylib/Raylib.Matrix2x2.html @@ -1,31 +1,30 @@ - + Raylib.Matrix2x2 - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Matrix2x2

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Matrix2x2
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.Matrix2x2


    public static class Raylib.Matrix2x2 extends org.bytedeco.javacpp.Pointer
    -
      @@ -122,7 +110,7 @@

      Class Raylib.Matrix2x2

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -206,8 +194,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -222,28 +210,22 @@

    Constructor Details

  • Matrix2x2

    -
    public Matrix2x2()
    Default native constructor.
    -
  • Matrix2x2

    -
    public Matrix2x2(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Matrix2x2

    -
    public Matrix2x2(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -257,89 +239,69 @@

    Method Details

  • position

    -
    public Raylib.Matrix2x2 position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Matrix2x2 getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • m00

    -
    public float m00()
    -
  • m00

    -
    public Raylib.Matrix2x2 m00(float setter)
    -
  • m01

    -
    public float m01()
    -
  • m01

    -
    public Raylib.Matrix2x2 m01(float setter)
    -
  • m10

    -
    public float m10()
    -
  • m10

    -
    public Raylib.Matrix2x2 m10(float setter)
    -
  • m11

    -
    public float m11()
    -
  • m11

    -
    public Raylib.Matrix2x2 m11(float setter)
    -
  • @@ -350,5 +312,6 @@

    m11

    +
    diff --git a/doc/com/raylib/Raylib.Mesh.html b/doc/com/raylib/Raylib.Mesh.html index a41beea..79b7381 100644 --- a/doc/com/raylib/Raylib.Mesh.html +++ b/doc/com/raylib/Raylib.Mesh.html @@ -1,31 +1,30 @@ - + Raylib.Mesh - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Mesh

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Mesh
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -139,7 +102,6 @@

    Class Raylib.Mesh


    public static class Raylib.Mesh extends org.bytedeco.javacpp.Pointer
    -
      @@ -148,7 +110,7 @@

      Class Raylib.Mesh

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,16 +176,10 @@

      Method Summary

      boneCount(int setter)
       
      org.bytedeco.javacpp.BytePointer
      - -
       
      - -
      boneIds(org.bytedeco.javacpp.BytePointer setter)
      -
       
      - - +
       
      - +
      boneIndices(org.bytedeco.javacpp.BytePointer setter)
       
      org.bytedeco.javacpp.FloatPointer
      @@ -310,8 +266,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -326,28 +282,22 @@

    Constructor Details

  • Mesh

    -
    public Mesh()
    Default native constructor.
    -
  • Mesh

    -
    public Mesh(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Mesh

    -
    public Mesh(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -361,302 +311,218 @@

    Method Details

  • position

    -
    public Raylib.Mesh position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Mesh getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • vertexCount

    -
    public int vertexCount()
    -
  • vertexCount

    -
    public Raylib.Mesh vertexCount(int setter)
    -
  • triangleCount

    -
    public int triangleCount()
    -
  • triangleCount

    -
    public Raylib.Mesh triangleCount(int setter)
    -
  • vertices

    -
    public org.bytedeco.javacpp.FloatPointer vertices()
    -
  • vertices

    -
    public Raylib.Mesh vertices(org.bytedeco.javacpp.FloatPointer setter)
    -
  • texcoords

    -
    public org.bytedeco.javacpp.FloatPointer texcoords()
    -
  • texcoords

    -
    public Raylib.Mesh texcoords(org.bytedeco.javacpp.FloatPointer setter)
    -
  • texcoords2

    -
    public org.bytedeco.javacpp.FloatPointer texcoords2()
    -
  • texcoords2

    -
    public Raylib.Mesh texcoords2(org.bytedeco.javacpp.FloatPointer setter)
    -
  • normals

    -
    public org.bytedeco.javacpp.FloatPointer normals()
    -
  • normals

    -
    public Raylib.Mesh normals(org.bytedeco.javacpp.FloatPointer setter)
    -
  • tangents

    -
    public org.bytedeco.javacpp.FloatPointer tangents()
    -
  • tangents

    -
    public Raylib.Mesh tangents(org.bytedeco.javacpp.FloatPointer setter)
    -
  • colors

    -
    @Cast("unsigned char*") public org.bytedeco.javacpp.BytePointer colors()
    -
  • colors

    -
    public Raylib.Mesh colors(org.bytedeco.javacpp.BytePointer setter)
    -
  • indices

    -
    @Cast("unsigned short*") public org.bytedeco.javacpp.ShortPointer indices()
    -
  • indices

    -
    public Raylib.Mesh indices(org.bytedeco.javacpp.ShortPointer setter)
    -
    -
    -
  • -
  • -
    -

    animVertices

    -
    -
    public org.bytedeco.javacpp.FloatPointer animVertices()
    -
    -
    -
  • -
  • -
    -

    animVertices

    -
    -
    public Raylib.Mesh animVertices(org.bytedeco.javacpp.FloatPointer setter)
    -
  • -
    -

    animNormals

    -
    -
    public org.bytedeco.javacpp.FloatPointer animNormals()
    -
    +
    +

    boneCount

    +
    public int boneCount()
  • -
    -

    animNormals

    -
    -
    public Raylib.Mesh animNormals(org.bytedeco.javacpp.FloatPointer setter)
    -
    +
    +

    boneCount

    +
    public Raylib.Mesh boneCount(int setter)
  • -
    -

    boneIds

    -
    +
    +

    boneIndices

    @Cast("unsigned char*") -public org.bytedeco.javacpp.BytePointer boneIds()
    -
    +public org.bytedeco.javacpp.BytePointer boneIndices()
  • -
    -

    boneIds

    -
    -
    public Raylib.Mesh boneIds(org.bytedeco.javacpp.BytePointer setter)
    -
    +
    +

    boneIndices

    +
    public Raylib.Mesh boneIndices(org.bytedeco.javacpp.BytePointer setter)
  • boneWeights

    -
    public org.bytedeco.javacpp.FloatPointer boneWeights()
    -
  • boneWeights

    -
    public Raylib.Mesh boneWeights(org.bytedeco.javacpp.FloatPointer setter)
    -
  • -
    -

    boneMatrices

    -
    -
    public Raylib.Matrix boneMatrices()
    -
    +
    +

    animVertices

    +
    public org.bytedeco.javacpp.FloatPointer animVertices()
  • -
    -

    boneMatrices

    -
    -
    public Raylib.Mesh boneMatrices(Raylib.Matrix setter)
    -
    +
    +

    animVertices

    +
    public Raylib.Mesh animVertices(org.bytedeco.javacpp.FloatPointer setter)
  • -
    -

    boneCount

    -
    -
    public int boneCount()
    -
    +
    +

    animNormals

    +
    public org.bytedeco.javacpp.FloatPointer animNormals()
  • -
    -

    boneCount

    -
    -
    public Raylib.Mesh boneCount(int setter)
    -
    +
    +

    animNormals

    +
    public Raylib.Mesh animNormals(org.bytedeco.javacpp.FloatPointer setter)
  • vaoId

    -
    @Cast("unsigned int") public int vaoId()
    -
  • vaoId

    -
    public Raylib.Mesh vaoId(int setter)
    -
  • vboId

    -
    @Cast("unsigned int*") public org.bytedeco.javacpp.IntPointer vboId()
    -
  • vboId

    -
    public Raylib.Mesh vboId(org.bytedeco.javacpp.IntPointer setter)
    -
  • @@ -667,5 +533,6 @@

    vboId

    +
    diff --git a/doc/com/raylib/Raylib.Model.html b/doc/com/raylib/Raylib.Model.html index 48f71b7..3e4e871 100644 --- a/doc/com/raylib/Raylib.Model.html +++ b/doc/com/raylib/Raylib.Model.html @@ -1,31 +1,30 @@ - + Raylib.Model - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Model

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Model
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -123,7 +102,6 @@

    Class Raylib.Model


    public static class Raylib.Model extends org.bytedeco.javacpp.Pointer
    -
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -262,28 +240,22 @@

    Constructor Details

  • Model

    -
    public Model()
    Default native constructor.
    -
  • Model

    -
    public Model(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Model

    -
    public Model(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -297,170 +269,132 @@

    Method Details

  • position

    -
    public Raylib.Model position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Model getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • transform

    -
    @ByRef public Raylib.Matrix transform()
    -
  • transform

    -
    public Raylib.Model transform(Raylib.Matrix setter)
    -
  • meshCount

    -
    public int meshCount()
    -
  • meshCount

    -
    public Raylib.Model meshCount(int setter)
    -
  • materialCount

    -
    public int materialCount()
    -
  • materialCount

    -
    public Raylib.Model materialCount(int setter)
    -
  • meshes

    -
    public Raylib.Mesh meshes()
    -
  • meshes

    -
    public Raylib.Model meshes(Raylib.Mesh setter)
    -
  • materials

    -
    public Raylib.Material materials()
    -
  • materials

    -
    public Raylib.Model materials(Raylib.Material setter)
    -
  • meshMaterial

    -
    public org.bytedeco.javacpp.IntPointer meshMaterial()
    -
  • meshMaterial

    -
    public Raylib.Model meshMaterial(org.bytedeco.javacpp.IntPointer setter)
    -
  • -
    -

    boneCount

    -
    -
    public int boneCount()
    -
    +
    +

    skeleton

    +
    @ByRef +public Raylib.ModelSkeleton skeleton()
  • -
    -

    boneCount

    -
    -
    public Raylib.Model boneCount(int setter)
    -
    +
    +

    skeleton

    +
    public Raylib.Model skeleton(Raylib.ModelSkeleton setter)
  • -
    -

    bones

    -
    -
    public Raylib.BoneInfo bones()
    -
    +
    +

    currentPose

    +
    @Cast("ModelAnimPose") +public Raylib.Transform currentPose()
  • -
    -

    bones

    -
    -
    public Raylib.Model bones(Raylib.BoneInfo setter)
    -
    +
    +

    currentPose

    +
    public Raylib.Model currentPose(Raylib.Transform setter)
  • -
    -

    bindPose

    -
    -
    public Raylib.Transform bindPose()
    -
    +
    +

    boneMatrices

    +
    public Raylib.Matrix boneMatrices()
  • -
    -

    bindPose

    -
    -
    public Raylib.Model bindPose(Raylib.Transform setter)
    -
    +
    +

    boneMatrices

    +
    public Raylib.Model boneMatrices(Raylib.Matrix setter)
  • @@ -471,5 +405,6 @@

    bindPose

    +
    diff --git a/doc/com/raylib/Raylib.ModelAnimation.html b/doc/com/raylib/Raylib.ModelAnimation.html index b8b2ef4..4242632 100644 --- a/doc/com/raylib/Raylib.ModelAnimation.html +++ b/doc/com/raylib/Raylib.ModelAnimation.html @@ -1,31 +1,30 @@ - + Raylib.ModelAnimation - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.ModelAnimation

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.ModelAnimation
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -118,7 +102,6 @@

    Class Raylib.ModelAnimatio
    public static class Raylib.ModelAnimation extends org.bytedeco.javacpp.Pointer
    -

      @@ -127,7 +110,7 @@

      Class Raylib.ModelAnimatio

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -180,33 +163,20 @@

      Method Summary

      boneCount(int setter)
       
      - - -
       
      - - -
       
      -
      int
      - -
       
      - -
      frameCount(int setter)
      -
       
      -
      org.bytedeco.javacpp.PointerPointer
      - + +
      getPointer(long i)
       
      - -
      framePoses(int i)
      +
      int
      +
       
      -
      framePoses(int i, - Raylib.Transform setter)
      +
      keyframeCount(int setter)
       
      - -
      framePoses(org.bytedeco.javacpp.PointerPointer setter)
      +
      org.bytedeco.javacpp.PointerPointer
      +
       
      -
      getPointer(long i)
      +
      keyframePoses(org.bytedeco.javacpp.PointerPointer setter)
       
      org.bytedeco.javacpp.BytePointer
      @@ -228,8 +198,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -244,28 +214,22 @@

    Constructor Details

  • ModelAnimation

    -
    public ModelAnimation()
    Default native constructor.
    -
  • ModelAnimation

    -
    public ModelAnimation(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • ModelAnimation

    -
    public ModelAnimation(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -279,135 +243,80 @@

    Method Details

  • position

    -
    public Raylib.ModelAnimation position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.ModelAnimation getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
    -
    -
  • -
  • -
    -

    boneCount

    -
    -
    public int boneCount()
    -
    -
    -
  • -
  • -
    -

    boneCount

    -
    -
    public Raylib.ModelAnimation boneCount(int setter)
    -
    -
    -
  • -
  • -
    -

    frameCount

    -
    -
    public int frameCount()
    -
    -
    -
  • -
  • -
    -

    frameCount

    -
    -
    public Raylib.ModelAnimation frameCount(int setter)
    -
  • -
    -

    bones

    -
    -
    public Raylib.BoneInfo bones()
    -
    +
    +

    name

    +
    @Cast("char") +public byte name(int i)
  • -
    -

    bones

    -
    -
    public Raylib.ModelAnimation bones(Raylib.BoneInfo setter)
    -
    +
    +

    name

    +
    public Raylib.ModelAnimation name(int i, + byte setter)
  • -
    -

    framePoses

    -
    -
    public Raylib.Transform framePoses(int i)
    -
    +
    +

    name

    +
    @MemberGetter +@Cast("char*") +public org.bytedeco.javacpp.BytePointer name()
  • -
    -

    framePoses

    -
    -
    public Raylib.ModelAnimation framePoses(int i, - Raylib.Transform setter)
    -
    +
    +

    boneCount

    +
    public int boneCount()
  • -
    -

    framePoses

    -
    -
    @Cast("Transform**") -public org.bytedeco.javacpp.PointerPointer framePoses()
    -
    +
    +

    boneCount

    +
    public Raylib.ModelAnimation boneCount(int setter)
  • -
    -

    framePoses

    -
    -
    public Raylib.ModelAnimation framePoses(org.bytedeco.javacpp.PointerPointer setter)
    -
    +
    +

    keyframeCount

    +
    public int keyframeCount()
  • -
    -

    name

    -
    -
    @Cast("char") -public byte name(int i)
    -
    +
    +

    keyframeCount

    +
    public Raylib.ModelAnimation keyframeCount(int setter)
  • -
    -

    name

    -
    -
    public Raylib.ModelAnimation name(int i, - byte setter)
    -
    +
    +

    keyframePoses

    +
    @Cast("ModelAnimPose*") +public org.bytedeco.javacpp.PointerPointer keyframePoses()
  • -
    -

    name

    -
    -
    @MemberGetter -@Cast("char*") -public org.bytedeco.javacpp.BytePointer name()
    -
    +
    +

    keyframePoses

    +
    public Raylib.ModelAnimation keyframePoses(org.bytedeco.javacpp.PointerPointer setter)
  • @@ -418,5 +327,6 @@

    name

    +
    diff --git a/doc/com/raylib/Raylib.ModelSkeleton.html b/doc/com/raylib/Raylib.ModelSkeleton.html new file mode 100644 index 0000000..cd507cf --- /dev/null +++ b/doc/com/raylib/Raylib.ModelSkeleton.html @@ -0,0 +1,300 @@ + + + + +Raylib.ModelSkeleton + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package com.raylib
    +

    Class Raylib.ModelSkeleton

    +
    +
    java.lang.Object +
    org.bytedeco.javacpp.Pointer +
    com.raylib.Raylib.ModelSkeleton
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    AutoCloseable
    +
    +
    +
    Enclosing class:
    +
    Raylib
    +
    +
    +
    public static class Raylib.ModelSkeleton +extends org.bytedeco.javacpp.Pointer
    +
    +
    +
      + +
    • +
      +

      Nested Class Summary

      +
      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      +
      +
    • + +
    • +
      +

      Field Summary

      +
      +

      Fields inherited from class org.bytedeco.javacpp.Pointer

      +address, capacity, limit, position
      +
      +
    • + +
    • +
      +

      Constructor Summary

      +
      Constructors
      +
      +
      Constructor
      +
      Description
      + +
      +
      Default native constructor.
      +
      +
      ModelSkeleton(long size)
      +
      +
      Native array allocator.
      +
      +
      ModelSkeleton(org.bytedeco.javacpp.Pointer p)
      +
      +
      Pointer cast constructor.
      +
      +
      +
      +
    • + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + + +
       
      + + +
       
      +
      int
      + +
       
      + +
      boneCount(int setter)
      +
       
      + + +
       
      + + +
       
      + +
      getPointer(long i)
      +
       
      + +
      position(long position)
      +
       
      +
      +
      +
      +
      +

      Methods inherited from class org.bytedeco.javacpp.Pointer

      +address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
      +
      +

      Methods inherited from class java.lang.Object

      +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        ModelSkeleton

        +
        public ModelSkeleton()
        +
        Default native constructor.
        +
        +
      • +
      • +
        +

        ModelSkeleton

        +
        public ModelSkeleton(long size)
        +
        Native array allocator. Access with Pointer.position(long).
        +
        +
      • +
      • +
        +

        ModelSkeleton

        +
        public ModelSkeleton(org.bytedeco.javacpp.Pointer p)
        +
        Pointer cast constructor. Invokes Pointer(Pointer).
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      + +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/doc/com/raylib/Raylib.Music.html b/doc/com/raylib/Raylib.Music.html index 0474f9b..3476366 100644 --- a/doc/com/raylib/Raylib.Music.html +++ b/doc/com/raylib/Raylib.Music.html @@ -1,31 +1,30 @@ - + Raylib.Music - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Music

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Music
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.Music


    public static class Raylib.Music extends org.bytedeco.javacpp.Pointer
    -
      @@ -124,7 +110,7 @@

      Class Raylib.Music

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,8 +200,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • Music

    -
    public Music()
    Default native constructor.
    -
  • Music

    -
    public Music(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Music

    -
    public Music(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,108 +245,84 @@

    Method Details

  • position

    -
    public Raylib.Music position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Music getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • stream

    -
    @ByRef public Raylib.AudioStream stream()
    -
  • stream

    -
    public Raylib.Music stream(Raylib.AudioStream setter)
    -
  • frameCount

    -
    @Cast("unsigned int") public int frameCount()
    -
  • frameCount

    -
    public Raylib.Music frameCount(int setter)
    -
  • looping

    -
    @Cast("bool") public boolean looping()
    -
  • looping

    -
    public Raylib.Music looping(boolean setter)
    -
  • ctxType

    -
    public int ctxType()
    -
  • ctxType

    -
    public Raylib.Music ctxType(int setter)
    -
  • ctxData

    -
    public org.bytedeco.javacpp.Pointer ctxData()
    -
  • ctxData

    -
    public Raylib.Music ctxData(org.bytedeco.javacpp.Pointer setter)
    -
  • @@ -377,5 +333,6 @@

    ctxData

    +
    diff --git a/doc/com/raylib/Raylib.NPatchInfo.html b/doc/com/raylib/Raylib.NPatchInfo.html index c57e642..357da96 100644 --- a/doc/com/raylib/Raylib.NPatchInfo.html +++ b/doc/com/raylib/Raylib.NPatchInfo.html @@ -1,31 +1,30 @@ - + Raylib.NPatchInfo - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.NPatchInfo

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.NPatchInfo
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -117,7 +102,6 @@

    Class Raylib.NPatchInfo


    public static class Raylib.NPatchInfo extends org.bytedeco.javacpp.Pointer
    -
      @@ -126,7 +110,7 @@

      Class Raylib.NPatchInfo

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -222,8 +206,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -238,28 +222,22 @@

    Constructor Details

  • NPatchInfo

    -
    public NPatchInfo()
    Default native constructor.
    -
  • NPatchInfo

    -
    public NPatchInfo(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • NPatchInfo

    -
    public NPatchInfo(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -273,122 +251,94 @@

    Method Details

  • position

    -
    public Raylib.NPatchInfo position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.NPatchInfo getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • source

    -
    @ByRef public Raylib.Rectangle source()
    -
  • source

    -
    public Raylib.NPatchInfo source(Raylib.Rectangle setter)
    -
  • left

    -
    public int left()
    -
  • left

    -
    public Raylib.NPatchInfo left(int setter)
    -
  • top

    -
    public int top()
    -
  • top

    -
    public Raylib.NPatchInfo top(int setter)
    -
  • right

    -
    public int right()
    -
  • right

    -
    public Raylib.NPatchInfo right(int setter)
    -
  • bottom

    -
    public int bottom()
    -
  • bottom

    -
    public Raylib.NPatchInfo bottom(int setter)
    -
  • layout

    -
    public int layout()
    -
  • layout

    -
    public Raylib.NPatchInfo layout(int setter)
    -
  • @@ -399,5 +349,6 @@

    layout

    +
    diff --git a/doc/com/raylib/Raylib.PhysicsBody.html b/doc/com/raylib/Raylib.PhysicsBody.html index 0ae3eea..2d16b78 100644 --- a/doc/com/raylib/Raylib.PhysicsBody.html +++ b/doc/com/raylib/Raylib.PhysicsBody.html @@ -1,31 +1,30 @@ - + Raylib.PhysicsBody - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.PhysicsBody

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.PhysicsBody
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -143,7 +102,6 @@

    Class Raylib.PhysicsBody


    public static class Raylib.PhysicsBody extends org.bytedeco.javacpp.Pointer
    -
      @@ -152,7 +110,7 @@

      Class Raylib.PhysicsBody

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -326,8 +284,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -342,28 +300,22 @@

    Constructor Details

  • PhysicsBody

    -
    public PhysicsBody()
    Default native constructor.
    -
  • PhysicsBody

    -
    public PhysicsBody(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • PhysicsBody

    -
    public PhysicsBody(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -377,339 +329,259 @@

    Method Details

  • position

    -
    public Raylib.PhysicsBody position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.PhysicsBody getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • id

    -
    @Cast("unsigned int") public int id()
    -
  • id

    -
    public Raylib.PhysicsBody id(int setter)
    -
  • enabled

    -
    @Cast("bool") public boolean enabled()
    -
  • enabled

    -
    public Raylib.PhysicsBody enabled(boolean setter)
    -
  • _position

    -
    @ByRef @Name("position") public Raylib.Vector2 _position()
    -
  • _position

    -
    public Raylib.PhysicsBody _position(Raylib.Vector2 setter)
    -
  • velocity

    -
    @ByRef public Raylib.Vector2 velocity()
    -
  • velocity

    -
    public Raylib.PhysicsBody velocity(Raylib.Vector2 setter)
    -
  • force

    -
    @ByRef public Raylib.Vector2 force()
    -
  • force

    -
    public Raylib.PhysicsBody force(Raylib.Vector2 setter)
    -
  • angularVelocity

    -
    public float angularVelocity()
    -
  • angularVelocity

    -
    public Raylib.PhysicsBody angularVelocity(float setter)
    -
  • torque

    -
    public float torque()
    -
  • torque

    -
    public Raylib.PhysicsBody torque(float setter)
    -
  • orient

    -
    public float orient()
    -
  • orient

    -
    public Raylib.PhysicsBody orient(float setter)
    -
  • inertia

    -
    public float inertia()
    -
  • inertia

    -
    public Raylib.PhysicsBody inertia(float setter)
    -
  • inverseInertia

    -
    public float inverseInertia()
    -
  • inverseInertia

    -
    public Raylib.PhysicsBody inverseInertia(float setter)
    -
  • mass

    -
    public float mass()
    -
  • mass

    -
    public Raylib.PhysicsBody mass(float setter)
    -
  • inverseMass

    -
    public float inverseMass()
    -
  • inverseMass

    -
    public Raylib.PhysicsBody inverseMass(float setter)
    -
  • staticFriction

    -
    public float staticFriction()
    -
  • staticFriction

    -
    public Raylib.PhysicsBody staticFriction(float setter)
    -
  • dynamicFriction

    -
    public float dynamicFriction()
    -
  • dynamicFriction

    -
    public Raylib.PhysicsBody dynamicFriction(float setter)
    -
  • restitution

    -
    public float restitution()
    -
  • restitution

    -
    public Raylib.PhysicsBody restitution(float setter)
    -
  • useGravity

    -
    @Cast("bool") public boolean useGravity()
    -
  • useGravity

    -
    public Raylib.PhysicsBody useGravity(boolean setter)
    -
  • isGrounded

    -
    @Cast("bool") public boolean isGrounded()
    -
  • isGrounded

    -
    public Raylib.PhysicsBody isGrounded(boolean setter)
    -
  • freezeOrient

    -
    @Cast("bool") public boolean freezeOrient()
    -
  • freezeOrient

    -
    public Raylib.PhysicsBody freezeOrient(boolean setter)
    -
  • shape

    -
    @ByRef public Raylib.PhysicsShape shape()
    -
  • shape

    -
    public Raylib.PhysicsBody shape(Raylib.PhysicsShape setter)
    -
  • @@ -720,5 +592,6 @@

    shape

    +
    diff --git a/doc/com/raylib/Raylib.PhysicsManifoldData.html b/doc/com/raylib/Raylib.PhysicsManifoldData.html index e1b113e..bad3e41 100644 --- a/doc/com/raylib/Raylib.PhysicsManifoldData.html +++ b/doc/com/raylib/Raylib.PhysicsManifoldData.html @@ -1,31 +1,30 @@ - + Raylib.PhysicsManifoldData - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.PhysicsManifoldData

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.PhysicsManifoldData
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -126,7 +102,6 @@

    Class Raylib.PhysicsM
    public static class Raylib.PhysicsManifoldData extends org.bytedeco.javacpp.Pointer
    -

      @@ -135,7 +110,7 @@

      Class Raylib.PhysicsM

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -259,8 +234,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -275,28 +250,22 @@

    Constructor Details

  • PhysicsManifoldData

    -
    public PhysicsManifoldData()
    Default native constructor.
    -
  • PhysicsManifoldData

    -
    public PhysicsManifoldData(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • PhysicsManifoldData

    -
    public PhysicsManifoldData(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -310,199 +279,153 @@

    Method Details

  • position

    -
    public Raylib.PhysicsManifoldData position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.PhysicsManifoldData getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • id

    -
    @Cast("unsigned int") public int id()
    -
  • id

    -
    public Raylib.PhysicsManifoldData id(int setter)
    -
  • bodyA

    -
    public Raylib.PhysicsBody bodyA()
    -
  • bodyA

    -
  • bodyB

    -
    public Raylib.PhysicsBody bodyB()
    -
  • bodyB

    -
  • penetration

    -
    public float penetration()
    -
  • penetration

    -
    public Raylib.PhysicsManifoldData penetration(float setter)
    -
  • normal

    -
    @ByRef public Raylib.Vector2 normal()
    -
  • normal

    -
    -
  • contacts

    -
    @ByRef public Raylib.Vector2 contacts(int i)
    -
  • contacts

    -
    public Raylib.PhysicsManifoldData contacts(int i, Raylib.Vector2 setter)
    -
  • contacts

    -
    @MemberGetter public Raylib.Vector2 contacts()
    -
  • contactsCount

    -
    @Cast("unsigned int") public int contactsCount()
    -
  • contactsCount

    -
    public Raylib.PhysicsManifoldData contactsCount(int setter)
    -
  • restitution

    -
    public float restitution()
    -
  • restitution

    -
    public Raylib.PhysicsManifoldData restitution(float setter)
    -
  • dynamicFriction

    -
    public float dynamicFriction()
    -
  • dynamicFriction

    -
    public Raylib.PhysicsManifoldData dynamicFriction(float setter)
    -
  • staticFriction

    -
    public float staticFriction()
    -
  • staticFriction

    -
    public Raylib.PhysicsManifoldData staticFriction(float setter)
    -
  • @@ -513,5 +436,6 @@

    staticFriction

    +
    diff --git a/doc/com/raylib/Raylib.PhysicsShape.html b/doc/com/raylib/Raylib.PhysicsShape.html index eed21ec..ccfec0b 100644 --- a/doc/com/raylib/Raylib.PhysicsShape.html +++ b/doc/com/raylib/Raylib.PhysicsShape.html @@ -1,31 +1,30 @@ - + Raylib.PhysicsShape - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.PhysicsShape

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.PhysicsShape
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.PhysicsShape
    public static class Raylib.PhysicsShape extends org.bytedeco.javacpp.Pointer
    -

      @@ -124,7 +110,7 @@

      Class Raylib.PhysicsShape

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
    @@ -214,8 +200,8 @@

    Method Summary

    Methods inherited from class org.bytedeco.javacpp.Pointer

    address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • PhysicsShape

    -
    public PhysicsShape()
    Default native constructor.
    -
  • PhysicsShape

    -
    public PhysicsShape(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • PhysicsShape

    -
    public PhysicsShape(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,108 +245,84 @@

    Method Details

  • position

    -
    public Raylib.PhysicsShape position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.PhysicsShape getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • type

    -
    @Cast("PhysicsShapeType") public int type()
    -
  • type

    -
    public Raylib.PhysicsShape type(int setter)
    -
  • body

    -
    public Raylib.PhysicsBody body()
    -
  • body

    -
    -
  • vertexData

    -
    @ByRef public Raylib.PhysicsVertexData vertexData()
    -
  • vertexData

    -
    public Raylib.PhysicsShape vertexData(Raylib.PhysicsVertexData setter)
    -
  • radius

    -
    public float radius()
    -
  • radius

    -
    public Raylib.PhysicsShape radius(float setter)
    -
  • transform

    -
    @ByRef public Raylib.Matrix2x2 transform()
    -
  • transform

    -
    public Raylib.PhysicsShape transform(Raylib.Matrix2x2 setter)
    -
  • @@ -377,5 +333,6 @@

    transform

    +
    diff --git a/doc/com/raylib/Raylib.PhysicsVertexData.html b/doc/com/raylib/Raylib.PhysicsVertexData.html index 6fd15a9..2077dc6 100644 --- a/doc/com/raylib/Raylib.PhysicsVertexData.html +++ b/doc/com/raylib/Raylib.PhysicsVertexData.html @@ -1,31 +1,30 @@ - + Raylib.PhysicsVertexData - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.PhysicsVertexData

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.PhysicsVertexData
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.PhysicsVer
    public static class Raylib.PhysicsVertexData extends org.bytedeco.javacpp.Pointer
    -

      @@ -122,7 +110,7 @@

      Class Raylib.PhysicsVer

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -208,8 +196,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -224,28 +212,22 @@

    Constructor Details

  • PhysicsVertexData

    -
    public PhysicsVertexData()
    Default native constructor.
    -
  • PhysicsVertexData

    -
    public PhysicsVertexData(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • PhysicsVertexData

    -
    public PhysicsVertexData(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -259,96 +241,76 @@

    Method Details

  • position

    -
    public Raylib.PhysicsVertexData position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.PhysicsVertexData getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • vertexCount

    -
    @Cast("unsigned int") public int vertexCount()
    -
  • vertexCount

    -
    public Raylib.PhysicsVertexData vertexCount(int setter)
    -
  • positions

    -
    @ByRef public Raylib.Vector2 positions(int i)
    -
  • positions

    -
    public Raylib.PhysicsVertexData positions(int i, Raylib.Vector2 setter)
    -
  • positions

    -
    @MemberGetter public Raylib.Vector2 positions()
    -
  • normals

    -
    @ByRef public Raylib.Vector2 normals(int i)
    -
  • normals

    -
    public Raylib.PhysicsVertexData normals(int i, Raylib.Vector2 setter)
    -
  • normals

    -
    @MemberGetter public Raylib.Vector2 normals()
    -
  • @@ -359,5 +321,6 @@

    normals

    +
    diff --git a/doc/com/raylib/Raylib.Ray.html b/doc/com/raylib/Raylib.Ray.html index ff112cd..78b7b63 100644 --- a/doc/com/raylib/Raylib.Ray.html +++ b/doc/com/raylib/Raylib.Ray.html @@ -1,31 +1,30 @@ - + Raylib.Ray - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Ray

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Ray
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -109,7 +102,6 @@

    Class Raylib.Ray


    public static class Raylib.Ray extends org.bytedeco.javacpp.Pointer
    -
      @@ -118,7 +110,7 @@

      Class Raylib.Ray

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -190,8 +182,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -206,28 +198,22 @@

    Constructor Details

  • Ray

    -
    public Ray()
    Default native constructor.
    -
  • Ray

    -
    public Ray(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Ray

    -
    public Ray(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -241,60 +227,48 @@

    Method Details

  • position

    -
    public Raylib.Ray position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Ray getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • _position

    -
    @ByRef @Name("position") public Raylib.Vector3 _position()
    -
  • _position

    -
    public Raylib.Ray _position(Raylib.Vector3 setter)
    -
  • direction

    -
    @ByRef public Raylib.Vector3 direction()
    -
  • direction

    -
    public Raylib.Ray direction(Raylib.Vector3 setter)
    -
  • @@ -305,5 +279,6 @@

    direction

    +
    diff --git a/doc/com/raylib/Raylib.RayCollision.html b/doc/com/raylib/Raylib.RayCollision.html index 8f688a3..a033266 100644 --- a/doc/com/raylib/Raylib.RayCollision.html +++ b/doc/com/raylib/Raylib.RayCollision.html @@ -1,31 +1,30 @@ - + Raylib.RayCollision - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.RayCollision

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.RayCollision
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.RayCollision
    public static class Raylib.RayCollision extends org.bytedeco.javacpp.Pointer
    -

      @@ -122,7 +110,7 @@

      Class Raylib.RayCollision

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
    @@ -206,8 +194,8 @@

    Method Summary

    Methods inherited from class org.bytedeco.javacpp.Pointer

    address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -222,28 +210,22 @@

    Constructor Details

  • RayCollision

    -
    public RayCollision()
    Default native constructor.
    -
  • RayCollision

    -
    public RayCollision(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • RayCollision

    -
    public RayCollision(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -257,92 +239,72 @@

    Method Details

  • position

    -
    public Raylib.RayCollision position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.RayCollision getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • hit

    -
    @Cast("bool") public boolean hit()
    -
  • hit

    -
    public Raylib.RayCollision hit(boolean setter)
    -
  • distance

    -
    public float distance()
    -
  • distance

    -
    public Raylib.RayCollision distance(float setter)
    -
  • point

    -
    @ByRef public Raylib.Vector3 point()
    -
  • point

    -
    public Raylib.RayCollision point(Raylib.Vector3 setter)
    -
  • normal

    -
    @ByRef public Raylib.Vector3 normal()
    -
  • normal

    -
    public Raylib.RayCollision normal(Raylib.Vector3 setter)
    -
  • @@ -353,5 +315,6 @@

    normal

    +
    diff --git a/doc/com/raylib/Raylib.Rectangle.html b/doc/com/raylib/Raylib.Rectangle.html index b3ed8ab..f4a0531 100644 --- a/doc/com/raylib/Raylib.Rectangle.html +++ b/doc/com/raylib/Raylib.Rectangle.html @@ -1,31 +1,30 @@ - + Raylib.Rectangle - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Rectangle

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Rectangle
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.Rectangle


    public static class Raylib.Rectangle extends org.bytedeco.javacpp.Pointer
    -
      @@ -122,7 +110,7 @@

      Class Raylib.Rectangle

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -206,8 +194,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -222,28 +210,22 @@

    Constructor Details

  • Rectangle

    -
    public Rectangle()
    Default native constructor.
    -
  • Rectangle

    -
    public Rectangle(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Rectangle

    -
    public Rectangle(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -257,89 +239,69 @@

    Method Details

  • position

    -
    public Raylib.Rectangle position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Rectangle getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • x

    -
    public float x()
    -
  • x

    -
    public Raylib.Rectangle x(float setter)
    -
  • y

    -
    public float y()
    -
  • y

    -
    public Raylib.Rectangle y(float setter)
    -
  • width

    -
    public float width()
    -
  • width

    -
    public Raylib.Rectangle width(float setter)
    -
  • height

    -
    public float height()
    -
  • height

    -
    public Raylib.Rectangle height(float setter)
    -
  • @@ -350,5 +312,6 @@

    height

    +
    diff --git a/doc/com/raylib/Raylib.RenderTexture.html b/doc/com/raylib/Raylib.RenderTexture.html index f84c171..22ce2da 100644 --- a/doc/com/raylib/Raylib.RenderTexture.html +++ b/doc/com/raylib/Raylib.RenderTexture.html @@ -1,31 +1,30 @@ - + Raylib.RenderTexture - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.RenderTexture

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.RenderTexture
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -111,7 +102,6 @@

    Class Raylib.RenderTexture<
    public static class Raylib.RenderTexture extends org.bytedeco.javacpp.Pointer
    -

      @@ -120,7 +110,7 @@

      Class Raylib.RenderTexture<

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -198,8 +188,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -214,28 +204,22 @@

    Constructor Details

  • RenderTexture

    -
    public RenderTexture()
    Default native constructor.
    -
  • RenderTexture

    -
    public RenderTexture(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • RenderTexture

    -
    public RenderTexture(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -249,76 +233,60 @@

    Method Details

  • position

    -
    public Raylib.RenderTexture position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.RenderTexture getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • id

    -
    @Cast("unsigned int") public int id()
    -
  • id

    -
    public Raylib.RenderTexture id(int setter)
    -
  • texture

    -
    @ByRef public Raylib.Texture texture()
    -
  • texture

    -
    public Raylib.RenderTexture texture(Raylib.Texture setter)
    -
  • depth

    -
    @ByRef public Raylib.Texture depth()
    -
  • depth

    -
    public Raylib.RenderTexture depth(Raylib.Texture setter)
    -
  • @@ -329,5 +297,6 @@

    depth

    +
    diff --git a/doc/com/raylib/Raylib.SaveFileDataCallback.html b/doc/com/raylib/Raylib.SaveFileDataCallback.html index a97c6af..5143706 100644 --- a/doc/com/raylib/Raylib.SaveFileDataCallback.html +++ b/doc/com/raylib/Raylib.SaveFileDataCallback.html @@ -1,31 +1,30 @@ - + Raylib.SaveFileDataCallback - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.SaveFileDataCallback

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    org.bytedeco.javacpp.FunctionPointer
    com.raylib.Raylib.SaveFileDataCallback
    @@ -93,10 +93,9 @@

    Class Raylib.SaveFil

    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -105,7 +104,6 @@

    Class Raylib.SaveFil
    public static class Raylib.SaveFileDataCallback extends org.bytedeco.javacpp.FunctionPointer
    -

      @@ -114,7 +112,7 @@

      Class Raylib.SaveFil

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -170,8 +168,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -186,18 +184,14 @@

    Constructor Details

  • SaveFileDataCallback

    -
    public SaveFileDataCallback(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • SaveFileDataCallback

    -
    protected SaveFileDataCallback()
    -
  • @@ -211,13 +205,11 @@

    Method Details

  • call

    -
    @Cast("bool") public boolean call(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.Pointer data, int dataSize)
    -
  • @@ -228,5 +220,6 @@

    call

    +
    diff --git a/doc/com/raylib/Raylib.SaveFileTextCallback.html b/doc/com/raylib/Raylib.SaveFileTextCallback.html index dcb0fb2..aeddda6 100644 --- a/doc/com/raylib/Raylib.SaveFileTextCallback.html +++ b/doc/com/raylib/Raylib.SaveFileTextCallback.html @@ -1,31 +1,30 @@ - + Raylib.SaveFileTextCallback - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.SaveFileTextCallback

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    org.bytedeco.javacpp.FunctionPointer
    com.raylib.Raylib.SaveFileTextCallback
    @@ -93,10 +93,9 @@

    Class Raylib.SaveFil

    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -105,7 +104,6 @@

    Class Raylib.SaveFil
    public static class Raylib.SaveFileTextCallback extends org.bytedeco.javacpp.FunctionPointer
    -

      @@ -114,7 +112,7 @@

      Class Raylib.SaveFil

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -169,8 +167,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -185,18 +183,14 @@

    Constructor Details

  • SaveFileTextCallback

    -
    public SaveFileTextCallback(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • SaveFileTextCallback

    -
    protected SaveFileTextCallback()
    -
  • @@ -210,13 +204,11 @@

    Method Details

  • call

    -
    @Cast("bool") public boolean call(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - @Cast("char*") + @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • @@ -227,5 +219,6 @@

    call

    +
    diff --git a/doc/com/raylib/Raylib.Shader.html b/doc/com/raylib/Raylib.Shader.html index 5327e7c..41be045 100644 --- a/doc/com/raylib/Raylib.Shader.html +++ b/doc/com/raylib/Raylib.Shader.html @@ -1,31 +1,30 @@ - + Raylib.Shader - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Shader

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Shader
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -109,7 +102,6 @@

    Class Raylib.Shader


    public static class Raylib.Shader extends org.bytedeco.javacpp.Pointer
    -
      @@ -118,7 +110,7 @@

      Class Raylib.Shader

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -190,8 +182,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -206,28 +198,22 @@

    Constructor Details

  • Shader

    -
    public Shader()
    Default native constructor.
    -
  • Shader

    -
    public Shader(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Shader

    -
    public Shader(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -241,58 +227,46 @@

    Method Details

  • position

    -
    public Raylib.Shader position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Shader getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • id

    -
    @Cast("unsigned int") public int id()
    -
  • id

    -
    public Raylib.Shader id(int setter)
    -
  • locs

    -
    public org.bytedeco.javacpp.IntPointer locs()
    -
  • locs

    -
    public Raylib.Shader locs(org.bytedeco.javacpp.IntPointer setter)
    -
  • @@ -303,5 +277,6 @@

    locs

    +
    diff --git a/doc/com/raylib/Raylib.Sound.html b/doc/com/raylib/Raylib.Sound.html index 6dd8281..7372f9d 100644 --- a/doc/com/raylib/Raylib.Sound.html +++ b/doc/com/raylib/Raylib.Sound.html @@ -1,31 +1,30 @@ - + Raylib.Sound - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Sound

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Sound
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -109,7 +102,6 @@

    Class Raylib.Sound


    public static class Raylib.Sound extends org.bytedeco.javacpp.Pointer
    -
      @@ -118,7 +110,7 @@

      Class Raylib.Sound

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -190,8 +182,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -206,28 +198,22 @@

    Constructor Details

  • Sound

    -
    public Sound()
    Default native constructor.
    -
  • Sound

    -
    public Sound(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Sound

    -
    public Sound(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -241,59 +227,47 @@

    Method Details

  • position

    -
    public Raylib.Sound position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Sound getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • stream

    -
    @ByRef public Raylib.AudioStream stream()
    -
  • stream

    -
    public Raylib.Sound stream(Raylib.AudioStream setter)
    -
  • frameCount

    -
    @Cast("unsigned int") public int frameCount()
    -
  • frameCount

    -
    public Raylib.Sound frameCount(int setter)
    -
  • @@ -304,5 +278,6 @@

    frameCount

    +
    diff --git a/doc/com/raylib/Raylib.Texture.html b/doc/com/raylib/Raylib.Texture.html index 760adb4..67a66fe 100644 --- a/doc/com/raylib/Raylib.Texture.html +++ b/doc/com/raylib/Raylib.Texture.html @@ -1,31 +1,30 @@ - + Raylib.Texture - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Texture

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Texture
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.Texture


    public static class Raylib.Texture extends org.bytedeco.javacpp.Pointer
    -
      @@ -124,7 +110,7 @@

      Class Raylib.Texture

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,8 +200,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • Texture

    -
    public Texture()
    Default native constructor.
    -
  • Texture

    -
    public Texture(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Texture

    -
    public Texture(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,106 +245,82 @@

    Method Details

  • position

    -
    public Raylib.Texture position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Texture getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • id

    -
    @Cast("unsigned int") public int id()
    -
  • id

    -
    public Raylib.Texture id(int setter)
    -
  • width

    -
    public int width()
    -
  • width

    -
    public Raylib.Texture width(int setter)
    -
  • height

    -
    public int height()
    -
  • height

    -
    public Raylib.Texture height(int setter)
    -
  • mipmaps

    -
    public int mipmaps()
    -
  • mipmaps

    -
    public Raylib.Texture mipmaps(int setter)
    -
  • format

    -
    public int format()
    -
  • format

    -
    public Raylib.Texture format(int setter)
    -
  • @@ -375,5 +331,6 @@

    format

    +
    diff --git a/doc/com/raylib/Raylib.TraceLogCallback.html b/doc/com/raylib/Raylib.TraceLogCallback.html index 427d1f0..da7de7d 100644 --- a/doc/com/raylib/Raylib.TraceLogCallback.html +++ b/doc/com/raylib/Raylib.TraceLogCallback.html @@ -1,31 +1,30 @@ - + Raylib.TraceLogCallback - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.TraceLogCallback

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    org.bytedeco.javacpp.FunctionPointer
    com.raylib.Raylib.TraceLogCallback
    @@ -93,10 +93,9 @@

    Class Raylib.TraceLogCal

    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -105,7 +104,6 @@

    Class Raylib.TraceLogCal
    public static class Raylib.TraceLogCallback extends org.bytedeco.javacpp.FunctionPointer
    -

      @@ -114,7 +112,7 @@

      Class Raylib.TraceLogCal

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -170,8 +168,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -186,18 +184,14 @@

    Constructor Details

  • TraceLogCallback

    -
    public TraceLogCallback(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • TraceLogCallback

    -
    protected TraceLogCallback()
    -
  • @@ -211,13 +205,11 @@

    Method Details

  • call

    -
    public void call(int logLevel, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, @ByVal @Cast("va_list*") org.bytedeco.javacpp.Pointer args)
    -
  • @@ -228,5 +220,6 @@

    call

    +
    diff --git a/doc/com/raylib/Raylib.Transform.html b/doc/com/raylib/Raylib.Transform.html index 29857bf..3821c67 100644 --- a/doc/com/raylib/Raylib.Transform.html +++ b/doc/com/raylib/Raylib.Transform.html @@ -1,31 +1,30 @@ - + Raylib.Transform - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Transform

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Transform
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -111,7 +102,6 @@

    Class Raylib.Transform


    public static class Raylib.Transform extends org.bytedeco.javacpp.Pointer
    -
      @@ -120,7 +110,7 @@

      Class Raylib.Transform

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -198,8 +188,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -214,28 +204,22 @@

    Constructor Details

  • Transform

    -
    public Transform()
    Default native constructor.
    -
  • Transform

    -
    public Transform(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Transform

    -
    public Transform(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -249,77 +233,61 @@

    Method Details

  • position

    -
    public Raylib.Transform position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Transform getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • translation

    -
    @ByRef public Raylib.Vector3 translation()
    -
  • translation

    -
    public Raylib.Transform translation(Raylib.Vector3 setter)
    -
  • rotation

    -
    @ByRef @Cast("Quaternion*") public Raylib.Vector4 rotation()
    -
  • rotation

    -
    public Raylib.Transform rotation(Raylib.Vector4 setter)
    -
  • scale

    -
    @ByRef public Raylib.Vector3 scale()
    -
  • scale

    -
    public Raylib.Transform scale(Raylib.Vector3 setter)
    -
  • @@ -330,5 +298,6 @@

    scale

    +
    diff --git a/doc/com/raylib/Raylib.Vector2.html b/doc/com/raylib/Raylib.Vector2.html index 1a76ce4..0a3c7ec 100644 --- a/doc/com/raylib/Raylib.Vector2.html +++ b/doc/com/raylib/Raylib.Vector2.html @@ -1,31 +1,30 @@ - + Raylib.Vector2 - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Vector2

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Vector2
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -109,7 +102,6 @@

    Class Raylib.Vector2


    public static class Raylib.Vector2 extends org.bytedeco.javacpp.Pointer
    -
      @@ -118,7 +110,7 @@

      Class Raylib.Vector2

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -190,8 +182,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -206,28 +198,22 @@

    Constructor Details

  • Vector2

    -
    public Vector2()
    Default native constructor.
    -
  • Vector2

    -
    public Vector2(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Vector2

    -
    public Vector2(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -241,57 +227,45 @@

    Method Details

  • position

    -
    public Raylib.Vector2 position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Vector2 getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • x

    -
    public float x()
    -
  • x

    -
    public Raylib.Vector2 x(float setter)
    -
  • y

    -
    public float y()
    -
  • y

    -
    public Raylib.Vector2 y(float setter)
    -
  • @@ -302,5 +276,6 @@

    y

    +
    diff --git a/doc/com/raylib/Raylib.Vector3.html b/doc/com/raylib/Raylib.Vector3.html index 5a3d556..988e0e5 100644 --- a/doc/com/raylib/Raylib.Vector3.html +++ b/doc/com/raylib/Raylib.Vector3.html @@ -1,31 +1,30 @@ - + Raylib.Vector3 - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Vector3

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Vector3
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -111,7 +102,6 @@

    Class Raylib.Vector3


    public static class Raylib.Vector3 extends org.bytedeco.javacpp.Pointer
    -
      @@ -120,7 +110,7 @@

      Class Raylib.Vector3

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -198,8 +188,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -214,28 +204,22 @@

    Constructor Details

  • Vector3

    -
    public Vector3()
    Default native constructor.
    -
  • Vector3

    -
    public Vector3(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Vector3

    -
    public Vector3(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -249,73 +233,57 @@

    Method Details

  • position

    -
    public Raylib.Vector3 position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Vector3 getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • x

    -
    public float x()
    -
  • x

    -
    public Raylib.Vector3 x(float setter)
    -
  • y

    -
    public float y()
    -
  • y

    -
    public Raylib.Vector3 y(float setter)
    -
  • z

    -
    public float z()
    -
  • z

    -
    public Raylib.Vector3 z(float setter)
    -
  • @@ -326,5 +294,6 @@

    z

    +
    diff --git a/doc/com/raylib/Raylib.Vector4.html b/doc/com/raylib/Raylib.Vector4.html index 084b294..5cba33f 100644 --- a/doc/com/raylib/Raylib.Vector4.html +++ b/doc/com/raylib/Raylib.Vector4.html @@ -1,31 +1,30 @@ - + Raylib.Vector4 - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Vector4

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Vector4
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.Vector4


    public static class Raylib.Vector4 extends org.bytedeco.javacpp.Pointer
    -
      @@ -122,7 +110,7 @@

      Class Raylib.Vector4

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -206,8 +194,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -222,28 +210,22 @@

    Constructor Details

  • Vector4

    -
    public Vector4()
    Default native constructor.
    -
  • Vector4

    -
    public Vector4(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Vector4

    -
    public Vector4(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -257,89 +239,69 @@

    Method Details

  • position

    -
    public Raylib.Vector4 position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Vector4 getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • x

    -
    public float x()
    -
  • x

    -
    public Raylib.Vector4 x(float setter)
    -
  • y

    -
    public float y()
    -
  • y

    -
    public Raylib.Vector4 y(float setter)
    -
  • z

    -
    public float z()
    -
  • z

    -
    public Raylib.Vector4 z(float setter)
    -
  • w

    -
    public float w()
    -
  • w

    -
    public Raylib.Vector4 w(float setter)
    -
  • @@ -350,5 +312,6 @@

    w

    +
    diff --git a/doc/com/raylib/Raylib.VrDeviceInfo.html b/doc/com/raylib/Raylib.VrDeviceInfo.html index 9bec58c..23e4717 100644 --- a/doc/com/raylib/Raylib.VrDeviceInfo.html +++ b/doc/com/raylib/Raylib.VrDeviceInfo.html @@ -1,31 +1,30 @@ - + Raylib.VrDeviceInfo - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.VrDeviceInfo

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.VrDeviceInfo
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -125,7 +102,6 @@

    Class Raylib.VrDeviceInfo
    public static class Raylib.VrDeviceInfo extends org.bytedeco.javacpp.Pointer
    -

      @@ -134,7 +110,7 @@

      Class Raylib.VrDeviceInfo

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
    @@ -256,8 +232,8 @@

    Method Summary

    Methods inherited from class org.bytedeco.javacpp.Pointer

    address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -272,28 +248,22 @@

    Constructor Details

  • VrDeviceInfo

    -
    public VrDeviceInfo()
    Default native constructor.
    -
  • VrDeviceInfo

    -
    public VrDeviceInfo(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • VrDeviceInfo

    -
    public VrDeviceInfo(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -307,189 +277,145 @@

    Method Details

  • position

    -
    public Raylib.VrDeviceInfo position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.VrDeviceInfo getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • hResolution

    -
    public int hResolution()
    -
  • hResolution

    -
    public Raylib.VrDeviceInfo hResolution(int setter)
    -
  • vResolution

    -
    public int vResolution()
    -
  • vResolution

    -
    public Raylib.VrDeviceInfo vResolution(int setter)
    -
  • hScreenSize

    -
    public float hScreenSize()
    -
  • hScreenSize

    -
    public Raylib.VrDeviceInfo hScreenSize(float setter)
    -
  • vScreenSize

    -
    public float vScreenSize()
    -
  • vScreenSize

    -
    public Raylib.VrDeviceInfo vScreenSize(float setter)
    -
  • eyeToScreenDistance

    -
    public float eyeToScreenDistance()
    -
  • eyeToScreenDistance

    -
    public Raylib.VrDeviceInfo eyeToScreenDistance(float setter)
    -
  • lensSeparationDistance

    -
    public float lensSeparationDistance()
    -
  • lensSeparationDistance

    -
    public Raylib.VrDeviceInfo lensSeparationDistance(float setter)
    -
  • interpupillaryDistance

    -
    public float interpupillaryDistance()
    -
  • interpupillaryDistance

    -
    public Raylib.VrDeviceInfo interpupillaryDistance(float setter)
    -
  • lensDistortionValues

    -
    public float lensDistortionValues(int i)
    -
  • lensDistortionValues

    -
    public Raylib.VrDeviceInfo lensDistortionValues(int i, float setter)
    -
  • lensDistortionValues

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer lensDistortionValues()
    -
  • chromaAbCorrection

    -
    public float chromaAbCorrection(int i)
    -
  • chromaAbCorrection

    -
    public Raylib.VrDeviceInfo chromaAbCorrection(int i, float setter)
    -
  • chromaAbCorrection

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer chromaAbCorrection()
    -
  • @@ -500,5 +426,6 @@

    chromaAbCorrection

    +
    diff --git a/doc/com/raylib/Raylib.VrStereoConfig.html b/doc/com/raylib/Raylib.VrStereoConfig.html index dae1e9f..abf5332 100644 --- a/doc/com/raylib/Raylib.VrStereoConfig.html +++ b/doc/com/raylib/Raylib.VrStereoConfig.html @@ -1,31 +1,30 @@ - + Raylib.VrStereoConfig - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.VrStereoConfig

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.VrStereoConfig
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -129,7 +102,6 @@

    Class Raylib.VrStereoConfi
    public static class Raylib.VrStereoConfig extends org.bytedeco.javacpp.Pointer
    -

      @@ -138,7 +110,7 @@

      Class Raylib.VrStereoConfi

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -278,8 +250,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -294,28 +266,22 @@

    Constructor Details

  • VrStereoConfig

    -
    public VrStereoConfig()
    Default native constructor.
    -
  • VrStereoConfig

    -
    public VrStereoConfig(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • VrStereoConfig

    -
    public VrStereoConfig(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -329,235 +295,183 @@

    Method Details

  • position

    -
    public Raylib.VrStereoConfig position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.VrStereoConfig getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • projection

    -
    @ByRef public Raylib.Matrix projection(int i)
    -
  • projection

    -
    public Raylib.VrStereoConfig projection(int i, Raylib.Matrix setter)
    -
  • projection

    -
    @MemberGetter public Raylib.Matrix projection()
    -
  • viewOffset

    -
    @ByRef public Raylib.Matrix viewOffset(int i)
    -
  • viewOffset

    -
    public Raylib.VrStereoConfig viewOffset(int i, Raylib.Matrix setter)
    -
  • viewOffset

    -
    @MemberGetter public Raylib.Matrix viewOffset()
    -
  • leftLensCenter

    -
    public float leftLensCenter(int i)
    -
  • leftLensCenter

    -
    public Raylib.VrStereoConfig leftLensCenter(int i, float setter)
    -
  • leftLensCenter

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer leftLensCenter()
    -
  • rightLensCenter

    -
    public float rightLensCenter(int i)
    -
  • rightLensCenter

    -
    public Raylib.VrStereoConfig rightLensCenter(int i, float setter)
    -
  • rightLensCenter

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer rightLensCenter()
    -
  • leftScreenCenter

    -
    public float leftScreenCenter(int i)
    -
  • leftScreenCenter

    -
    public Raylib.VrStereoConfig leftScreenCenter(int i, float setter)
    -
  • leftScreenCenter

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer leftScreenCenter()
    -
  • rightScreenCenter

    -
    public float rightScreenCenter(int i)
    -
  • rightScreenCenter

    -
    public Raylib.VrStereoConfig rightScreenCenter(int i, float setter)
    -
  • rightScreenCenter

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer rightScreenCenter()
    -
  • scale

    -
    public float scale(int i)
    -
  • scale

    -
    public Raylib.VrStereoConfig scale(int i, float setter)
    -
  • scale

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer scale()
    -
  • scaleIn

    -
    public float scaleIn(int i)
    -
  • scaleIn

    -
    public Raylib.VrStereoConfig scaleIn(int i, float setter)
    -
  • scaleIn

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer scaleIn()
    -
  • @@ -568,5 +482,6 @@

    scaleIn

    +
    diff --git a/doc/com/raylib/Raylib.Wave.html b/doc/com/raylib/Raylib.Wave.html index 7249a92..8370964 100644 --- a/doc/com/raylib/Raylib.Wave.html +++ b/doc/com/raylib/Raylib.Wave.html @@ -1,31 +1,30 @@ - + Raylib.Wave - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.Wave

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.Wave
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -115,7 +102,6 @@

    Class Raylib.Wave


    public static class Raylib.Wave extends org.bytedeco.javacpp.Pointer
    -
      @@ -124,7 +110,7 @@

      Class Raylib.Wave

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -214,8 +200,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -230,28 +216,22 @@

    Constructor Details

  • Wave

    -
    public Wave()
    Default native constructor.
    -
  • Wave

    -
    public Wave(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • Wave

    -
    public Wave(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -265,109 +245,85 @@

    Method Details

  • position

    -
    public Raylib.Wave position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.Wave getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • frameCount

    -
    @Cast("unsigned int") public int frameCount()
    -
  • frameCount

    -
    public Raylib.Wave frameCount(int setter)
    -
  • sampleRate

    -
    @Cast("unsigned int") public int sampleRate()
    -
  • sampleRate

    -
    public Raylib.Wave sampleRate(int setter)
    -
  • sampleSize

    -
    @Cast("unsigned int") public int sampleSize()
    -
  • sampleSize

    -
    public Raylib.Wave sampleSize(int setter)
    -
  • channels

    -
    @Cast("unsigned int") public int channels()
    -
  • channels

    -
    public Raylib.Wave channels(int setter)
    -
  • data

    -
    public org.bytedeco.javacpp.Pointer data()
    -
  • data

    -
    public Raylib.Wave data(org.bytedeco.javacpp.Pointer setter)
    -
  • @@ -378,5 +334,6 @@

    data

    +
    diff --git a/doc/com/raylib/Raylib.float16.html b/doc/com/raylib/Raylib.float16.html index 5b4538a..22e7760 100644 --- a/doc/com/raylib/Raylib.float16.html +++ b/doc/com/raylib/Raylib.float16.html @@ -1,31 +1,30 @@ - + Raylib.float16 - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.float16

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.float16
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -108,7 +102,6 @@

    Class Raylib.float16


    public static class Raylib.float16 extends org.bytedeco.javacpp.Pointer
    -
      @@ -117,7 +110,7 @@

      Class Raylib.float16

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -187,8 +180,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -203,28 +196,22 @@

    Constructor Details

  • float16

    -
    public float16()
    Default native constructor.
    -
  • float16

    -
    public float16(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • float16

    -
    public float16(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -238,51 +225,41 @@

    Method Details

  • position

    -
    public Raylib.float16 position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.float16 getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • v

    -
    public float v(int i)
    -
  • v

    -
    public Raylib.float16 v(int i, float setter)
    -
  • v

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer v()
    -
  • @@ -293,5 +270,6 @@

    v

    +
    diff --git a/doc/com/raylib/Raylib.float3.html b/doc/com/raylib/Raylib.float3.html index 8812fdc..a3546d2 100644 --- a/doc/com/raylib/Raylib.float3.html +++ b/doc/com/raylib/Raylib.float3.html @@ -1,31 +1,30 @@ - + Raylib.float3 - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.float3

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.float3
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -108,7 +102,6 @@

    Class Raylib.float3


    public static class Raylib.float3 extends org.bytedeco.javacpp.Pointer
    -
      @@ -117,7 +110,7 @@

      Class Raylib.float3

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -187,8 +180,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -203,28 +196,22 @@

    Constructor Details

  • float3

    -
    public float3()
    Default native constructor.
    -
  • float3

    -
    public float3(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • float3

    -
    public float3(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -238,51 +225,41 @@

    Method Details

  • position

    -
    public Raylib.float3 position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.float3 getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • v

    -
    public float v(int i)
    -
  • v

    -
    public Raylib.float3 v(int i, float setter)
    -
  • v

    -
    @MemberGetter public org.bytedeco.javacpp.FloatPointer v()
    -
  • @@ -293,5 +270,6 @@

    v

    +
    diff --git a/doc/com/raylib/Raylib.html b/doc/com/raylib/Raylib.html index d2e3594..81585fe 100644 --- a/doc/com/raylib/Raylib.html +++ b/doc/com/raylib/Raylib.html @@ -1,31 +1,30 @@ - + Raylib - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib

    -
    java.lang.Object +
    -
    All Implemented Interfaces:
    org.bytedeco.javacpp.tools.InfoMapper
    @@ -2328,7 +98,6 @@

    Class Raylib


    public class Raylib extends RaylibConfig
    -
    @@ -2693,61 +465,66 @@

    Field Summary

    enum GuiControl
    static final int
    - +
    -
    enum CubemapLayout
    +
    enum GuiControl
    static final int
    - +
    enum CubemapLayout
    static final int
    - +
    enum CubemapLayout
    static final int
    - +
    enum CubemapLayout
    static final int
    - +
    enum CubemapLayout
    static final int
    - +
    -
    enum GuiControl
    +
    enum CubemapLayout
    -
    static final double
    - -
     
    -
    static final int
    - -
    -
    enum GuiDropdownBoxProperty
    +
    static final int
    + +
    +
    enum GuiControl
    +
    static final double
    + +
     
    static final int
    - +
    enum GuiDropdownBoxProperty
    static final int
    - +
    enum GuiDropdownBoxProperty
    static final int
    - +
    -
    enum GuiControl
    +
    enum GuiDropdownBoxProperty
    -
    static final double
    - +
    static final int
    +
    +
    enum GuiControl
    +
    +
    static final double
    + +
    raymath v2.0 - Math functions to work with Vector2, Vector3, Matrix and Quaternions CONVENTIONS: @@ -2763,809 +540,794 @@

    Field Summary

    - Functions use always a "result" variable for return (except C++ operators) - Functions are always defined inline - Angles are always in radians (DEG2RAD/RAD2DEG macros provided for convenience) - - No compound literals used to make sure libray is compatible with C++ + - No compound literals used to make sure the library is compatible with C++ CONFIGURATION: #define RAYMATH_IMPLEMENTATION - Generates the implementation of the library into the included file.
    -
    -
    static final int
    - -
    -
    enum ConfigFlags
    + Generates the implementation of the library into the included file + If not defined, the library is in header only mode and can be included in other headers + or source files without problems.
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    enum ConfigFlags
    static final int
    - +
    -
    enum FontType
    +
    enum ConfigFlags
    static final int
    - +
    enum FontType
    static final int
    - +
    enum FontType
    static final int
    - +
    -
    enum GamepadAxis
    +
    enum FontType
    static final int
    - +
    enum GamepadAxis
    static final int
    - +
    enum GamepadAxis
    static final int
    - +
    enum GamepadAxis
    static final int
    - +
    enum GamepadAxis
    static final int
    - +
    enum GamepadAxis
    static final int
    - +
    -
    enum GamepadButton
    +
    enum GamepadAxis
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    enum GamepadButton
    static final int
    - +
    -
    enum Gesture
    +
    enum GamepadButton
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    enum Gesture
    static final int
    - +
    -
    enum GuiToggleProperty
    +
    enum Gesture
    static final int
    - +
    -
    enum GuiColorPickerProperty
    +
    enum GuiToggleProperty
    static final int
    - -
    -
    enum GuiColorPickerProperty
    -
    + +
     
    static final int
    - -
    -
    enum GuiColorPickerProperty
    -
    + +
     
    static final int
    - -
    -
    enum GuiColorPickerProperty
    -
    + +
     
    static final int
    - -
    -
    enum GuiIconName
    -
    + +
     
    static final int
    - -
    -
    enum GuiIconName
    -
    + +
     
    static final int
    - -
    -
    enum GuiIconName
    -
    + +
     
    static final int
    - +
    -
    enum GuiIconName
    +
    enum GuiColorPickerProperty
    static final int
    - +
    -
    enum GuiIconName
    +
    enum GuiColorPickerProperty
    static final int
    - +
    -
    enum GuiIconName
    +
    enum GuiColorPickerProperty
    static final int
    - +
    -
    enum GuiIconName
    +
    enum GuiColorPickerProperty
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    @@ -3830,7 +1592,17 @@

    Field Summary

    enum GuiIconName
    static final int
    - + +
    +
    enum GuiIconName
    +
    +
    static final int
    + +
    +
    enum GuiIconName
    +
    +
    static final int
    +
    enum GuiIconName
    @@ -3920,42 +1692,52 @@

    Field Summary

    enum GuiIconName
    static final int
    - + +
    +
    enum GuiIconName
    +
    +
    static final int
    + +
    +
    enum GuiIconName
    +
    +
    static final int
    +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    @@ -4145,7 +1927,17 @@

    Field Summary

    enum GuiIconName
    static final int
    - + +
    +
    enum GuiIconName
    +
    +
    static final int
    + +
    +
    enum GuiIconName
    +
    +
    static final int
    +
    enum GuiIconName
    @@ -4275,635 +2067,645 @@

    Field Summary

    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    enum GuiIconName
    static final int
    - +
    -
    enum KeyboardKey
    +
    enum GuiIconName
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    enum KeyboardKey
    static final int
    - +
    -
    enum GuiControl
    +
    enum KeyboardKey
    static final int
    - +
    +
    enum GuiControl
    +
    +
    static final int
    + +
    enum GuiDefaultProperty
    +
    static final int
    + +
    +
    enum GuiListViewProperty
    +
    static final int
    @@ -5302,252 +3104,281 @@

    Field Summary

    enum GuiProgressBarProperty
    static final int
    - +
    -
    enum GuiControl
    +
    enum GuiProgressBarProperty
    -
    static final double
    - -
     
    -
    static final String
    - -
     
    static final int
    - +
    -
    raygui v4.5-dev - A simple and easy-to-use immediate-mode gui library +
    enum GuiControl
    +
    +
    static final double
    + +
     
    +
    static final String
    + +
     
    +
    static final int
    + +
    +
    raygui v5.0 - A simple and easy-to-use immediate-mode gui library DESCRIPTION: raygui is a tools-dev-focused immediate-mode-gui library based on raylib but also - available as a standalone library, as long as input and drawing functions are provided.
    + available as a standalone library, as long as input and drawing functions are provided + + FEATURES: + - Immediate-mode gui, minimal retained data + - +25 controls provided (basic and advanced) + - Styling system for colors, font and metrics + - Icons supported, embedded as a 1-bit icons pack + - Standalone mode option (custom input/graphics backend) + - Multiple support tools provided for raygui development + + POSSIBLE IMPROVEMENTS: + - Better standalone mode API for easy plug of custom backends + - Externalize required inputs, allow user easier customization + + LIMITATIONS: + - No editable multi-line word-wraped text box supported + - No auto-layout mechanism, up to the user to define controls position and size + - Standalone mode requires library modification and some user work to plug another backend + + NOTES: + - WARNING: GuiLoadStyle() and GuiLoadStyle{Custom}() functions, allocate memory for + font atlas recs and glyphs, freeing that memory is (usually) up to the user, + no unload function is explicitly provided...
    -
    static final int
    - -
     
    static final int
    - +
     
    -
    static final String
    - +
    static final int
    +
     
    -
    static final int
    - -
    -
    raylib v5.6-dev - A simple and easy-to-use library to enjoy videogames programming (www.raylib.com) +
    static final String
    + +
     
    +
    static final int
    + +
    +
    raylib v6.0 - A simple and easy-to-use library to enjoy videogames programming (www.raylib.com) FEATURES: - NO external dependencies, all required libraries included with raylib - - Multiplatform: Windows, Linux, FreeBSD, OpenBSD, NetBSD, DragonFly, - MacOS, Haiku, Android, Raspberry Pi, DRM native, HTML5.
    + - Multiplatform: Windows, Linux, macOS, FreeBSD, Web, Android, Raspberry Pi, DRM native...
    -
    static final int
    - -
     
    static final int
    - +
     
    static final int
    - -
    -
    enum rlFramebufferAttachType
    -
    + +
     
    static final int
    - +
    enum rlFramebufferAttachType
    static final int
    - +
    enum rlFramebufferAttachType
    static final int
    - +
    enum rlFramebufferAttachType
    static final int
    - +
    enum rlFramebufferAttachType
    static final int
    - +
    enum rlFramebufferAttachType
    static final int
    - +
    enum rlFramebufferAttachType
    static final int
    - +
    enum rlFramebufferAttachType
    static final int
    - +
    -
    enum rlFramebufferAttachTextureType
    +
    enum rlFramebufferAttachType
    static final int
    - +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    -
    enum rlFramebufferAttachType
    +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    -
    enum rlFramebufferAttachTextureType
    +
    enum rlFramebufferAttachType
    static final int
    - +
    -
    enum rlFramebufferAttachType
    +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    -
    enum rlFramebufferAttachTextureType
    +
    enum rlFramebufferAttachType
    static final int
    - +
    -
    enum rlBlendMode
    +
    enum rlFramebufferAttachTextureType
    static final int
    - +
    enum rlBlendMode
    static final int
    - +
    enum rlBlendMode
    static final int
    - +
    enum rlBlendMode
    static final int
    - -
     
    -
    static final int
    - -
    + +
    enum rlBlendMode
    +
    static final int
    + +
     
    static final int
    - +
    enum rlBlendMode
    static final int
    - -
     
    + +
    +
    enum rlBlendMode
    +
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - -
     
    -
    static final int
    - -
    -
    enum rlBlendMode
    -
    -
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
    enum rlBlendMode
    static final int
    - +
     
    static final int
    - + +
     
    +
    static final int
    + +
    +
    enum rlBlendMode
    +
    +
    static final int
    +
     
    static final int
    - +
     
    -
    static final double
    - +
    static final int
    +
     
    static final double
    - +
     
    +
    static final double
    + +
     
    +
    static final int
    + +
    +
    enum rlCullMode
    +
    static final int
    - +
    enum rlCullMode
    static final int
    - -
    -
    enum rlCullMode
    -
    + +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    @@ -5707,489 +3538,494 @@

    Field Summary

    enum rlGlVersion
    static final int
    - +
    -
    enum rlPixelFormat
    +
    enum rlGlVersion
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - +
    enum rlPixelFormat
    static final int
    - -
     
    + +
    +
    enum rlPixelFormat
    +
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - -
    -
    enum rlShaderAttributeDataType
    -
    + +
     
    static final int
    - +
    enum rlShaderAttributeDataType
    static final int
    - +
    enum rlShaderAttributeDataType
    static final int
    - +
    enum rlShaderAttributeDataType
    static final int
    - +
    -
    enum rlShaderLocationIndex
    +
    enum rlShaderAttributeDataType
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - -
     
    -
    static final int
    - -
    + +
    enum rlShaderLocationIndex
    +
    static final int
    + +
     
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - -
     
    -
    static final int
    - -
    + +
    enum rlShaderLocationIndex
    +
    static final int
    + +
     
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderLocationIndex
    static final int
    - +
    -
    enum rlShaderUniformDataType
    +
    enum rlShaderLocationIndex
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - +
    enum rlShaderUniformDataType
    static final int
    - -
     
    + +
    +
    enum rlShaderUniformDataType
    +
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - -
    -
    enum rlTextureFilter
    -
    + +
     
    static final int
    - +
    enum rlTextureFilter
    static final int
    - +
    enum rlTextureFilter
    static final int
    - +
    enum rlTextureFilter
    static final int
    - -
     
    + +
    +
    enum rlTextureFilter
    +
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - -
    -
    enum rlTextureFilter
    -
    + +
     
    static final int
    - +
    enum rlTextureFilter
    static final int
    - -
     
    + +
    +
    enum rlTextureFilter
    +
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    static final int
    - +
     
    -
    static final String
    - -
    -
    rlgl v5.0 - A multi-OpenGL abstraction layer with an immediate-mode style API +
    static final int
    + +
     
    +
    static final String
    + +
    +
    rlgl v6.0 - A multi-OpenGL abstraction layer with an immediate-mode style API DESCRIPTION: An abstraction layer for multiple OpenGL versions (1.1, 2.1, 3.3 Core, 4.3 Core, ES 2.0, ES 3.0) that provides a pseudo-OpenGL 1.1 immediate-mode style API (rlVertex, rlTranslate, rlRotate...) ADDITIONAL NOTES: - When choosing an OpenGL backend different than OpenGL 1.1, some internal buffer are + When choosing an OpenGL backend different than OpenGL 1.1, some internal buffers are initialized on rlglInit() to accumulate vertex data - When an internal state change is required all the stored vertex data is renderer in batch, + When an internal state change is required all the stored vertex data is rendered in a batch, additionally, rlDrawRenderBatchActive() could be called to force flushing of the batch Some resources are also loaded for convenience, here the complete list: @@ -6200,6 +4036,7 @@

    Field Summary

    Internal buffer (and resources) must be manually unloaded calling rlglClose() CONFIGURATION: + #define GRAPHICS_API_OPENGL_SOFTWARE #define GRAPHICS_API_OPENGL_11 #define GRAPHICS_API_OPENGL_21 #define GRAPHICS_API_OPENGL_33 @@ -6207,7 +4044,7 @@

    Field Summary

    #define GRAPHICS_API_OPENGL_ES2 #define GRAPHICS_API_OPENGL_ES3 Use selected OpenGL graphics backend, should be supported by platform - Those preprocessor defines are only used on rlgl module, if OpenGL version is + Those preprocessor defines are only used on the rlgl module, if OpenGL version is required by any other module, use rlGetVersion() to check it #define RLGL_IMPLEMENTATION @@ -6215,71 +4052,66 @@

    Field Summary

    If not defined, the library is in header only mode and can be included in other headers or source files without problems.
    -
    static final int
    - -
    -
    enum GuiScrollBarProperty
    -
    static final int
    - +
    enum GuiScrollBarProperty
    static final int
    - +
    enum GuiScrollBarProperty
    static final int
    - +
    enum GuiScrollBarProperty
    static final int
    - +
    -
    enum GuiControl
    +
    enum GuiScrollBarProperty
    static final int
    - -
     
    + +
    +
    enum GuiControl
    +
    static final int
    - +
     
    static final int
    - -
    -
    enum GuiListViewProperty
    -
    + +
     
    static final int
    - +
    enum GuiListViewProperty
    static final int
    - +
    -
    enum ShaderAttributeDataType
    +
    enum GuiListViewProperty
    static final int
    - +
    enum ShaderAttributeDataType
    static final int
    - +
    enum ShaderAttributeDataType
    static final int
    - +
    enum ShaderAttributeDataType
    static final int
    - +
    -
    enum ShaderLocationIndex
    +
    enum ShaderAttributeDataType
    static final int
    @@ -6358,47 +4190,57 @@

    Field Summary

     
    static final int
    - + +
    +
    enum ShaderLocationIndex
    +
    +
    static final int
    + +
    +
    enum ShaderLocationIndex
    +
    +
    static final int
    +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    static final int
    - +
    enum ShaderLocationIndex
    @@ -6458,6 +4300,26 @@

    Field Summary

    enum ShaderUniformDataType
    static final int
    + +
    +
    enum ShaderUniformDataType
    +
    +
    static final int
    + +
    +
    enum ShaderUniformDataType
    +
    +
    static final int
    + +
    +
    enum ShaderUniformDataType
    +
    +
    static final int
    + +
    +
    enum ShaderUniformDataType
    +
    +
    static final int
    enum ShaderUniformDataType
    @@ -6488,215 +4350,210 @@

    Field Summary

    enum GuiSliderProperty
    static final int
    - +
    -
    enum GuiSpinnerProperty
    +
    enum GuiValueBoxProperty
    static final int
    - +
    -
    enum GuiSpinnerProperty
    +
    enum GuiValueBoxProperty
    static final int
    - +
    -
    enum GuiControl
    +
    enum GuiState
    static final int
    - +
    enum GuiState
    static final int
    - +
    enum GuiState
    static final int
    - +
    enum GuiState
    static final int
    - +
    -
    enum GuiState
    +
    enum GuiControl
    static final int
    - +
    -
    enum GuiControl
    +
    enum GuiTextAlignmentVertical
    static final int
    - +
    -
    enum GuiTextAlignmentVertical
    +
    enum GuiTextAlignment
    static final int
    - +
    enum GuiTextAlignment
    static final int
    - +
    -
    enum GuiTextAlignment
    +
    enum GuiTextAlignmentVertical
    static final int
    - +
    -
    enum GuiTextAlignmentVertical
    +
    enum GuiTextAlignment
    static final int
    - +
    -
    enum GuiTextAlignment
    +
    enum GuiTextAlignmentVertical
    static final int
    - +
    -
    enum GuiTextAlignmentVertical
    +
    enum GuiControlProperty
    static final int
    - +
    -
    enum GuiControlProperty
    +
    enum GuiDefaultProperty
    static final int
    - +
    -
    enum GuiDefaultProperty
    +
    enum GuiControlProperty
    static final int
    - +
    enum GuiControlProperty
    static final int
    - +
    enum GuiControlProperty
    static final int
    - +
    enum GuiControlProperty
    static final int
    - +
    -
    enum GuiControlProperty
    +
    enum GuiDefaultProperty
    static final int
    - +
    -
    enum GuiDefaultProperty
    +
    enum GuiControlProperty
    static final int
    - +
    -
    enum GuiControlProperty
    +
    enum GuiTextBoxProperty
    static final int
    - +
    -
    enum GuiTextBoxProperty
    +
    enum GuiDefaultProperty
    static final int
    - +
    enum GuiDefaultProperty
    static final int
    - +
    -
    enum GuiDefaultProperty
    +
    enum GuiTextWrapMode
    static final int
    - +
    -
    enum GuiTextWrapMode
    +
    enum GuiDefaultProperty
    static final int
    - +
    -
    enum GuiDefaultProperty
    +
    enum GuiTextWrapMode
    static final int
    - +
    enum GuiTextWrapMode
    static final int
    - +
    -
    enum GuiTextWrapMode
    +
    enum GuiControl
    static final int
    - +
    -
    enum GuiControl
    +
    enum TextureFilter
    static final int
    - +
    enum TextureFilter
    static final int
    - +
    enum TextureFilter
    static final int
    - +
    enum TextureFilter
    static final int
    - +
    enum TextureFilter
    static final int
    - +
    enum TextureFilter
    static final int
    - +
    -
    enum TextureFilter
    +
    enum TextureWrap
    static final int
    - +
    enum TextureWrap
    static final int
    - +
    enum TextureWrap
    static final int
    - +
    enum TextureWrap
    static final int
    - +
    -
    enum TextureWrap
    +
    enum GuiControl
    static final int
    - +
    enum GuiControl
    -
    static final int
    - -
    -
    enum GuiControl
    -
    @@ -6799,10 +4656,10 @@

    Method Summary

     
    static boolean
    - +
     
    static boolean
    -
    ChangeDirectory(org.bytedeco.javacpp.BytePointer dir)
    +
    ChangeDirectory(org.bytedeco.javacpp.BytePointer dirPath)
     
    static boolean
    CheckCollisionBoxes(Raylib.BoundingBox box1, @@ -6897,9 +4754,9 @@

    Method Summary

    CodepointToUTF8(int codepoint, int[] utf8Size)
     
    -
    static String
    +
    static String
    CodepointToUTF8(int codepoint, - IntBuffer utf8Size)
    + IntBuffer utf8Size)
     
    static org.bytedeco.javacpp.BytePointer
    CodepointToUTF8(int codepoint, @@ -6957,10 +4814,10 @@

    Method Summary

    int dataSize, int[] compDataSize)
     
    -
    static ByteBuffer
    -
    CompressData(ByteBuffer data, +
    static ByteBuffer
    +
    CompressData(ByteBuffer data, int dataSize, - IntBuffer compDataSize)
    + IntBuffer compDataSize)
     
    static org.bytedeco.javacpp.BytePointer
    CompressData(org.bytedeco.javacpp.BytePointer data, @@ -6972,7 +4829,7 @@

    Method Summary

    int dataSize)
     
    static int
    -
    ComputeCRC32(ByteBuffer data, +
    ComputeCRC32(ByteBuffer data, int dataSize)
     
    static int
    @@ -6983,8 +4840,8 @@

    Method Summary

    ComputeMD5(byte[] data, int dataSize)
     
    -
    static IntBuffer
    -
    ComputeMD5(ByteBuffer data, +
    static IntBuffer
    +
    ComputeMD5(ByteBuffer data, int dataSize)
     
    static org.bytedeco.javacpp.IntPointer
    @@ -6995,41 +4852,65 @@

    Method Summary

    ComputeSHA1(byte[] data, int dataSize)
     
    -
    static IntBuffer
    -
    ComputeSHA1(ByteBuffer data, +
    static IntBuffer
    +
    ComputeSHA1(ByteBuffer data, int dataSize)
     
    static org.bytedeco.javacpp.IntPointer
    ComputeSHA1(org.bytedeco.javacpp.BytePointer data, int dataSize)
     
    - -
    CreatePhysicsBodyCircle(Raylib.Vector2 pos, - float radius, - float density)
    +
    static int[]
    +
    ComputeSHA256(byte[] data, + int dataSize)
    +
     
    +
    static IntBuffer
    +
    ComputeSHA256(ByteBuffer data, + int dataSize)
    +
     
    +
    static org.bytedeco.javacpp.IntPointer
    +
    ComputeSHA256(org.bytedeco.javacpp.BytePointer data, + int dataSize)
     
    -
    CreatePhysicsBodyPolygon(Raylib.Vector2 pos, +
    CreatePhysicsBodyCircle(Raylib.Vector2 pos, float radius, - int sides, float density)
     
    -
    CreatePhysicsBodyRectangle(Raylib.Vector2 pos, +
    CreatePhysicsBodyPolygon(Raylib.Vector2 pos, + float radius, + int sides, + float density)
    +
     
    + +
    CreatePhysicsBodyRectangle(Raylib.Vector2 pos, float width, float height, float density)
    +
     
    +
    static byte[]
    +
    DecodeDataBase64(String text, + int[] outputSize)
    +
     
    +
    static ByteBuffer
    +
    DecodeDataBase64(String text, + IntBuffer outputSize)
    +
     
    +
    static org.bytedeco.javacpp.BytePointer
    +
    DecodeDataBase64(String text, + org.bytedeco.javacpp.IntPointer outputSize)
     
    static byte[]
    -
    DecodeDataBase64(byte[] data, +
    DecodeDataBase64(org.bytedeco.javacpp.BytePointer text, int[] outputSize)
     
    -
    static ByteBuffer
    -
    DecodeDataBase64(ByteBuffer data, - IntBuffer outputSize)
    +
    static ByteBuffer
    +
    DecodeDataBase64(org.bytedeco.javacpp.BytePointer text, + IntBuffer outputSize)
     
    static org.bytedeco.javacpp.BytePointer
    -
    DecodeDataBase64(org.bytedeco.javacpp.BytePointer data, +
    DecodeDataBase64(org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer outputSize)
     
    static byte[]
    @@ -7037,10 +4918,10 @@

    Method Summary

    int compDataSize, int[] dataSize)
     
    -
    static ByteBuffer
    -
    DecompressData(ByteBuffer compData, +
    static ByteBuffer
    +
    DecompressData(ByteBuffer compData, int compDataSize, - IntBuffer dataSize)
    + IntBuffer dataSize)
     
    static org.bytedeco.javacpp.BytePointer
    DecompressData(org.bytedeco.javacpp.BytePointer compData, @@ -7058,7 +4939,7 @@

    Method Summary

    Raylib.AudioCallback processor)
     
    static boolean
    - +
     
    static boolean
    DirectoryExists(org.bytedeco.javacpp.BytePointer dirPath)
    @@ -7177,8 +5058,7 @@

    Method Summary

    Raylib.Color color)
     
    static void
    -
    DrawCircleGradient(int centerX, - int centerY, +
    DrawCircleGradient(Raylib.Vector2 center, float radius, Raylib.Color inner, Raylib.Color outer)
    @@ -7286,6 +5166,18 @@

    Method Summary

    Raylib.Color color)
     
    static void
    +
    DrawEllipseLinesV(Raylib.Vector2 center, + float radiusH, + float radiusV, + Raylib.Color color)
    +
     
    +
    static void
    +
    DrawEllipseV(Raylib.Vector2 center, + float radiusH, + float radiusV, + Raylib.Color color)
    +
     
    +
    static void
    DrawFPS(int posX, int posY)
     
    @@ -7312,205 +5204,189 @@

    Method Summary

    Raylib.Color color)
     
    static void
    -
    DrawLineEx(Raylib.Vector2 startPos, +
    DrawLineDashed(Raylib.Vector2 startPos, Raylib.Vector2 endPos, - float thick, + int dashSize, + int spaceSize, Raylib.Color color)
     
    static void
    -
    DrawLineStrip(Raylib.Vector2 points, - int pointCount, +
    DrawLineEx(Raylib.Vector2 startPos, + Raylib.Vector2 endPos, + float thick, Raylib.Color color)
     
    static void
    -
    DrawLineV(Raylib.Vector2 startPos, - Raylib.Vector2 endPos, +
    DrawLineStrip(Raylib.Vector2 points, + int pointCount, Raylib.Color color)
     
    static void
    -
    DrawMesh(Raylib.Mesh mesh, - Raylib.Material material, - Raylib.Matrix transform)
    +
    DrawLineV(Raylib.Vector2 startPos, + Raylib.Vector2 endPos, + Raylib.Color color)
     
    static void
    -
    DrawMeshInstanced(Raylib.Mesh mesh, +
    DrawMesh(Raylib.Mesh mesh, Raylib.Material material, - Raylib.Matrix transforms, - int instances)
    + Raylib.Matrix transform)
     
    static void
    -
    DrawModel(Raylib.Model model, - Raylib.Vector3 _position, - float scale, - Raylib.Color tint)
    +
    DrawMeshInstanced(Raylib.Mesh mesh, + Raylib.Material material, + Raylib.Matrix transforms, + int instances)
     
    static void
    -
    DrawModelEx(Raylib.Model model, +
    DrawModel(Raylib.Model model, Raylib.Vector3 _position, - Raylib.Vector3 rotationAxis, - float rotationAngle, - Raylib.Vector3 scale, + float scale, Raylib.Color tint)
     
    static void
    -
    DrawModelPoints(Raylib.Model model, - Raylib.Vector3 _position, - float scale, - Raylib.Color tint)
    -
     
    -
    static void
    -
    DrawModelPointsEx(Raylib.Model model, +
    DrawModelEx(Raylib.Model model, Raylib.Vector3 _position, Raylib.Vector3 rotationAxis, float rotationAngle, Raylib.Vector3 scale, Raylib.Color tint)
    -
     
    -
    static void
    -
    DrawModelWires(Raylib.Model model, +
     
    +
    static void
    +
    DrawModelWires(Raylib.Model model, Raylib.Vector3 _position, float scale, Raylib.Color tint)
    -
     
    -
    static void
    -
    DrawModelWiresEx(Raylib.Model model, +
     
    +
    static void
    +
    DrawModelWiresEx(Raylib.Model model, Raylib.Vector3 _position, Raylib.Vector3 rotationAxis, float rotationAngle, Raylib.Vector3 scale, Raylib.Color tint)
    -
     
    -
    static void
    -
    DrawPixel(int posX, - int posY, - Raylib.Color color)
     
    static void
    -
    DrawPixelV(Raylib.Vector2 _position, +
    DrawPixel(int posX, + int posY, Raylib.Color color)
     
    static void
    -
    DrawPlane(Raylib.Vector3 centerPos, - Raylib.Vector2 size, +
     
    static void
    -
    DrawPoint3D(Raylib.Vector3 _position, +
     
    static void
    -
    DrawPoly(Raylib.Vector2 center, - int sides, - float radius, - float rotation, +
     
    static void
    -
    DrawPolyLines(Raylib.Vector2 center, +
    DrawPoly(Raylib.Vector2 center, int sides, float radius, float rotation, Raylib.Color color)
     
    static void
    -
    DrawPolyLinesEx(Raylib.Vector2 center, +
    DrawPolyLines(Raylib.Vector2 center, int sides, float radius, float rotation, - float lineThick, Raylib.Color color)
     
    static void
    -
    DrawRay(Raylib.Ray ray, +
    DrawPolyLinesEx(Raylib.Vector2 center, + int sides, + float radius, + float rotation, + float lineThick, Raylib.Color color)
     
    static void
    -
    DrawRectangle(int posX, + +
     
    +
    static void
    +
    DrawRectangle(int posX, int posY, int width, int height, Raylib.Color color)
    -
     
    -
    static void
    -
    DrawRectangleGradientEx(Raylib.Rectangle rec, - Raylib.Color topLeft, - Raylib.Color bottomLeft, - Raylib.Color topRight, - Raylib.Color bottomRight)
     
    static void
    -
    DrawRectangleGradientH(int posX, +
    DrawRectangleGradientEx(Raylib.Rectangle rec, + Raylib.Color topLeft, + Raylib.Color bottomLeft, + Raylib.Color bottomRight, + Raylib.Color topRight)
    +
     
    +
    static void
    +
    DrawRectangleGradientH(int posX, int posY, int width, int height, Raylib.Color left, Raylib.Color right)
    -
     
    -
    static void
    -
    DrawRectangleGradientV(int posX, +
     
    +
    static void
    +
    DrawRectangleGradientV(int posX, int posY, int width, int height, Raylib.Color top, Raylib.Color bottom)
    -
     
    -
    static void
    -
    DrawRectangleLines(int posX, +
     
    +
    static void
    +
    DrawRectangleLines(int posX, int posY, int width, int height, Raylib.Color color)
    -
     
    -
    static void
    -
    DrawRectangleLinesEx(Raylib.Rectangle rec, - float lineThick, - Raylib.Color color)
     
    static void
    -
    DrawRectanglePro(Raylib.Rectangle rec, - Raylib.Vector2 origin, - float rotation, +
    DrawRectangleLinesEx(Raylib.Rectangle rec, + float lineThick, Raylib.Color color)
     
    static void
    -
    DrawRectangleRec(Raylib.Rectangle rec, +
    DrawRectanglePro(Raylib.Rectangle rec, + Raylib.Vector2 origin, + float rotation, Raylib.Color color)
     
    static void
    -
    DrawRectangleRounded(Raylib.Rectangle rec, - float roundness, - int segments, +
     
    static void
    -
    DrawRectangleRoundedLines(Raylib.Rectangle rec, +
    DrawRectangleRounded(Raylib.Rectangle rec, float roundness, int segments, Raylib.Color color)
     
    static void
    -
    DrawRectangleRoundedLinesEx(Raylib.Rectangle rec, +
    DrawRectangleRoundedLines(Raylib.Rectangle rec, float roundness, int segments, - float lineThick, Raylib.Color color)
     
    static void
    -
    DrawRectangleV(Raylib.Vector2 _position, - Raylib.Vector2 size, +
    DrawRectangleRoundedLinesEx(Raylib.Rectangle rec, + float roundness, + int segments, + float lineThick, Raylib.Color color)
     
    static void
    -
    DrawRing(Raylib.Vector2 center, - float innerRadius, - float outerRadius, - float startAngle, - float endAngle, - int segments, +
     
    static void
    -
    DrawRingLines(Raylib.Vector2 center, +
    DrawRing(Raylib.Vector2 center, float innerRadius, float outerRadius, float startAngle, @@ -7519,124 +5395,124 @@

    Method Summary

    Raylib.Color color)
     
    static void
    -
    DrawSphere(Raylib.Vector3 centerPos, - float radius, +
    DrawRingLines(Raylib.Vector2 center, + float innerRadius, + float outerRadius, + float startAngle, + float endAngle, + int segments, Raylib.Color color)
     
    static void
    -
    DrawSphereEx(Raylib.Vector3 centerPos, +
    DrawSphere(Raylib.Vector3 centerPos, float radius, - int rings, - int slices, Raylib.Color color)
     
    static void
    -
    DrawSphereWires(Raylib.Vector3 centerPos, +
    DrawSphereEx(Raylib.Vector3 centerPos, float radius, int rings, int slices, Raylib.Color color)
     
    static void
    -
    DrawSplineBasis(Raylib.Vector2 points, - int pointCount, - float thick, +
    DrawSphereWires(Raylib.Vector3 centerPos, + float radius, + int rings, + int slices, Raylib.Color color)
     
    static void
    -
    DrawSplineBezierCubic(Raylib.Vector2 points, +
    DrawSplineBasis(Raylib.Vector2 points, int pointCount, float thick, Raylib.Color color)
     
    static void
    -
    DrawSplineBezierQuadratic(Raylib.Vector2 points, +
    DrawSplineBezierCubic(Raylib.Vector2 points, int pointCount, float thick, Raylib.Color color)
     
    static void
    -
    DrawSplineCatmullRom(Raylib.Vector2 points, +
    DrawSplineBezierQuadratic(Raylib.Vector2 points, int pointCount, float thick, Raylib.Color color)
     
    static void
    -
    DrawSplineLinear(Raylib.Vector2 points, +
    DrawSplineCatmullRom(Raylib.Vector2 points, int pointCount, float thick, Raylib.Color color)
     
    static void
    -
    DrawSplineSegmentBasis(Raylib.Vector2 p1, - Raylib.Vector2 p2, - Raylib.Vector2 p3, - Raylib.Vector2 p4, +
    DrawSplineLinear(Raylib.Vector2 points, + int pointCount, float thick, Raylib.Color color)
     
    static void
    -
    DrawSplineSegmentBezierCubic(Raylib.Vector2 p1, - Raylib.Vector2 c2, - Raylib.Vector2 c3, +
     
    static void
    -
    DrawSplineSegmentBezierQuadratic(Raylib.Vector2 p1, +
     
    static void
    -
    DrawSplineSegmentCatmullRom(Raylib.Vector2 p1, - Raylib.Vector2 p2, +
     
    static void
    -
    DrawSplineSegmentLinear(Raylib.Vector2 p1, +
     
    static void
    -
    DrawText(String text, - int posX, - int posY, - int fontSize, +
     
    static void
    -
    DrawText(org.bytedeco.javacpp.BytePointer text, +
    DrawText(String text, int posX, int posY, int fontSize, Raylib.Color color)
     
    static void
    -
    DrawTextCodepoint(Raylib.Font font, - int codepoint, - Raylib.Vector2 _position, - float fontSize, - Raylib.Color tint)
    +
    DrawText(org.bytedeco.javacpp.BytePointer text, + int posX, + int posY, + int fontSize, + Raylib.Color color)
     
    static void
    -
    DrawTextCodepoints(Raylib.Font font, - int[] codepoints, - int codepointCount, +
    DrawTextCodepoint(Raylib.Font font, + int codepoint, Raylib.Vector2 _position, float fontSize, - float spacing, Raylib.Color tint)
     
    static void
    -
    DrawTextCodepoints(Raylib.Font font, - IntBuffer codepoints, +
    DrawTextCodepoints(Raylib.Font font, + int[] codepoints, int codepointCount, Raylib.Vector2 _position, float fontSize, @@ -7644,8 +5520,8 @@

    Method Summary

    Raylib.Color tint)
     
    static void
    -
    DrawTextCodepoints(Raylib.Font font, - org.bytedeco.javacpp.IntPointer codepoints, +
    DrawTextCodepoints(Raylib.Font font, + IntBuffer codepoints, int codepointCount, Raylib.Vector2 _position, float fontSize, @@ -7653,34 +5529,33 @@

    Method Summary

    Raylib.Color tint)
     
    static void
    -
    DrawTextEx(Raylib.Font font, - String text, +
    DrawTextCodepoints(Raylib.Font font, + org.bytedeco.javacpp.IntPointer codepoints, + int codepointCount, Raylib.Vector2 _position, float fontSize, float spacing, Raylib.Color tint)
     
    static void
    -
    DrawTextEx(Raylib.Font font, - org.bytedeco.javacpp.BytePointer text, +
    DrawTextEx(Raylib.Font font, + String text, Raylib.Vector2 _position, float fontSize, float spacing, Raylib.Color tint)
     
    static void
    -
    DrawTextPro(Raylib.Font font, - String text, +
    DrawTextEx(Raylib.Font font, + org.bytedeco.javacpp.BytePointer text, Raylib.Vector2 _position, - Raylib.Vector2 origin, - float rotation, float fontSize, float spacing, Raylib.Color tint)
     
    static void
    -
    DrawTextPro(Raylib.Font font, - org.bytedeco.javacpp.BytePointer text, +
    DrawTextPro(Raylib.Font font, + String text, Raylib.Vector2 _position, Raylib.Vector2 origin, float rotation, @@ -7689,2791 +5564,2931 @@

    Method Summary

    Raylib.Color tint)
     
    static void
    -
    DrawTexture(Raylib.Texture texture, - int posX, - int posY, +
    DrawTextPro(Raylib.Font font, + org.bytedeco.javacpp.BytePointer text, + Raylib.Vector2 _position, + Raylib.Vector2 origin, + float rotation, + float fontSize, + float spacing, Raylib.Color tint)
     
    static void
    -
    DrawTextureEx(Raylib.Texture texture, - Raylib.Vector2 _position, - float rotation, - float scale, +
    DrawTexture(Raylib.Texture texture, + int posX, + int posY, Raylib.Color tint)
     
    static void
    -
    DrawTextureNPatch(Raylib.Texture texture, - Raylib.NPatchInfo nPatchInfo, - Raylib.Rectangle dest, - Raylib.Vector2 origin, +
    DrawTextureEx(Raylib.Texture texture, + Raylib.Vector2 _position, float rotation, + float scale, Raylib.Color tint)
     
    static void
    -
    DrawTexturePro(Raylib.Texture texture, - Raylib.Rectangle source, +
    DrawTextureNPatch(Raylib.Texture texture, + Raylib.NPatchInfo nPatchInfo, Raylib.Rectangle dest, Raylib.Vector2 origin, float rotation, Raylib.Color tint)
     
    static void
    -
    DrawTextureRec(Raylib.Texture texture, +
    DrawTexturePro(Raylib.Texture texture, Raylib.Rectangle source, - Raylib.Vector2 _position, + Raylib.Rectangle dest, + Raylib.Vector2 origin, + float rotation, Raylib.Color tint)
     
    static void
    -
    DrawTextureV(Raylib.Texture texture, +
     
    static void
    - +
    DrawTextureV(Raylib.Texture texture, + Raylib.Vector2 _position, + Raylib.Color tint)
     
    static void
    -
    DrawTriangle3D(Raylib.Vector3 v1, - Raylib.Vector3 v2, - Raylib.Vector3 v3, +
     
    static void
    -
    DrawTriangleFan(Raylib.Vector2 points, - int pointCount, +
     
    static void
    -
    DrawTriangleLines(Raylib.Vector2 v1, - Raylib.Vector2 v2, - Raylib.Vector2 v3, +
    DrawTriangleFan(Raylib.Vector2 points, + int pointCount, Raylib.Color color)
     
    static void
    -
    DrawTriangleStrip(Raylib.Vector2 points, - int pointCount, +
     
    static void
    -
    DrawTriangleStrip3D(Raylib.Vector3 points, +
    DrawTriangleStrip(Raylib.Vector2 points, int pointCount, Raylib.Color color)
     
    static void
    - +
    DrawTriangleStrip3D(Raylib.Vector3 points, + int pointCount, + Raylib.Color color)
     
    static void
    - +
     
    -
    static byte[]
    -
    EncodeDataBase64(byte[] data, - int dataSize, - int[] outputSize)
    +
    static void
    +
     
    -
    static ByteBuffer
    -
    EncodeDataBase64(ByteBuffer data, +
    static byte[]
    +
    EncodeDataBase64(byte[] data, int dataSize, - IntBuffer outputSize)
    + int[] outputSize)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    EncodeDataBase64(org.bytedeco.javacpp.BytePointer data, +
    static ByteBuffer
    +
    EncodeDataBase64(ByteBuffer data, int dataSize, - org.bytedeco.javacpp.IntPointer outputSize)
    + IntBuffer outputSize)
     
    -
    static void
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    EncodeDataBase64(org.bytedeco.javacpp.BytePointer data, + int dataSize, + org.bytedeco.javacpp.IntPointer outputSize)
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    -
    static boolean
    - +
    static void
    +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    -
    ExportAutomationEventList(Raylib.AutomationEventList list, - org.bytedeco.javacpp.BytePointer fileName)
    +
     
    static boolean
    -
    ExportDataAsCode(byte[] data, - int dataSize, - String fileName)
    +
    ExportAutomationEventList(Raylib.AutomationEventList list, + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportDataAsCode(byte[] data, +
    ExportDataAsCode(byte[] data, int dataSize, - org.bytedeco.javacpp.BytePointer fileName)
    + String fileName)
     
    static boolean
    -
    ExportDataAsCode(ByteBuffer data, +
    ExportDataAsCode(byte[] data, int dataSize, - String fileName)
    + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportDataAsCode(ByteBuffer data, +
    ExportDataAsCode(ByteBuffer data, int dataSize, - org.bytedeco.javacpp.BytePointer fileName)
    + String fileName)
     
    static boolean
    -
    ExportDataAsCode(org.bytedeco.javacpp.BytePointer data, +
    ExportDataAsCode(ByteBuffer data, int dataSize, - String fileName)
    + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportDataAsCode(org.bytedeco.javacpp.BytePointer data, +
    ExportDataAsCode(org.bytedeco.javacpp.BytePointer data, int dataSize, - org.bytedeco.javacpp.BytePointer fileName)
    + String fileName)
     
    static boolean
    -
    ExportFontAsCode(Raylib.Font font, - String fileName)
    +
    ExportDataAsCode(org.bytedeco.javacpp.BytePointer data, + int dataSize, + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportFontAsCode(Raylib.Font font, - org.bytedeco.javacpp.BytePointer fileName)
    +
    ExportFontAsCode(Raylib.Font font, + String fileName)
     
    static boolean
    -
    ExportImage(Raylib.Image image, - String fileName)
    +
    ExportFontAsCode(Raylib.Font font, + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportImage(Raylib.Image image, - org.bytedeco.javacpp.BytePointer fileName)
    +
    ExportImage(Raylib.Image image, + String fileName)
     
    static boolean
    - -
     
    -
    static boolean
    -
    ExportImageAsCode(Raylib.Image image, +
    ExportImage(Raylib.Image image, org.bytedeco.javacpp.BytePointer fileName)
    -
     
    -
    static byte[]
    -
    ExportImageToMemory(Raylib.Image image, - String fileType, - int[] fileSize)
     
    -
    static ByteBuffer
    -
    ExportImageToMemory(Raylib.Image image, - String fileType, - IntBuffer fileSize)
    +
    static boolean
    +
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    ExportImageToMemory(Raylib.Image image, - String fileType, - org.bytedeco.javacpp.IntPointer fileSize)
    +
    static boolean
    +
    ExportImageAsCode(Raylib.Image image, + org.bytedeco.javacpp.BytePointer fileName)
     
    static byte[]
    -
    ExportImageToMemory(Raylib.Image image, - org.bytedeco.javacpp.BytePointer fileType, +
    ExportImageToMemory(Raylib.Image image, + String fileType, int[] fileSize)
     
    -
    static ByteBuffer
    -
    ExportImageToMemory(Raylib.Image image, - org.bytedeco.javacpp.BytePointer fileType, - IntBuffer fileSize)
    +
    static ByteBuffer
    +
    ExportImageToMemory(Raylib.Image image, + String fileType, + IntBuffer fileSize)
     
    static org.bytedeco.javacpp.BytePointer
    -
    ExportImageToMemory(Raylib.Image image, +
    ExportImageToMemory(Raylib.Image image, + String fileType, + org.bytedeco.javacpp.IntPointer fileSize)
    +
     
    +
    static byte[]
    +
    ExportImageToMemory(Raylib.Image image, + org.bytedeco.javacpp.BytePointer fileType, + int[] fileSize)
    +
     
    +
    static ByteBuffer
    +
    ExportImageToMemory(Raylib.Image image, + org.bytedeco.javacpp.BytePointer fileType, + IntBuffer fileSize)
    +
     
    +
    static org.bytedeco.javacpp.BytePointer
    +
    ExportImageToMemory(Raylib.Image image, org.bytedeco.javacpp.BytePointer fileType, org.bytedeco.javacpp.IntPointer fileSize)
    +
     
    +
    static boolean
    +
    ExportMesh(Raylib.Mesh mesh, + String fileName)
     
    static boolean
    -
    ExportMesh(Raylib.Mesh mesh, - String fileName)
    +
    ExportMesh(Raylib.Mesh mesh, + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportMesh(Raylib.Mesh mesh, - org.bytedeco.javacpp.BytePointer fileName)
    +
    ExportMeshAsCode(Raylib.Mesh mesh, + String fileName)
     
    static boolean
    -
    ExportMeshAsCode(Raylib.Mesh mesh, - String fileName)
    +
    ExportMeshAsCode(Raylib.Mesh mesh, + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportMeshAsCode(Raylib.Mesh mesh, - org.bytedeco.javacpp.BytePointer fileName)
    +
    ExportWave(Raylib.Wave wave, + String fileName)
     
    static boolean
    -
    ExportWave(Raylib.Wave wave, - String fileName)
    +
    ExportWave(Raylib.Wave wave, + org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    ExportWave(Raylib.Wave wave, +
    ExportWaveAsCode(Raylib.Wave wave, + String fileName)
    +
     
    +
    static boolean
    +
    ExportWaveAsCode(Raylib.Wave wave, org.bytedeco.javacpp.BytePointer fileName)
    +
     
    + +
    Fade(Raylib.Color color, + float alpha)
    +
     
    +
    static int
    +
    FileCopy(String srcPath, + String dstPath)
    +
     
    +
    static int
    +
    FileCopy(org.bytedeco.javacpp.BytePointer srcPath, + org.bytedeco.javacpp.BytePointer dstPath)
     
    static boolean
    -
    ExportWaveAsCode(Raylib.Wave wave, - String fileName)
    +
    FileExists(String fileName)
     
    static boolean
    -
    ExportWaveAsCode(Raylib.Wave wave, - org.bytedeco.javacpp.BytePointer fileName)
    +
    FileExists(org.bytedeco.javacpp.BytePointer fileName)
     
    - -
    Fade(Raylib.Color color, - float alpha)
    +
    static int
    +
    FileMove(String srcPath, + String dstPath)
     
    -
    static boolean
    -
    FileExists(String fileName)
    +
    static int
    +
    FileMove(org.bytedeco.javacpp.BytePointer srcPath, + org.bytedeco.javacpp.BytePointer dstPath)
     
    -
    static boolean
    -
    FileExists(org.bytedeco.javacpp.BytePointer fileName)
    +
    static int
    +
    FileRemove(String fileName)
     
    static int
    -
    FloatEquals(float x, - float y)
    +
    FileRemove(org.bytedeco.javacpp.BytePointer fileName)
     
    - -
    GenImageCellular(int width, - int height, - int tileSize)
    +
    static int
    +
    FileRename(String fileName, + String fileRename)
    +
     
    +
    static int
    +
    FileRename(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.BytePointer fileRename)
    +
     
    +
    static int
    +
    FileTextFindIndex(String fileName, + String search)
    +
     
    +
    static int
    +
    FileTextFindIndex(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.BytePointer search)
    +
     
    +
    static int
    +
    FileTextReplace(String fileName, + String search, + String replacement)
    +
     
    +
    static int
    +
    FileTextReplace(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.BytePointer search, + org.bytedeco.javacpp.BytePointer replacement)
    +
     
    +
    static int
    +
    FloatEquals(float x, + float y)
     
    -
    GenImageChecked(int width, +
    GenImageCellular(int width, + int height, + int tileSize)
    +
     
    + +
    GenImageChecked(int width, int height, int checksX, int checksY, Raylib.Color col1, Raylib.Color col2)
    -
     
    - -
    GenImageColor(int width, - int height, - Raylib.Color color)
     
    -
    GenImageFontAtlas(Raylib.GlyphInfo glyphs, +
    GenImageColor(int width, + int height, + Raylib.Color color)
    +
     
    + +
    GenImageFontAtlas(Raylib.GlyphInfo glyphs, Raylib.Rectangle glyphRecs, int glyphCount, int fontSize, int padding, int packMethod)
    -
     
    - -
    GenImageFontAtlas(Raylib.GlyphInfo glyphs, +
     
    + +
    GenImageFontAtlas(Raylib.GlyphInfo glyphs, org.bytedeco.javacpp.PointerPointer glyphRecs, int glyphCount, int fontSize, int padding, int packMethod)
    -
     
    - -
    GenImageGradientLinear(int width, +
     
    + +
    GenImageGradientLinear(int width, int height, int direction, Raylib.Color start, Raylib.Color end)
    -
     
    - -
    GenImageGradientRadial(int width, - int height, - float density, - Raylib.Color inner, - Raylib.Color outer)
     
    -
    GenImageGradientSquare(int width, +
    GenImageGradientRadial(int width, int height, float density, Raylib.Color inner, Raylib.Color outer)
     
    -
    GenImagePerlinNoise(int width, +
    GenImageGradientSquare(int width, int height, - int offsetX, - int offsetY, - float scale)
    + float density, + Raylib.Color inner, + Raylib.Color outer)
     
    -
    GenImageText(int width, +
    GenImagePerlinNoise(int width, int height, - String text)
    + int offsetX, + int offsetY, + float scale)
     
    -
    GenImageText(int width, +
    GenImageText(int width, int height, - org.bytedeco.javacpp.BytePointer text)
    + String text)
     
    -
    GenImageWhiteNoise(int width, +
    GenImageText(int width, int height, - float factor)
    + org.bytedeco.javacpp.BytePointer text)
     
    - -
    GenMeshCone(float radius, - float height, - int slices)
    + +
    GenImageWhiteNoise(int width, + int height, + float factor)
     
    -
    GenMeshCube(float width, +
    GenMeshCone(float radius, float height, - float length)
    + int slices)
     
    - +
    GenMeshCube(float width, + float height, + float length)
     
    -
    GenMeshCylinder(float radius, - float height, - int slices)
    +
     
    - +
    GenMeshCylinder(float radius, + float height, + int slices)
     
    -
    GenMeshHemiSphere(float radius, - int rings, - int slices)
    +
     
    -
    GenMeshKnot(float radius, +
    GenMeshHemiSphere(float radius, + int rings, + int slices)
    +
     
    + +
    GenMeshKnot(float radius, float size, int radSeg, int sides)
    -
     
    - -
    GenMeshPlane(float width, +
     
    + +
    GenMeshPlane(float width, float length, int resX, int resZ)
    -
     
    - -
    GenMeshPoly(int sides, - float radius)
     
    -
    GenMeshSphere(float radius, +
    GenMeshPoly(int sides, + float radius)
    +
     
    + +
    GenMeshSphere(float radius, int rings, int slices)
    -
     
    -
    static void
    -
     
    - -
    GenMeshTorus(float radius, +
    static void
    + +
     
    + +
    GenMeshTorus(float radius, float size, int radSeg, int sides)
    +
     
    +
    static void
    +
     
    -
    static void
    - +
    static org.bytedeco.javacpp.BytePointer
    +
     
    -
    static org.bytedeco.javacpp.BytePointer
    - + +
     
    - +
     
    - - +
    static int
    + +
     
    + + +
     
    +
    static org.bytedeco.javacpp.BytePointer
    +
     
    static int
    - +
    GetCodepoint(String text, + int[] codepointSize)
     
    - - +
    static int
    +
    GetCodepoint(String text, + IntBuffer codepointSize)
     
    -
    static org.bytedeco.javacpp.BytePointer
    - +
    static int
    +
    GetCodepoint(String text, + org.bytedeco.javacpp.IntPointer codepointSize)
     
    static int
    -
    GetCodepoint(String text, +
    GetCodepoint(org.bytedeco.javacpp.BytePointer text, int[] codepointSize)
     
    static int
    -
    GetCodepoint(String text, - IntBuffer codepointSize)
    +
    GetCodepoint(org.bytedeco.javacpp.BytePointer text, + IntBuffer codepointSize)
     
    static int
    -
    GetCodepoint(String text, +
    GetCodepoint(org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer codepointSize)
     
    static int
    -
    GetCodepoint(org.bytedeco.javacpp.BytePointer text, - int[] codepointSize)
    +
     
    static int
    -
    GetCodepoint(org.bytedeco.javacpp.BytePointer text, - IntBuffer codepointSize)
    +
    GetCodepointCount(org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GetCodepoint(org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer codepointSize)
    +
    GetCodepointNext(String text, + int[] codepointSize)
     
    static int
    - +
    GetCodepointNext(String text, + IntBuffer codepointSize)
     
    static int
    -
    GetCodepointCount(org.bytedeco.javacpp.BytePointer text)
    +
    GetCodepointNext(String text, + org.bytedeco.javacpp.IntPointer codepointSize)
     
    static int
    -
    GetCodepointNext(String text, +
    GetCodepointNext(org.bytedeco.javacpp.BytePointer text, int[] codepointSize)
     
    static int
    -
    GetCodepointNext(String text, - IntBuffer codepointSize)
    +
    GetCodepointNext(org.bytedeco.javacpp.BytePointer text, + IntBuffer codepointSize)
     
    static int
    -
    GetCodepointNext(String text, +
    GetCodepointNext(org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer codepointSize)
     
    static int
    -
    GetCodepointNext(org.bytedeco.javacpp.BytePointer text, +
    GetCodepointPrevious(String text, int[] codepointSize)
     
    static int
    -
    GetCodepointNext(org.bytedeco.javacpp.BytePointer text, - IntBuffer codepointSize)
    +
    GetCodepointPrevious(String text, + IntBuffer codepointSize)
     
    static int
    -
    GetCodepointNext(org.bytedeco.javacpp.BytePointer text, +
    GetCodepointPrevious(String text, org.bytedeco.javacpp.IntPointer codepointSize)
     
    static int
    -
    GetCodepointPrevious(String text, +
    GetCodepointPrevious(org.bytedeco.javacpp.BytePointer text, int[] codepointSize)
     
    static int
    -
    GetCodepointPrevious(String text, - IntBuffer codepointSize)
    +
    GetCodepointPrevious(org.bytedeco.javacpp.BytePointer text, + IntBuffer codepointSize)
     
    static int
    -
    GetCodepointPrevious(String text, +
    GetCodepointPrevious(org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer codepointSize)
     
    -
    static int
    -
    GetCodepointPrevious(org.bytedeco.javacpp.BytePointer text, - int[] codepointSize)
    + +
     
    -
    static int
    -
    GetCodepointPrevious(org.bytedeco.javacpp.BytePointer text, - IntBuffer codepointSize)
    + +
    GetColor(int hexValue)
     
    static int
    -
    GetCodepointPrevious(org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer codepointSize)
    +
     
    - - +
    static int
    +
     
    - -
    GetColor(int hexValue)
    +
    static int
    +
    GetDirectoryFileCount(org.bytedeco.javacpp.BytePointer dirPath)
     
    static int
    - +
    GetDirectoryFileCountEx(String basePath, + String filter, + boolean scanSubdirs)
     
    -
    static String
    - +
    static int
    +
    GetDirectoryFileCountEx(org.bytedeco.javacpp.BytePointer basePath, + org.bytedeco.javacpp.BytePointer filter, + boolean scanSubdirs)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetDirectoryPath(org.bytedeco.javacpp.BytePointer filePath)
    +
    static String
    +
     
    -
    static String
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    GetDirectoryPath(org.bytedeco.javacpp.BytePointer filePath)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetFileExtension(org.bytedeco.javacpp.BytePointer fileName)
    +
    static String
    +
     
    -
    static int
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    GetFileExtension(org.bytedeco.javacpp.BytePointer fileName)
     
    static int
    -
    GetFileLength(org.bytedeco.javacpp.BytePointer fileName)
    +
     
    -
    static long
    - +
    static int
    +
    GetFileLength(org.bytedeco.javacpp.BytePointer fileName)
     
    static long
    -
    GetFileModTime(org.bytedeco.javacpp.BytePointer fileName)
    +
     
    -
    static String
    -
    GetFileName(String filePath)
    +
    static long
    +
    GetFileModTime(org.bytedeco.javacpp.BytePointer fileName)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetFileName(org.bytedeco.javacpp.BytePointer filePath)
    +
    static String
    +
    GetFileName(String filePath)
     
    -
    static String
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    GetFileName(org.bytedeco.javacpp.BytePointer filePath)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetFileNameWithoutExt(org.bytedeco.javacpp.BytePointer filePath)
    +
    static String
    +
     
    - - +
    static org.bytedeco.javacpp.BytePointer
    +
    GetFileNameWithoutExt(org.bytedeco.javacpp.BytePointer filePath)
     
    -
    static int
    - + +
     
    -
    static float
    - +
    static int
    +
     
    -
    static int
    -
    GetGamepadAxisCount(int gamepad)
    +
    static float
    +
     
    -
    static float
    -
    GetGamepadAxisMovement(int gamepad, - int axis)
    +
    static int
    +
    GetGamepadAxisCount(int gamepad)
     
    -
    static int
    - +
    static float
    +
    GetGamepadAxisMovement(int gamepad, + int axis)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetGamepadName(int gamepad)
    +
    static int
    +
     
    -
    static int
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    GetGamepadName(int gamepad)
     
    -
    static float
    - +
    static int
    +
     
    - - +
    static float
    +
     
    -
    static float
    - + +
     
    static float
    - +
     
    - - +
    static float
    +
     
    - -
    GetGlyphAtlasRec(Raylib.Font font, - int codepoint)
    + +
     
    -
    static int
    -
    GetGlyphIndex(Raylib.Font font, + +
    GetGlyphAtlasRec(Raylib.Font font, int codepoint)
     
    - -
    GetGlyphInfo(Raylib.Font font, +
    static int
    +
    GetGlyphIndex(Raylib.Font font, int codepoint)
     
    - -
    GetImageAlphaBorder(Raylib.Image image, - float threshold)
    + +
    GetGlyphInfo(Raylib.Font font, + int codepoint)
     
    - -
    GetImageColor(Raylib.Image image, + +
    GetImageAlphaBorder(Raylib.Image image, + float threshold)
    +
     
    + +
    GetImageColor(Raylib.Image image, int x, int y)
    -
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetKeyName(int key)
     
    -
    static int
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    GetKeyName(int key)
     
    -
    static float
    - +
    static int
    +
     
    - - +
    static float
    +
     
    - -
     
    -
    static int
    - -
     
    -
    static int
    -
    GetMonitorHeight(int monitor)
    +
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetMonitorName(int monitor)
    + +
     
    static int
    - +
     
    static int
    - +
    GetMonitorHeight(int monitor)
     
    - -
    GetMonitorPosition(int monitor)
    +
    static org.bytedeco.javacpp.BytePointer
    +
    GetMonitorName(int monitor)
     
    static int
    -
    GetMonitorRefreshRate(int monitor)
    +
     
    static int
    -
    GetMonitorWidth(int monitor)
    +
     
    - +
    GetMonitorPosition(int monitor)
     
    - - +
    static int
    +
    GetMonitorRefreshRate(int monitor)
     
    -
    static float
    - +
    static int
    +
    GetMonitorWidth(int monitor)
     
    - +
     
    -
    static int
    - + + +
     
    +
    static float
    + +
     
    + +
     
    static int
    - +
     
    -
    static float
    - +
    static int
    +
     
    static float
    - +
     
    -
    static int
    - +
    static float
    +
     
    - -
    GetPhysicsBody(int index)
    +
    static int
    +
     
    -
    static int
    - + +
    GetPhysicsBody(int index)
     
    - - +
    static int
    +
     
    -
    static int
    - + +
     
    - -
    GetPixelColor(org.bytedeco.javacpp.Pointer srcPtr, - int format)
    +
    static int
    +
     
    -
    static int
    -
    GetPixelDataSize(int width, - int height, + +
    GetPixelColor(org.bytedeco.javacpp.Pointer srcPtr, int format)
     
    -
    static String
    - +
    static int
    +
    GetPixelDataSize(int width, + int height, + int format)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GetPrevDirectoryPath(org.bytedeco.javacpp.BytePointer dirPath)
    +
    static String
    +
     
    -
    static int
    -
    GetRandomValue(int min, - int max)
    +
    static org.bytedeco.javacpp.BytePointer
    +
    GetPrevDirectoryPath(org.bytedeco.javacpp.BytePointer dirPath)
     
    - - +
    static int
    +
    GetRandomValue(int min, + int max)
     
    - +
     
    -
    GetRayCollisionQuad(Raylib.Ray ray, + +
     
    + + -
     
    - -
    GetRayCollisionSphere(Raylib.Ray ray, - Raylib.Vector3 center, - float radius)
     
    -
    GetRayCollisionTriangle(Raylib.Ray ray, +
    GetRayCollisionSphere(Raylib.Ray ray, + Raylib.Vector3 center, + float radius)
    +
     
    + + -
     
    -
    static int
    -
     
    static int
    - +
     
    static int
    - +
     
    - - +
    static int
    +
     
    -
    static Raylib.Ray
    - + +
     
    static Raylib.Ray
    -
    GetScreenToWorldRayEx(Raylib.Vector2 _position, + +
     
    +
    static Raylib.Ray
    +
    GetScreenToWorldRayEx(Raylib.Vector2 _position, Raylib.Camera3D camera, int width, int height)
    -
     
    -
    static int
    -
     
    static int
    -
    GetShaderLocation(Raylib.Shader shader, - String uniformName)
    +
     
    static int
    -
    GetShaderLocation(Raylib.Shader shader, - org.bytedeco.javacpp.BytePointer uniformName)
    +
    GetShaderLocation(Raylib.Shader shader, + String uniformName)
     
    static int
    - +
    GetShaderLocation(Raylib.Shader shader, + org.bytedeco.javacpp.BytePointer uniformName)
     
    static int
    -
    GetShaderLocationAttrib(Raylib.Shader shader, - org.bytedeco.javacpp.BytePointer attribName)
    +
     
    - - +
    static int
    +
    GetShaderLocationAttrib(Raylib.Shader shader, + org.bytedeco.javacpp.BytePointer attribName)
     
    - - + +
     
    - -
    GetSplinePointBasis(Raylib.Vector2 p1, + + +
     
    + + -
     
    - -
    GetSplinePointBezierCubic(Raylib.Vector2 p1, +
     
    + + -
     
    - -
    GetSplinePointBezierQuad(Raylib.Vector2 p1, +
     
    + + -
     
    - -
    GetSplinePointCatmullRom(Raylib.Vector2 p1, +
     
    + + -
     
    - -
    GetSplinePointLinear(Raylib.Vector2 startPos, +
     
    + +
    GetSplinePointLinear(Raylib.Vector2 startPos, Raylib.Vector2 endPos, float t)
    +
     
    +
    static ByteBuffer
    +
    GetTextBetween(String text, + String begin, + String end)
     
    -
    static double
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    GetTextBetween(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer begin, + org.bytedeco.javacpp.BytePointer end)
     
    -
    static int
    - +
    static double
    +
     
    static int
    -
    GetTouchPointId(int index)
    +
     
    - -
    GetTouchPosition(int index)
    +
    static int
    +
    GetTouchPointId(int index)
     
    -
    static int
    - + +
    GetTouchPosition(int index)
     
    static int
    - +
     
    -
    static org.bytedeco.javacpp.Pointer
    - +
    static int
    +
     
    - - +
    static org.bytedeco.javacpp.Pointer
    +
     
    - +
     
    -
    static org.bytedeco.javacpp.BytePointer
    - + +
     
    - - +
    static org.bytedeco.javacpp.BytePointer
    +
     
    - +
     
    -
    GetWorldToScreenEx(Raylib.Vector3 _position, + +
     
    + +
    GetWorldToScreenEx(Raylib.Vector3 _position, Raylib.Camera3D camera, int width, int height)
    +
     
    +
    static int
    +
     
    static int
    - +
     
    static int
    -
    GuiButton(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text)
    +
     
    static int
    -
    GuiCheckBox(Raylib.Rectangle bounds, - String text, - boolean[] checked)
    +
     
    static int
    -
    GuiCheckBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.BoolPointer checked)
    +
     
    static int
    -
    GuiColorBarAlpha(Raylib.Rectangle bounds, - String text, - float[] alpha)
    +
     
    static int
    - +
     
    static int
    -
    GuiColorBarAlpha(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.FloatPointer alpha)
    +
    GuiButton(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GuiColorBarAlpha(Raylib.Rectangle bounds, +
    GuiCheckBox(Raylib.Rectangle bounds, + String text, + boolean[] checked)
    +
     
    +
    static int
    +
    GuiCheckBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BoolPointer checked)
    +
     
    +
    static int
    +
    GuiColorBarAlpha(Raylib.Rectangle bounds, + String text, float[] alpha)
     
    static int
    -
    GuiColorBarAlpha(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - FloatBuffer alpha)
    +
     
    static int
    -
    GuiColorBarAlpha(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiColorBarAlpha(Raylib.Rectangle bounds, + String text, org.bytedeco.javacpp.FloatPointer alpha)
     
    static int
    -
    GuiColorBarHue(Raylib.Rectangle bounds, - String text, - float[] value)
    +
    GuiColorBarAlpha(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + float[] alpha)
     
    static int
    - +
    GuiColorBarAlpha(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + FloatBuffer alpha)
     
    static int
    -
    GuiColorBarHue(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.FloatPointer value)
    +
    GuiColorBarAlpha(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.FloatPointer alpha)
     
    static int
    -
    GuiColorBarHue(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiColorBarHue(Raylib.Rectangle bounds, + String text, float[] value)
     
    static int
    -
    GuiColorBarHue(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - FloatBuffer value)
    +
     
    static int
    -
    GuiColorBarHue(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiColorBarHue(Raylib.Rectangle bounds, + String text, org.bytedeco.javacpp.FloatPointer value)
     
    static int
    - +
    GuiColorBarHue(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + float[] value)
     
    static int
    -
    GuiColorPanel(Raylib.Rectangle bounds, +
    GuiColorBarHue(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - Raylib.Color color)
    + FloatBuffer value)
     
    static int
    - +
    GuiColorBarHue(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.FloatPointer value)
     
    static int
    -
    GuiColorPanelHSV(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - Raylib.Vector3 colorHsv)
    +
     
    static int
    -
    GuiColorPicker(Raylib.Rectangle bounds, - String text, +
    GuiColorPanel(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, Raylib.Color color)
     
    static int
    -
    GuiColorPicker(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - Raylib.Color color)
    +
     
    static int
    -
    GuiColorPickerHSV(Raylib.Rectangle bounds, - String text, +
    GuiColorPanelHSV(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, Raylib.Vector3 colorHsv)
     
    static int
    -
    GuiColorPickerHSV(Raylib.Rectangle bounds, + +
     
    +
    static int
    +
    GuiColorPicker(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, + Raylib.Color color)
    +
     
    +
    static int
    +
     
    static int
    -
    GuiComboBox(Raylib.Rectangle bounds, - String text, - int[] active)
    +
    GuiColorPickerHSV(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + Raylib.Vector3 colorHsv)
     
    static int
    -
    GuiComboBox(Raylib.Rectangle bounds, - String text, - IntBuffer active)
    +
    GuiComboBox(Raylib.Rectangle bounds, + String text, + int[] active)
     
    static int
    -
    GuiComboBox(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.IntPointer active)
    +
    GuiComboBox(Raylib.Rectangle bounds, + String text, + IntBuffer active)
     
    static int
    -
    GuiComboBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - int[] active)
    +
    GuiComboBox(Raylib.Rectangle bounds, + String text, + org.bytedeco.javacpp.IntPointer active)
     
    static int
    -
    GuiComboBox(Raylib.Rectangle bounds, +
    GuiComboBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - IntBuffer active)
    + int[] active)
     
    static int
    -
    GuiComboBox(Raylib.Rectangle bounds, +
    GuiComboBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer active)
    + IntBuffer active)
     
    -
    static void
    - +
    static int
    +
    GuiComboBox(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer active)
     
    static void
    - +
     
    static void
    -
    GuiDrawIcon(int iconId, + +
     
    +
    static void
    +
    GuiDrawIcon(int iconId, int posX, int posY, int pixelSize, Raylib.Color color)
    -
     
    -
    static int
    -
    GuiDropdownBox(Raylib.Rectangle bounds, - String text, - int[] active, - boolean editMode)
     
    static int
    -
    GuiDropdownBox(Raylib.Rectangle bounds, - String text, - IntBuffer active, +
    GuiDropdownBox(Raylib.Rectangle bounds, + String text, + int[] active, boolean editMode)
     
    static int
    -
    GuiDropdownBox(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.IntPointer active, +
    GuiDropdownBox(Raylib.Rectangle bounds, + String text, + IntBuffer active, boolean editMode)
     
    static int
    -
    GuiDropdownBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - int[] active, +
    GuiDropdownBox(Raylib.Rectangle bounds, + String text, + org.bytedeco.javacpp.IntPointer active, boolean editMode)
     
    static int
    -
    GuiDropdownBox(Raylib.Rectangle bounds, +
    GuiDropdownBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - IntBuffer active, + int[] active, boolean editMode)
     
    static int
    -
    GuiDropdownBox(Raylib.Rectangle bounds, +
    GuiDropdownBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer active, + IntBuffer active, boolean editMode)
     
    static int
    - +
    GuiDropdownBox(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer active, + boolean editMode)
     
    static int
    -
    GuiDummyRec(Raylib.Rectangle bounds, + +
     
    +
    static int
    +
    GuiDummyRec(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text)
    +
     
    +
    static void
    +
     
    static void
    - +
     
    -
    static void
    - + +
     
    - - +
    static org.bytedeco.javacpp.IntPointer
    +
     
    -
    static org.bytedeco.javacpp.IntPointer
    - +
    static int
    +
     
    static int
    - +
    GuiGetStyle(int control, + int property)
     
    static int
    -
    GuiGetStyle(int control, - int property)
    +
     
    static int
    -
    GuiGrid(Raylib.Rectangle bounds, - String text, - float spacing, - int subdivs, - Raylib.Vector2 mouseCell)
    +
    GuiGetTextWidth(org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GuiGrid(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiGrid(Raylib.Rectangle bounds, + String text, float spacing, int subdivs, Raylib.Vector2 mouseCell)
     
    static int
    - +
    GuiGrid(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + float spacing, + int subdivs, + Raylib.Vector2 mouseCell)
     
    static int
    -
    GuiGroupBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text)
    +
     
    -
    static String
    -
    GuiIconText(int iconId, - String text)
    -
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    GuiIconText(int iconId, +
    static int
    +
    GuiGroupBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text)
    -
     
    -
    static boolean
    -
     
    -
    static int
    -
    GuiLabel(Raylib.Rectangle bounds, - String text)
    +
    static String
    +
    GuiIconText(int iconId, + String text)
     
    -
    static int
    -
    GuiLabel(Raylib.Rectangle bounds, +
    static org.bytedeco.javacpp.BytePointer
    +
    GuiIconText(int iconId, org.bytedeco.javacpp.BytePointer text)
     
    -
    static int
    - +
    static boolean
    +
     
    static int
    -
    GuiLabelButton(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text)
    +
    GuiLabel(Raylib.Rectangle bounds, + String text)
     
    static int
    -
    GuiLine(Raylib.Rectangle bounds, - String text)
    +
    GuiLabel(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GuiLine(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text)
    +
     
    static int
    -
    GuiListView(Raylib.Rectangle bounds, - String text, - int[] scrollIndex, - int[] active)
    +
    GuiLabelButton(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GuiListView(Raylib.Rectangle bounds, - String text, - IntBuffer scrollIndex, - IntBuffer active)
    +
    GuiLine(Raylib.Rectangle bounds, + String text)
     
    static int
    -
    GuiListView(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.IntPointer scrollIndex, - org.bytedeco.javacpp.IntPointer active)
    +
    GuiLine(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GuiListView(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiListView(Raylib.Rectangle bounds, + String text, int[] scrollIndex, int[] active)
     
    static int
    -
    GuiListView(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - IntBuffer scrollIndex, - IntBuffer active)
    +
    GuiListView(Raylib.Rectangle bounds, + String text, + IntBuffer scrollIndex, + IntBuffer active)
     
    static int
    -
    GuiListView(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiListView(Raylib.Rectangle bounds, + String text, org.bytedeco.javacpp.IntPointer scrollIndex, org.bytedeco.javacpp.IntPointer active)
     
    static int
    -
    GuiListViewEx(Raylib.Rectangle bounds, +
    GuiListView(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + int[] scrollIndex, + int[] active)
    +
     
    +
    static int
    +
    GuiListView(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + IntBuffer scrollIndex, + IntBuffer active)
    +
     
    +
    static int
    +
    GuiListView(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer scrollIndex, + org.bytedeco.javacpp.IntPointer active)
    +
     
    +
    static int
    +
    GuiListViewEx(Raylib.Rectangle bounds, byte[] text, int count, int[] scrollIndex, int[] active, int[] focus)
    -
     
    -
    static int
    -
    GuiListViewEx(Raylib.Rectangle bounds, - ByteBuffer text, - int count, - IntBuffer scrollIndex, - IntBuffer active, - IntBuffer focus)
     
    static int
    -
    GuiListViewEx(Raylib.Rectangle bounds, +
    GuiListViewEx(Raylib.Rectangle bounds, + ByteBuffer text, + int count, + IntBuffer scrollIndex, + IntBuffer active, + IntBuffer focus)
    +
     
    +
    static int
    +
    GuiListViewEx(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, int count, org.bytedeco.javacpp.IntPointer scrollIndex, org.bytedeco.javacpp.IntPointer active, org.bytedeco.javacpp.IntPointer focus)
    -
     
    -
    static int
    -
    GuiListViewEx(Raylib.Rectangle bounds, +
     
    +
    static int
    +
    GuiListViewEx(Raylib.Rectangle bounds, org.bytedeco.javacpp.PointerPointer text, int count, org.bytedeco.javacpp.IntPointer scrollIndex, org.bytedeco.javacpp.IntPointer active, org.bytedeco.javacpp.IntPointer focus)
    -
     
    -
    static ByteBuffer
    -
    GuiLoadIcons(String fileName, - boolean loadIconsName)
     
    -
    static org.bytedeco.javacpp.PointerPointer
    -
    GuiLoadIcons(org.bytedeco.javacpp.BytePointer fileName, +
    static ByteBuffer
    +
    GuiLoadIcons(String fileName, boolean loadIconsName)
     
    -
    static void
    -
    GuiLoadStyle(String fileName)
    +
    static org.bytedeco.javacpp.PointerPointer
    +
    GuiLoadIcons(org.bytedeco.javacpp.BytePointer fileName, + boolean loadIconsName)
     
    static void
    -
    GuiLoadStyle(org.bytedeco.javacpp.BytePointer fileName)
    +
    GuiLoadStyle(String fileName)
     
    static void
    - +
    GuiLoadStyle(org.bytedeco.javacpp.BytePointer fileName)
     
    static void
    - +
     
    -
    static int
    -
    GuiMessageBox(Raylib.Rectangle bounds, - String title, - String message, - String buttons)
    +
    static void
    +
     
    static int
    -
    GuiMessageBox(Raylib.Rectangle bounds, +
    GuiMessageBox(Raylib.Rectangle bounds, + String title, + String message, + String buttons)
    +
     
    +
    static int
    +
    GuiMessageBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer title, org.bytedeco.javacpp.BytePointer message, org.bytedeco.javacpp.BytePointer buttons)
    -
     
    -
    static int
    -
    GuiPanel(Raylib.Rectangle bounds, - String text)
     
    static int
    -
    GuiPanel(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text)
    +
    GuiPanel(Raylib.Rectangle bounds, + String text)
     
    static int
    -
    GuiProgressBar(Raylib.Rectangle bounds, - String textLeft, - String textRight, - float[] value, - float minValue, - float maxValue)
    +
    GuiPanel(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GuiProgressBar(Raylib.Rectangle bounds, - String textLeft, - String textRight, - FloatBuffer value, +
    GuiProgressBar(Raylib.Rectangle bounds, + String textLeft, + String textRight, + float[] value, float minValue, float maxValue)
     
    static int
    -
    GuiProgressBar(Raylib.Rectangle bounds, - String textLeft, - String textRight, - org.bytedeco.javacpp.FloatPointer value, +
    GuiProgressBar(Raylib.Rectangle bounds, + String textLeft, + String textRight, + FloatBuffer value, float minValue, float maxValue)
     
    static int
    -
    GuiProgressBar(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer textLeft, - org.bytedeco.javacpp.BytePointer textRight, - float[] value, +
    GuiProgressBar(Raylib.Rectangle bounds, + String textLeft, + String textRight, + org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
     
    static int
    -
    GuiProgressBar(Raylib.Rectangle bounds, +
    GuiProgressBar(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer textLeft, org.bytedeco.javacpp.BytePointer textRight, - FloatBuffer value, + float[] value, float minValue, float maxValue)
     
    static int
    -
    GuiProgressBar(Raylib.Rectangle bounds, +
    GuiProgressBar(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer textLeft, org.bytedeco.javacpp.BytePointer textRight, - org.bytedeco.javacpp.FloatPointer value, + FloatBuffer value, float minValue, float maxValue)
     
    static int
    -
    GuiScrollPanel(Raylib.Rectangle bounds, - String text, +
    GuiProgressBar(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer textLeft, + org.bytedeco.javacpp.BytePointer textRight, + org.bytedeco.javacpp.FloatPointer value, + float minValue, + float maxValue)
    +
     
    +
    static int
    + -
     
    -
    static int
    -
    GuiScrollPanel(Raylib.Rectangle bounds, +
     
    +
    static int
    +
    GuiScrollPanel(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, Raylib.Rectangle content, Raylib.Vector2 scroll, Raylib.Rectangle view)
    -
     
    -
    static void
    -
    GuiSetAlpha(float alpha)
     
    static void
    - +
    GuiSetAlpha(float alpha)
     
    static void
    -
    GuiSetIconScale(int scale)
    +
     
    static void
    -
    GuiSetState(int state)
    +
    GuiSetIconScale(int scale)
     
    static void
    -
    GuiSetStyle(int control, - int property, - int value)
    +
    GuiSetState(int state)
     
    static void
    - +
    GuiSetStyle(int control, + int property, + int value)
     
    static void
    -
    GuiSetTooltip(org.bytedeco.javacpp.BytePointer tooltip)
    +
     
    -
    static int
    -
    GuiSlider(Raylib.Rectangle bounds, - String textLeft, - String textRight, - float[] value, - float minValue, - float maxValue)
    +
    static void
    +
    GuiSetTooltip(org.bytedeco.javacpp.BytePointer tooltip)
     
    static int
    -
    GuiSlider(Raylib.Rectangle bounds, - String textLeft, - String textRight, - FloatBuffer value, +
    GuiSlider(Raylib.Rectangle bounds, + String textLeft, + String textRight, + float[] value, float minValue, float maxValue)
     
    static int
    -
    GuiSlider(Raylib.Rectangle bounds, - String textLeft, - String textRight, - org.bytedeco.javacpp.FloatPointer value, +
    GuiSlider(Raylib.Rectangle bounds, + String textLeft, + String textRight, + FloatBuffer value, float minValue, float maxValue)
     
    static int
    -
    GuiSlider(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer textLeft, - org.bytedeco.javacpp.BytePointer textRight, - float[] value, +
    GuiSlider(Raylib.Rectangle bounds, + String textLeft, + String textRight, + org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
     
    static int
    -
    GuiSlider(Raylib.Rectangle bounds, +
    GuiSlider(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer textLeft, org.bytedeco.javacpp.BytePointer textRight, - FloatBuffer value, + float[] value, float minValue, float maxValue)
     
    static int
    -
    GuiSlider(Raylib.Rectangle bounds, +
    GuiSlider(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer textLeft, org.bytedeco.javacpp.BytePointer textRight, - org.bytedeco.javacpp.FloatPointer value, + FloatBuffer value, float minValue, float maxValue)
     
    static int
    -
    GuiSliderBar(Raylib.Rectangle bounds, - String textLeft, - String textRight, - float[] value, +
    GuiSlider(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer textLeft, + org.bytedeco.javacpp.BytePointer textRight, + org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
     
    static int
    -
    GuiSliderBar(Raylib.Rectangle bounds, - String textLeft, - String textRight, - FloatBuffer value, +
    GuiSliderBar(Raylib.Rectangle bounds, + String textLeft, + String textRight, + float[] value, float minValue, float maxValue)
     
    static int
    -
    GuiSliderBar(Raylib.Rectangle bounds, - String textLeft, - String textRight, - org.bytedeco.javacpp.FloatPointer value, +
    GuiSliderBar(Raylib.Rectangle bounds, + String textLeft, + String textRight, + FloatBuffer value, float minValue, float maxValue)
     
    static int
    -
    GuiSliderBar(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer textLeft, - org.bytedeco.javacpp.BytePointer textRight, - float[] value, +
    GuiSliderBar(Raylib.Rectangle bounds, + String textLeft, + String textRight, + org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
     
    static int
    -
    GuiSliderBar(Raylib.Rectangle bounds, +
    GuiSliderBar(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer textLeft, org.bytedeco.javacpp.BytePointer textRight, - FloatBuffer value, + float[] value, float minValue, float maxValue)
     
    static int
    -
    GuiSliderBar(Raylib.Rectangle bounds, +
    GuiSliderBar(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer textLeft, org.bytedeco.javacpp.BytePointer textRight, - org.bytedeco.javacpp.FloatPointer value, + FloatBuffer value, float minValue, float maxValue)
     
    static int
    -
    GuiSpinner(Raylib.Rectangle bounds, - String text, - int[] value, - int minValue, - int maxValue, - boolean editMode)
    +
    GuiSliderBar(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer textLeft, + org.bytedeco.javacpp.BytePointer textRight, + org.bytedeco.javacpp.FloatPointer value, + float minValue, + float maxValue)
     
    static int
    -
    GuiSpinner(Raylib.Rectangle bounds, - String text, - IntBuffer value, +
    GuiSpinner(Raylib.Rectangle bounds, + String text, + int[] value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiSpinner(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.IntPointer value, +
    GuiSpinner(Raylib.Rectangle bounds, + String text, + IntBuffer value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiSpinner(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - int[] value, +
    GuiSpinner(Raylib.Rectangle bounds, + String text, + org.bytedeco.javacpp.IntPointer value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiSpinner(Raylib.Rectangle bounds, +
    GuiSpinner(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - IntBuffer value, + int[] value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiSpinner(Raylib.Rectangle bounds, +
    GuiSpinner(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer value, + IntBuffer value, int minValue, int maxValue, boolean editMode)
     
    static int
    - +
    GuiSpinner(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer value, + int minValue, + int maxValue, + boolean editMode)
     
    static int
    -
    GuiStatusBar(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text)
    +
     
    static int
    -
    GuiTabBar(Raylib.Rectangle bounds, - byte[] text, - int count, - int[] active)
    +
    GuiStatusBar(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    GuiTabBar(Raylib.Rectangle bounds, - ByteBuffer text, +
    GuiTabBar(Raylib.Rectangle bounds, + byte[] text, int count, - IntBuffer active)
    + int[] active)
     
    static int
    -
    GuiTabBar(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiTabBar(Raylib.Rectangle bounds, + ByteBuffer text, int count, - org.bytedeco.javacpp.IntPointer active)
    + IntBuffer active)
     
    static int
    -
    GuiTabBar(Raylib.Rectangle bounds, - org.bytedeco.javacpp.PointerPointer text, +
    GuiTabBar(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, int count, org.bytedeco.javacpp.IntPointer active)
     
    static int
    -
    GuiTextBox(Raylib.Rectangle bounds, - byte[] text, - int textSize, - boolean editMode)
    +
    GuiTabBar(Raylib.Rectangle bounds, + org.bytedeco.javacpp.PointerPointer text, + int count, + org.bytedeco.javacpp.IntPointer active)
     
    static int
    -
    GuiTextBox(Raylib.Rectangle bounds, - ByteBuffer text, +
    GuiTextBox(Raylib.Rectangle bounds, + byte[] text, int textSize, boolean editMode)
     
    static int
    -
    GuiTextBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, +
    GuiTextBox(Raylib.Rectangle bounds, + ByteBuffer text, int textSize, boolean editMode)
     
    static int
    -
    GuiTextInputBox(Raylib.Rectangle bounds, - String title, - String message, - String buttons, - byte[] text, - int textMaxSize, - boolean[] secretViewActive)
    +
    GuiTextBox(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + int textSize, + boolean editMode)
     
    static int
    -
    GuiTextInputBox(Raylib.Rectangle bounds, - String title, - String message, - String buttons, - ByteBuffer text, +
    GuiTextInputBox(Raylib.Rectangle bounds, + String title, + String message, + String buttons, + byte[] text, int textMaxSize, boolean[] secretViewActive)
     
    static int
    -
    GuiTextInputBox(Raylib.Rectangle bounds, - String title, - String message, - String buttons, - org.bytedeco.javacpp.BytePointer text, +
    GuiTextInputBox(Raylib.Rectangle bounds, + String title, + String message, + String buttons, + ByteBuffer text, int textMaxSize, boolean[] secretViewActive)
     
    static int
    -
    GuiTextInputBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer title, - org.bytedeco.javacpp.BytePointer message, - org.bytedeco.javacpp.BytePointer buttons, - byte[] text, +
    GuiTextInputBox(Raylib.Rectangle bounds, + String title, + String message, + String buttons, + org.bytedeco.javacpp.BytePointer text, int textMaxSize, - org.bytedeco.javacpp.BoolPointer secretViewActive)
    + boolean[] secretViewActive)
     
    static int
    -
    GuiTextInputBox(Raylib.Rectangle bounds, +
    GuiTextInputBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer title, org.bytedeco.javacpp.BytePointer message, org.bytedeco.javacpp.BytePointer buttons, - ByteBuffer text, + byte[] text, int textMaxSize, org.bytedeco.javacpp.BoolPointer secretViewActive)
     
    static int
    -
    GuiTextInputBox(Raylib.Rectangle bounds, +
    GuiTextInputBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer title, org.bytedeco.javacpp.BytePointer message, org.bytedeco.javacpp.BytePointer buttons, - org.bytedeco.javacpp.BytePointer text, + ByteBuffer text, int textMaxSize, org.bytedeco.javacpp.BoolPointer secretViewActive)
     
    static int
    -
    GuiToggle(Raylib.Rectangle bounds, - String text, - boolean[] active)
    +
    GuiTextInputBox(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer title, + org.bytedeco.javacpp.BytePointer message, + org.bytedeco.javacpp.BytePointer buttons, + org.bytedeco.javacpp.BytePointer text, + int textMaxSize, + org.bytedeco.javacpp.BoolPointer secretViewActive)
     
    static int
    -
    GuiToggle(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.BoolPointer active)
    +
    GuiToggle(Raylib.Rectangle bounds, + String text, + boolean[] active)
     
    static int
    -
    GuiToggleGroup(Raylib.Rectangle bounds, - String text, - int[] active)
    +
    GuiToggle(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BoolPointer active)
     
    static int
    -
    GuiToggleGroup(Raylib.Rectangle bounds, - String text, - IntBuffer active)
    +
    GuiToggleGroup(Raylib.Rectangle bounds, + String text, + int[] active)
     
    static int
    -
    GuiToggleGroup(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.IntPointer active)
    +
    GuiToggleGroup(Raylib.Rectangle bounds, + String text, + IntBuffer active)
     
    static int
    -
    GuiToggleGroup(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - int[] active)
    +
    GuiToggleGroup(Raylib.Rectangle bounds, + String text, + org.bytedeco.javacpp.IntPointer active)
     
    static int
    -
    GuiToggleGroup(Raylib.Rectangle bounds, +
    GuiToggleGroup(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - IntBuffer active)
    + int[] active)
     
    static int
    -
    GuiToggleGroup(Raylib.Rectangle bounds, +
    GuiToggleGroup(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer active)
    + IntBuffer active)
     
    static int
    -
    GuiToggleSlider(Raylib.Rectangle bounds, - String text, - int[] active)
    +
    GuiToggleGroup(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer active)
     
    static int
    -
    GuiToggleSlider(Raylib.Rectangle bounds, - String text, - IntBuffer active)
    +
    GuiToggleSlider(Raylib.Rectangle bounds, + String text, + int[] active)
     
    static int
    -
    GuiToggleSlider(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.IntPointer active)
    +
    GuiToggleSlider(Raylib.Rectangle bounds, + String text, + IntBuffer active)
     
    static int
    -
    GuiToggleSlider(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - int[] active)
    +
    GuiToggleSlider(Raylib.Rectangle bounds, + String text, + org.bytedeco.javacpp.IntPointer active)
     
    static int
    -
    GuiToggleSlider(Raylib.Rectangle bounds, +
    GuiToggleSlider(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - IntBuffer active)
    + int[] active)
     
    static int
    -
    GuiToggleSlider(Raylib.Rectangle bounds, +
    GuiToggleSlider(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer active)
    + IntBuffer active)
     
    -
    static void
    - +
    static int
    +
    GuiToggleSlider(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer active)
     
    -
    static int
    -
    GuiValueBox(Raylib.Rectangle bounds, - String text, - int[] value, - int minValue, - int maxValue, - boolean editMode)
    +
    static void
    +
     
    static int
    -
    GuiValueBox(Raylib.Rectangle bounds, - String text, - IntBuffer value, +
    GuiValueBox(Raylib.Rectangle bounds, + String text, + int[] value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiValueBox(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.IntPointer value, +
    GuiValueBox(Raylib.Rectangle bounds, + String text, + IntBuffer value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiValueBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - int[] value, +
    GuiValueBox(Raylib.Rectangle bounds, + String text, + org.bytedeco.javacpp.IntPointer value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiValueBox(Raylib.Rectangle bounds, +
    GuiValueBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - IntBuffer value, + int[] value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiValueBox(Raylib.Rectangle bounds, +
    GuiValueBox(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.IntPointer value, + IntBuffer value, int minValue, int maxValue, boolean editMode)
     
    static int
    -
    GuiValueBoxFloat(Raylib.Rectangle bounds, - String text, - byte[] textValue, - float[] value, +
    GuiValueBox(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer value, + int minValue, + int maxValue, boolean editMode)
     
    static int
    -
    GuiValueBoxFloat(Raylib.Rectangle bounds, - String text, - ByteBuffer textValue, - FloatBuffer value, +
    GuiValueBoxFloat(Raylib.Rectangle bounds, + String text, + byte[] textValue, + float[] value, boolean editMode)
     
    static int
    -
    GuiValueBoxFloat(Raylib.Rectangle bounds, - String text, - org.bytedeco.javacpp.BytePointer textValue, - org.bytedeco.javacpp.FloatPointer value, +
    GuiValueBoxFloat(Raylib.Rectangle bounds, + String text, + ByteBuffer textValue, + FloatBuffer value, boolean editMode)
     
    static int
    -
    GuiValueBoxFloat(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer text, - byte[] textValue, - float[] value, +
    GuiValueBoxFloat(Raylib.Rectangle bounds, + String text, + org.bytedeco.javacpp.BytePointer textValue, + org.bytedeco.javacpp.FloatPointer value, boolean editMode)
     
    static int
    -
    GuiValueBoxFloat(Raylib.Rectangle bounds, +
    GuiValueBoxFloat(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - ByteBuffer textValue, - FloatBuffer value, + byte[] textValue, + float[] value, boolean editMode)
     
    static int
    -
    GuiValueBoxFloat(Raylib.Rectangle bounds, +
    GuiValueBoxFloat(Raylib.Rectangle bounds, org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.BytePointer textValue, - org.bytedeco.javacpp.FloatPointer value, + ByteBuffer textValue, + FloatBuffer value, boolean editMode)
     
    static int
    - +
    GuiValueBoxFloat(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer textValue, + org.bytedeco.javacpp.FloatPointer value, + boolean editMode)
     
    static int
    -
    GuiWindowBox(Raylib.Rectangle bounds, - org.bytedeco.javacpp.BytePointer title)
    +
     
    -
    static void
    - +
    static int
    +
    GuiWindowBox(Raylib.Rectangle bounds, + org.bytedeco.javacpp.BytePointer title)
     
    static void
    -
    ImageAlphaClear(Raylib.Image image, - Raylib.Color color, - float threshold)
    +
     
    static void
    -
    ImageAlphaCrop(Raylib.Image image, +
    ImageAlphaClear(Raylib.Image image, + Raylib.Color color, float threshold)
     
    static void
    - +
    ImageAlphaCrop(Raylib.Image image, + float threshold)
     
    static void
    - +
     
    static void
    -
    ImageBlurGaussian(Raylib.Image image, - int blurSize)
    +
     
    static void
    - +
    ImageBlurGaussian(Raylib.Image image, + int blurSize)
     
    static void
    -
    ImageColorBrightness(Raylib.Image image, - int brightness)
    +
     
    static void
    -
    ImageColorContrast(Raylib.Image image, - float contrast)
    +
    ImageColorBrightness(Raylib.Image image, + int brightness)
     
    static void
    - +
    ImageColorContrast(Raylib.Image image, + float contrast)
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    - - +
    static void
    +
     
    -
    static void
    - + +
     
    static void
    -
    ImageDither(Raylib.Image image, + +
     
    +
    static void
    +
    ImageDither(Raylib.Image image, int rBpp, int gBpp, int bBpp, int aBpp)
    -
     
    -
    static void
    -
    ImageDraw(Raylib.Image dst, +
     
    +
    static void
    + -
     
    -
    static void
    -
    ImageDrawCircle(Raylib.Image dst, - int centerX, - int centerY, - int radius, - Raylib.Color color)
     
    static void
    -
    ImageDrawCircleLines(Raylib.Image dst, +
    ImageDrawCircle(Raylib.Image dst, int centerX, int centerY, int radius, Raylib.Color color)
     
    static void
    -
    ImageDrawCircleLinesV(Raylib.Image dst, - Raylib.Vector2 center, +
    ImageDrawCircleLines(Raylib.Image dst, + int centerX, + int centerY, int radius, Raylib.Color color)
     
    static void
    -
    ImageDrawCircleV(Raylib.Image dst, +
     
    static void
    -
    ImageDrawLine(Raylib.Image dst, +
    ImageDrawCircleV(Raylib.Image dst, + Raylib.Vector2 center, + int radius, + Raylib.Color color)
    +
     
    +
    static void
    +
    ImageDrawLine(Raylib.Image dst, int startPosX, int startPosY, int endPosX, int endPosY, Raylib.Color color)
    -
     
    -
    static void
    -
    ImageDrawLineEx(Raylib.Image dst, - Raylib.Vector2 start, - Raylib.Vector2 end, - int thick, - Raylib.Color color)
     
    static void
    -
    ImageDrawLineV(Raylib.Image dst, +
    ImageDrawLineEx(Raylib.Image dst, Raylib.Vector2 start, Raylib.Vector2 end, + int thick, Raylib.Color color)
     
    static void
    -
    ImageDrawPixel(Raylib.Image dst, - int posX, - int posY, +
     
    static void
    -
    ImageDrawPixelV(Raylib.Image dst, - Raylib.Vector2 _position, +
    ImageDrawPixel(Raylib.Image dst, + int posX, + int posY, Raylib.Color color)
     
    static void
    -
    ImageDrawRectangle(Raylib.Image dst, + +
     
    +
    static void
    +
    ImageDrawRectangle(Raylib.Image dst, int posX, int posY, int width, int height, Raylib.Color color)
    -
     
    -
    static void
    -
     
    static void
    -
    ImageDrawRectangleRec(Raylib.Image dst, +
     
    static void
    -
    ImageDrawRectangleV(Raylib.Image dst, - Raylib.Vector2 _position, - Raylib.Vector2 size, +
     
    static void
    -
    ImageDrawText(Raylib.Image dst, - String text, - int posX, - int posY, - int fontSize, +
     
    static void
    -
    ImageDrawText(Raylib.Image dst, - org.bytedeco.javacpp.BytePointer text, +
    ImageDrawText(Raylib.Image dst, + String text, int posX, int posY, int fontSize, Raylib.Color color)
     
    static void
    -
    ImageDrawTextEx(Raylib.Image dst, +
    ImageDrawText(Raylib.Image dst, + org.bytedeco.javacpp.BytePointer text, + int posX, + int posY, + int fontSize, + Raylib.Color color)
    +
     
    +
    static void
    +
    ImageDrawTextEx(Raylib.Image dst, Raylib.Font font, - String text, + String text, Raylib.Vector2 _position, float fontSize, float spacing, Raylib.Color tint)
    -
     
    -
    static void
    -
    ImageDrawTextEx(Raylib.Image dst, +
     
    +
    static void
    +
    ImageDrawTextEx(Raylib.Image dst, Raylib.Font font, org.bytedeco.javacpp.BytePointer text, Raylib.Vector2 _position, float fontSize, float spacing, Raylib.Color tint)
    -
     
    -
    static void
    -
    ImageDrawTriangle(Raylib.Image dst, +
     
    +
    static void
    + -
     
    -
    static void
    -
    ImageDrawTriangleEx(Raylib.Image dst, +
     
    +
    static void
    + -
     
    -
    static void
    -
    ImageDrawTriangleFan(Raylib.Image dst, +
     
    +
    static void
    +
    ImageDrawTriangleFan(Raylib.Image dst, Raylib.Vector2 points, int pointCount, Raylib.Color color)
    -
     
    -
    static void
    -
    ImageDrawTriangleLines(Raylib.Image dst, +
     
    +
    static void
    + -
     
    -
    static void
    -
    ImageDrawTriangleStrip(Raylib.Image dst, +
     
    +
    static void
    +
    ImageDrawTriangleStrip(Raylib.Image dst, Raylib.Vector2 points, int pointCount, Raylib.Color color)
    -
     
    -
    static void
    -
     
    static void
    - +
     
    static void
    -
    ImageFormat(Raylib.Image image, - int newFormat)
    +
     
    - -
    ImageFromChannel(Raylib.Image image, - int selectedChannel)
    +
    static void
    +
    ImageFormat(Raylib.Image image, + int newFormat)
     
    - +
    ImageFromChannel(Raylib.Image image, + int selectedChannel)
     
    -
    static void
    -
    ImageKernelConvolution(Raylib.Image image, - float[] kernel, - int kernelSize)
    + +
     
    static void
    -
    ImageKernelConvolution(Raylib.Image image, - FloatBuffer kernel, +
    ImageKernelConvolution(Raylib.Image image, + float[] kernel, int kernelSize)
     
    static void
    -
    ImageKernelConvolution(Raylib.Image image, - org.bytedeco.javacpp.FloatPointer kernel, +
    ImageKernelConvolution(Raylib.Image image, + FloatBuffer kernel, int kernelSize)
     
    static void
    - +
    ImageKernelConvolution(Raylib.Image image, + org.bytedeco.javacpp.FloatPointer kernel, + int kernelSize)
     
    static void
    -
    ImageResize(Raylib.Image image, - int newWidth, - int newHeight)
    +
     
    static void
    -
    ImageResizeCanvas(Raylib.Image image, +
    ImageResize(Raylib.Image image, + int newWidth, + int newHeight)
    +
     
    +
    static void
    +
    ImageResizeCanvas(Raylib.Image image, int newWidth, int newHeight, int offsetX, int offsetY, Raylib.Color _fill)
    -
     
    -
    static void
    -
    ImageResizeNN(Raylib.Image image, - int newWidth, - int newHeight)
     
    static void
    -
    ImageRotate(Raylib.Image image, - int degrees)
    +
    ImageResizeNN(Raylib.Image image, + int newWidth, + int newHeight)
     
    static void
    - +
    ImageRotate(Raylib.Image image, + int degrees)
     
    static void
    - +
     
    - -
    ImageText(String text, - int fontSize, - Raylib.Color color)
    +
    static void
    +
     
    -
    ImageText(org.bytedeco.javacpp.BytePointer text, +
    ImageText(String text, int fontSize, Raylib.Color color)
     
    -
    ImageTextEx(Raylib.Font font, - String text, +
    ImageText(org.bytedeco.javacpp.BytePointer text, + int fontSize, + Raylib.Color color)
    +
     
    + +
    ImageTextEx(Raylib.Font font, + String text, float fontSize, float spacing, Raylib.Color tint)
    -
     
    - -
    ImageTextEx(Raylib.Font font, +
     
    + +
    ImageTextEx(Raylib.Font font, org.bytedeco.javacpp.BytePointer text, float fontSize, float spacing, Raylib.Color tint)
    -
     
    -
    static void
    -
     
    static void
    - +
     
    static void
    - +
     
    static void
    -
    InitWindow(int width, - int height, - String title)
    +
     
    static void
    -
    InitWindow(int width, +
    InitWindow(int width, int height, - org.bytedeco.javacpp.BytePointer title)
    + String title)
     
    -
    static boolean
    - +
    static void
    +
    InitWindow(int width, + int height, + org.bytedeco.javacpp.BytePointer title)
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    -
    IsFileExtension(String fileName, - String ext)
    +
     
    static boolean
    -
    IsFileExtension(org.bytedeco.javacpp.BytePointer fileName, - org.bytedeco.javacpp.BytePointer ext)
    +
    IsFileExtension(String fileName, + String ext)
     
    static boolean
    - +
    IsFileExtension(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.BytePointer ext)
     
    static boolean
    -
    IsFileNameValid(org.bytedeco.javacpp.BytePointer fileName)
    +
     
    static boolean
    - +
    IsFileNameValid(org.bytedeco.javacpp.BytePointer fileName)
     
    static boolean
    -
    IsGamepadAvailable(int gamepad)
    +
     
    static boolean
    -
    IsGamepadButtonDown(int gamepad, - int button)
    +
    IsGamepadAvailable(int gamepad)
     
    static boolean
    -
    IsGamepadButtonPressed(int gamepad, +
    IsGamepadButtonDown(int gamepad, int button)
     
    static boolean
    -
    IsGamepadButtonReleased(int gamepad, +
    IsGamepadButtonPressed(int gamepad, int button)
     
    static boolean
    -
    IsGamepadButtonUp(int gamepad, +
    IsGamepadButtonReleased(int gamepad, int button)
     
    static boolean
    -
    IsGestureDetected(int gesture)
    +
    IsGamepadButtonUp(int gamepad, + int button)
     
    static boolean
    - +
    IsGestureDetected(int gesture)
     
    static boolean
    -
    IsKeyDown(int key)
    +
     
    static boolean
    -
    IsKeyPressed(int key)
    +
    IsKeyDown(int key)
     
    static boolean
    - +
    IsKeyPressed(int key)
     
    static boolean
    -
    IsKeyReleased(int key)
    +
     
    static boolean
    -
    IsKeyUp(int key)
    +
    IsKeyReleased(int key)
     
    static boolean
    - +
    IsKeyUp(int key)
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    -
    IsMouseButtonDown(int button)
    +
     
    static boolean
    - +
    IsMouseButtonDown(int button)
     
    static boolean
    - +
     
    static boolean
    -
    IsMouseButtonUp(int button)
    +
     
    static boolean
    - +
    IsMouseButtonUp(int button)
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    -
    IsPathFile(org.bytedeco.javacpp.BytePointer path)
    +
     
    static boolean
    - +
    IsPathFile(org.bytedeco.javacpp.BytePointer path)
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    - +
     
    static boolean
    -
    IsWindowState(int flag)
    +
     
    -
    static float
    -
    Lerp(float start, +
    static boolean
    +
    IsWindowState(int flag)
    +
     
    +
    static float
    +
    Lerp(float start, float end, float amount)
    -
     
    - -
    LoadAudioStream(int sampleRate, +
     
    + +
    LoadAudioStream(int sampleRate, int sampleSize, int channels)
    -
     
    - -
     
    -
    LoadAutomationEventList(org.bytedeco.javacpp.BytePointer fileName)
    -
     
    -
    static int[]
    -
    LoadCodepoints(String text, - int[] count)
    -
     
    -
    static IntBuffer
    - +
     
    -
    static org.bytedeco.javacpp.IntPointer
    -
    LoadCodepoints(String text, - org.bytedeco.javacpp.IntPointer count)
    + +
    LoadAutomationEventList(org.bytedeco.javacpp.BytePointer fileName)
     
    static int[]
    -
    LoadCodepoints(org.bytedeco.javacpp.BytePointer text, +
    LoadCodepoints(String text, int[] count)
     
    -
    static IntBuffer
    -
    LoadCodepoints(org.bytedeco.javacpp.BytePointer text, - IntBuffer count)
    +
    static IntBuffer
    +
     
    static org.bytedeco.javacpp.IntPointer
    -
    LoadCodepoints(org.bytedeco.javacpp.BytePointer text, +
    LoadCodepoints(String text, org.bytedeco.javacpp.IntPointer count)
     
    - - +
    static int[]
    +
    LoadCodepoints(org.bytedeco.javacpp.BytePointer text, + int[] count)
    +
     
    +
    static IntBuffer
    +
    LoadCodepoints(org.bytedeco.javacpp.BytePointer text, + IntBuffer count)
    +
     
    +
    static org.bytedeco.javacpp.IntPointer
    +
    LoadCodepoints(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer count)
     
    -
    LoadDirectoryFiles(org.bytedeco.javacpp.BytePointer dirPath)
    +
     
    -
    LoadDirectoryFilesEx(String basePath, - String filter, - boolean scanSubdirs)
    +
    LoadDirectoryFiles(org.bytedeco.javacpp.BytePointer dirPath)
     
    -
    LoadDirectoryFilesEx(org.bytedeco.javacpp.BytePointer basePath, - org.bytedeco.javacpp.BytePointer filter, +
    LoadDirectoryFilesEx(String basePath, + String filter, boolean scanSubdirs)
     
    - -
     
    -
    static byte[]
    -
    LoadFileData(String fileName, - int[] dataSize)
    -
     
    -
    static ByteBuffer
    -
    LoadFileData(String fileName, - IntBuffer dataSize)
    +
    LoadDirectoryFilesEx(org.bytedeco.javacpp.BytePointer basePath, + org.bytedeco.javacpp.BytePointer filter, + boolean scanSubdirs)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    LoadFileData(String fileName, - org.bytedeco.javacpp.IntPointer dataSize)
    + +
     
    static byte[]
    -
    LoadFileData(org.bytedeco.javacpp.BytePointer fileName, +
    LoadFileData(String fileName, int[] dataSize)
     
    -
    static ByteBuffer
    -
    LoadFileData(org.bytedeco.javacpp.BytePointer fileName, - IntBuffer dataSize)
    +
    static ByteBuffer
    +
    LoadFileData(String fileName, + IntBuffer dataSize)
     
    static org.bytedeco.javacpp.BytePointer
    -
    LoadFileData(org.bytedeco.javacpp.BytePointer fileName, +
    LoadFileData(String fileName, org.bytedeco.javacpp.IntPointer dataSize)
     
    -
    static String
    -
    LoadFileText(String fileName)
    -
    +
    static byte[]
    +
    LoadFileData(org.bytedeco.javacpp.BytePointer fileName, + int[] dataSize)
    +
     
    +
    static ByteBuffer
    +
    LoadFileData(org.bytedeco.javacpp.BytePointer fileName, + IntBuffer dataSize)
    +
     
    +
    static org.bytedeco.javacpp.BytePointer
    +
    LoadFileData(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.IntPointer dataSize)
    +
     
    +
    static String
    +
    LoadFileText(String fileName)
    +
    Deprecated.
    - -
    LoadFont(String fileName)
    -
     
    -
    LoadFont(org.bytedeco.javacpp.BytePointer fileName)
    +
    LoadFont(String fileName)
     
    - -
    LoadFontData(byte[] fileData, - int dataSize, - int fontSize, - int[] codepoints, - int codepointCount, - int type)
    + +
    LoadFont(org.bytedeco.javacpp.BytePointer fileName)
     
    -
    LoadFontData(ByteBuffer fileData, +
    LoadFontData(byte[] fileData, int dataSize, int fontSize, - IntBuffer codepoints, + int[] codepoints, int codepointCount, - int type)
    + int type, + int[] glyphCount)
     
    -
    LoadFontData(org.bytedeco.javacpp.BytePointer fileData, +
    LoadFontData(ByteBuffer fileData, int dataSize, int fontSize, - org.bytedeco.javacpp.IntPointer codepoints, + IntBuffer codepoints, int codepointCount, - int type)
    + int type, + IntBuffer glyphCount)
     
    - -
    LoadFontEx(String fileName, + +
    LoadFontData(org.bytedeco.javacpp.BytePointer fileData, + int dataSize, int fontSize, - int[] codepoints, - int codepointCount)
    + org.bytedeco.javacpp.IntPointer codepoints, + int codepointCount, + int type, + org.bytedeco.javacpp.IntPointer glyphCount)
     
    -
    LoadFontEx(String fileName, +
    LoadFontEx(String fileName, int fontSize, - IntBuffer codepoints, + int[] codepoints, int codepointCount)
     
    -
    LoadFontEx(String fileName, +
    LoadFontEx(String fileName, int fontSize, - org.bytedeco.javacpp.IntPointer codepoints, + IntBuffer codepoints, int codepointCount)
     
    -
    LoadFontEx(org.bytedeco.javacpp.BytePointer fileName, +
    LoadFontEx(String fileName, int fontSize, - int[] codepoints, + org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
     
    -
    LoadFontEx(org.bytedeco.javacpp.BytePointer fileName, +
    LoadFontEx(org.bytedeco.javacpp.BytePointer fileName, int fontSize, - IntBuffer codepoints, + int[] codepoints, int codepointCount)
     
    -
    LoadFontEx(org.bytedeco.javacpp.BytePointer fileName, +
    LoadFontEx(org.bytedeco.javacpp.BytePointer fileName, int fontSize, - org.bytedeco.javacpp.IntPointer codepoints, + IntBuffer codepoints, int codepointCount)
     
    -
    LoadFontFromImage(Raylib.Image image, - Raylib.Color key, - int firstChar)
    -
     
    - -
    LoadFontFromMemory(String fileType, - byte[] fileData, - int dataSize, +
    LoadFontEx(org.bytedeco.javacpp.BytePointer fileName, int fontSize, - int[] codepoints, + org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
    +
     
    + +
    LoadFontFromImage(Raylib.Image image, + Raylib.Color key, + int firstChar)
     
    -
    LoadFontFromMemory(String fileType, - ByteBuffer fileData, +
    LoadFontFromMemory(String fileType, + byte[] fileData, int dataSize, int fontSize, - IntBuffer codepoints, + int[] codepoints, int codepointCount)
     
    -
    LoadFontFromMemory(String fileType, - org.bytedeco.javacpp.BytePointer fileData, +
    LoadFontFromMemory(String fileType, + ByteBuffer fileData, int dataSize, int fontSize, - org.bytedeco.javacpp.IntPointer codepoints, + IntBuffer codepoints, int codepointCount)
     
    -
    LoadFontFromMemory(org.bytedeco.javacpp.BytePointer fileType, - byte[] fileData, +
    LoadFontFromMemory(String fileType, + org.bytedeco.javacpp.BytePointer fileData, int dataSize, int fontSize, - int[] codepoints, + org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
     
    -
    LoadFontFromMemory(org.bytedeco.javacpp.BytePointer fileType, - ByteBuffer fileData, +
    LoadFontFromMemory(org.bytedeco.javacpp.BytePointer fileType, + byte[] fileData, int dataSize, int fontSize, - IntBuffer codepoints, + int[] codepoints, int codepointCount)
     
    -
    LoadFontFromMemory(org.bytedeco.javacpp.BytePointer fileType, +
    LoadFontFromMemory(org.bytedeco.javacpp.BytePointer fileType, + ByteBuffer fileData, + int dataSize, + int fontSize, + IntBuffer codepoints, + int codepointCount)
    +
     
    + +
    LoadFontFromMemory(org.bytedeco.javacpp.BytePointer fileType, org.bytedeco.javacpp.BytePointer fileData, int dataSize, int fontSize, org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
    -
     
    - -
    LoadImage(String fileName)
     
    -
    LoadImage(org.bytedeco.javacpp.BytePointer fileName)
    +
    LoadImage(String fileName)
     
    -
    LoadImageAnim(String fileName, - int[] frames)
    -
     
    - -
    LoadImageAnim(String fileName, - IntBuffer frames)
    -
     
    - -
    LoadImageAnim(String fileName, - org.bytedeco.javacpp.IntPointer frames)
    +
    LoadImage(org.bytedeco.javacpp.BytePointer fileName)
     
    -
    LoadImageAnim(org.bytedeco.javacpp.BytePointer fileName, +
    LoadImageAnim(String fileName, int[] frames)
     
    -
    LoadImageAnim(org.bytedeco.javacpp.BytePointer fileName, - IntBuffer frames)
    +
    LoadImageAnim(String fileName, + IntBuffer frames)
     
    -
    LoadImageAnim(org.bytedeco.javacpp.BytePointer fileName, +
    LoadImageAnim(String fileName, org.bytedeco.javacpp.IntPointer frames)
     
    -
    LoadImageAnimFromMemory(String fileType, - byte[] fileData, - int dataSize, +
    LoadImageAnim(org.bytedeco.javacpp.BytePointer fileName, int[] frames)
     
    -
    LoadImageAnimFromMemory(String fileType, - ByteBuffer fileData, - int dataSize, - IntBuffer frames)
    +
    LoadImageAnim(org.bytedeco.javacpp.BytePointer fileName, + IntBuffer frames)
     
    -
    LoadImageAnimFromMemory(String fileType, - org.bytedeco.javacpp.BytePointer fileData, - int dataSize, +
    LoadImageAnim(org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.IntPointer frames)
     
    -
    LoadImageAnimFromMemory(org.bytedeco.javacpp.BytePointer fileType, +
    LoadImageAnimFromMemory(String fileType, byte[] fileData, int dataSize, int[] frames)
     
    -
    LoadImageAnimFromMemory(org.bytedeco.javacpp.BytePointer fileType, - ByteBuffer fileData, +
    LoadImageAnimFromMemory(String fileType, + ByteBuffer fileData, int dataSize, - IntBuffer frames)
    + IntBuffer frames)
     
    -
    LoadImageAnimFromMemory(org.bytedeco.javacpp.BytePointer fileType, +
    LoadImageAnimFromMemory(String fileType, org.bytedeco.javacpp.BytePointer fileData, int dataSize, org.bytedeco.javacpp.IntPointer frames)
     
    - - + +
    LoadImageAnimFromMemory(org.bytedeco.javacpp.BytePointer fileType, + byte[] fileData, + int dataSize, + int[] frames)
     
    -
    LoadImageFromMemory(String fileType, - byte[] fileData, - int dataSize)
    +
    LoadImageAnimFromMemory(org.bytedeco.javacpp.BytePointer fileType, + ByteBuffer fileData, + int dataSize, + IntBuffer frames)
    +
     
    + +
    LoadImageAnimFromMemory(org.bytedeco.javacpp.BytePointer fileType, + org.bytedeco.javacpp.BytePointer fileData, + int dataSize, + org.bytedeco.javacpp.IntPointer frames)
    +
     
    + +
     
    -
    LoadImageFromMemory(String fileType, - ByteBuffer fileData, +
    LoadImageFromMemory(String fileType, + byte[] fileData, int dataSize)
     
    -
    LoadImageFromMemory(String fileType, - org.bytedeco.javacpp.BytePointer fileData, +
    LoadImageFromMemory(String fileType, + ByteBuffer fileData, int dataSize)
     
    -
    LoadImageFromMemory(org.bytedeco.javacpp.BytePointer fileType, - byte[] fileData, +
    LoadImageFromMemory(String fileType, + org.bytedeco.javacpp.BytePointer fileData, int dataSize)
     
    -
    LoadImageFromMemory(org.bytedeco.javacpp.BytePointer fileType, - ByteBuffer fileData, +
    LoadImageFromMemory(org.bytedeco.javacpp.BytePointer fileType, + byte[] fileData, int dataSize)
     
    -
    LoadImageFromMemory(org.bytedeco.javacpp.BytePointer fileType, - org.bytedeco.javacpp.BytePointer fileData, +
    LoadImageFromMemory(org.bytedeco.javacpp.BytePointer fileType, + ByteBuffer fileData, int dataSize)
     
    - +
    LoadImageFromMemory(org.bytedeco.javacpp.BytePointer fileType, + org.bytedeco.javacpp.BytePointer fileData, + int dataSize)
     
    - +
     
    - -
    LoadImagePalette(Raylib.Image image, - int maxPaletteSize, - int[] colorCount)
    + +
     
    -
    LoadImagePalette(Raylib.Image image, +
    LoadImagePalette(Raylib.Image image, int maxPaletteSize, - IntBuffer colorCount)
    + int[] colorCount)
     
    -
    LoadImagePalette(Raylib.Image image, +
    LoadImagePalette(Raylib.Image image, int maxPaletteSize, - org.bytedeco.javacpp.IntPointer colorCount)
    + IntBuffer colorCount)
     
    - -
    LoadImageRaw(String fileName, + +
    LoadImagePalette(Raylib.Image image, + int maxPaletteSize, + org.bytedeco.javacpp.IntPointer colorCount)
    +
     
    + +
    LoadImageRaw(String fileName, int width, int height, int format, int headerSize)
    -
     
    - -
    LoadImageRaw(org.bytedeco.javacpp.BytePointer fileName, +
     
    + +
    LoadImageRaw(org.bytedeco.javacpp.BytePointer fileName, int width, int height, int format, int headerSize)
    -
     
    - -
     
    -
    LoadMaterials(String fileName, - int[] materialCount)
    +
     
    -
    LoadMaterials(String fileName, - IntBuffer materialCount)
    +
    LoadMaterials(String fileName, + int[] materialCount)
     
    -
    LoadMaterials(String fileName, - org.bytedeco.javacpp.IntPointer materialCount)
    +
    LoadMaterials(String fileName, + IntBuffer materialCount)
     
    -
    LoadMaterials(org.bytedeco.javacpp.BytePointer fileName, - int[] materialCount)
    +
    LoadMaterials(String fileName, + org.bytedeco.javacpp.IntPointer materialCount)
     
    -
    LoadMaterials(org.bytedeco.javacpp.BytePointer fileName, - IntBuffer materialCount)
    +
    LoadMaterials(org.bytedeco.javacpp.BytePointer fileName, + int[] materialCount)
     
    -
    LoadMaterials(org.bytedeco.javacpp.BytePointer fileName, - org.bytedeco.javacpp.IntPointer materialCount)
    +
    LoadMaterials(org.bytedeco.javacpp.BytePointer fileName, + IntBuffer materialCount)
     
    - -
    LoadModel(String fileName)
    + +
    LoadMaterials(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.IntPointer materialCount)
     
    -
    LoadModel(org.bytedeco.javacpp.BytePointer fileName)
    +
    LoadModel(String fileName)
     
    - -
    LoadModelAnimations(String fileName, - int[] animCount)
    + +
    LoadModel(org.bytedeco.javacpp.BytePointer fileName)
     
    -
    LoadModelAnimations(String fileName, - IntBuffer animCount)
    +
    LoadModelAnimations(String fileName, + int[] animCount)
     
    -
    LoadModelAnimations(String fileName, - org.bytedeco.javacpp.IntPointer animCount)
    +
    LoadModelAnimations(String fileName, + IntBuffer animCount)
     
    -
    LoadModelAnimations(org.bytedeco.javacpp.BytePointer fileName, - int[] animCount)
    +
    LoadModelAnimations(String fileName, + org.bytedeco.javacpp.IntPointer animCount)
     
    -
    LoadModelAnimations(org.bytedeco.javacpp.BytePointer fileName, - IntBuffer animCount)
    +
    LoadModelAnimations(org.bytedeco.javacpp.BytePointer fileName, + int[] animCount)
     
    -
    LoadModelAnimations(org.bytedeco.javacpp.BytePointer fileName, - org.bytedeco.javacpp.IntPointer animCount)
    +
    LoadModelAnimations(org.bytedeco.javacpp.BytePointer fileName, + IntBuffer animCount)
     
    - - + +
    LoadModelAnimations(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.IntPointer animCount)
     
    - - + +
     
    -
    LoadMusicStream(org.bytedeco.javacpp.BytePointer fileName)
    +
     
    -
    LoadMusicStreamFromMemory(String fileType, - byte[] data, - int dataSize)
    +
    LoadMusicStream(org.bytedeco.javacpp.BytePointer fileName)
     
    -
    LoadMusicStreamFromMemory(String fileType, - ByteBuffer data, +
    LoadMusicStreamFromMemory(String fileType, + byte[] data, int dataSize)
     
    -
    LoadMusicStreamFromMemory(String fileType, - org.bytedeco.javacpp.BytePointer data, +
    LoadMusicStreamFromMemory(String fileType, + ByteBuffer data, int dataSize)
     
    -
    LoadMusicStreamFromMemory(org.bytedeco.javacpp.BytePointer fileType, - byte[] data, +
    LoadMusicStreamFromMemory(String fileType, + org.bytedeco.javacpp.BytePointer data, int dataSize)
     
    -
    LoadMusicStreamFromMemory(org.bytedeco.javacpp.BytePointer fileType, - ByteBuffer data, +
    LoadMusicStreamFromMemory(org.bytedeco.javacpp.BytePointer fileType, + byte[] data, int dataSize)
     
    -
    LoadMusicStreamFromMemory(org.bytedeco.javacpp.BytePointer fileType, - org.bytedeco.javacpp.BytePointer data, +
    LoadMusicStreamFromMemory(org.bytedeco.javacpp.BytePointer fileType, + ByteBuffer data, int dataSize)
     
    -
    static org.bytedeco.javacpp.IntPointer
    -
    LoadRandomSequence(int count, + +
    LoadMusicStreamFromMemory(org.bytedeco.javacpp.BytePointer fileType, + org.bytedeco.javacpp.BytePointer data, + int dataSize)
    +
     
    +
    static org.bytedeco.javacpp.IntPointer
    +
    LoadRandomSequence(int count, int min, int max)
    -
     
    - -
    LoadRenderTexture(int width, - int height)
     
    - -
    LoadShader(String vsFileName, - String fsFileName)
    + +
    LoadRenderTexture(int width, + int height)
     
    -
    LoadShader(org.bytedeco.javacpp.BytePointer vsFileName, - org.bytedeco.javacpp.BytePointer fsFileName)
    +
    LoadShader(String vsFileName, + String fsFileName)
     
    -
    LoadShaderFromMemory(String vsCode, - String fsCode)
    +
    LoadShader(org.bytedeco.javacpp.BytePointer vsFileName, + org.bytedeco.javacpp.BytePointer fsFileName)
     
    -
    LoadShaderFromMemory(org.bytedeco.javacpp.BytePointer vsCode, +
    LoadShaderFromMemory(String vsCode, + String fsCode)
    +
     
    + +
    LoadShaderFromMemory(org.bytedeco.javacpp.BytePointer vsCode, org.bytedeco.javacpp.BytePointer fsCode)
    +
     
    + +
    LoadSound(String fileName)
     
    -
    LoadSound(String fileName)
    +
    LoadSound(org.bytedeco.javacpp.BytePointer fileName)
     
    -
    LoadSound(org.bytedeco.javacpp.BytePointer fileName)
    +
     
    - +
     
    - - +
    static byte[]
    +
    LoadTextLines(String text, + int[] count)
     
    - -
    LoadTexture(String fileName)
    +
    static ByteBuffer
    +
    LoadTextLines(String text, + IntBuffer count)
    +
     
    +
    static org.bytedeco.javacpp.BytePointer
    +
    LoadTextLines(String text, + org.bytedeco.javacpp.IntPointer count)
    +
     
    +
    static byte[]
    +
    LoadTextLines(org.bytedeco.javacpp.BytePointer text, + int[] count)
    +
     
    +
    static ByteBuffer
    +
    LoadTextLines(org.bytedeco.javacpp.BytePointer text, + IntBuffer count)
    +
     
    +
    static org.bytedeco.javacpp.PointerPointer
    +
    LoadTextLines(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer count)
     
    -
    LoadTexture(org.bytedeco.javacpp.BytePointer fileName)
    +
    LoadTexture(String fileName)
     
    -
    LoadTextureCubemap(Raylib.Image image, - int layout)
    +
    LoadTexture(org.bytedeco.javacpp.BytePointer fileName)
     
    - +
    LoadTextureCubemap(Raylib.Image image, + int layout)
     
    -
    static byte[]
    -
    LoadUTF8(int[] codepoints, - int length)
    + +
     
    -
    static ByteBuffer
    -
    LoadUTF8(IntBuffer codepoints, +
    static byte[]
    +
    LoadUTF8(int[] codepoints, int length)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    LoadUTF8(org.bytedeco.javacpp.IntPointer codepoints, +
    static ByteBuffer
    +
    LoadUTF8(IntBuffer codepoints, int length)
     
    - - +
    static org.bytedeco.javacpp.BytePointer
    +
    LoadUTF8(org.bytedeco.javacpp.IntPointer codepoints, + int length)
     
    - -
    LoadWave(String fileName)
    + +
     
    -
    LoadWave(org.bytedeco.javacpp.BytePointer fileName)
    +
    LoadWave(String fileName)
     
    -
    LoadWaveFromMemory(String fileType, - byte[] fileData, - int dataSize)
    +
    LoadWave(org.bytedeco.javacpp.BytePointer fileName)
     
    -
    LoadWaveFromMemory(String fileType, - ByteBuffer fileData, +
    LoadWaveFromMemory(String fileType, + byte[] fileData, int dataSize)
     
    -
    LoadWaveFromMemory(String fileType, - org.bytedeco.javacpp.BytePointer fileData, +
    LoadWaveFromMemory(String fileType, + ByteBuffer fileData, int dataSize)
     
    -
    LoadWaveFromMemory(org.bytedeco.javacpp.BytePointer fileType, - byte[] fileData, +
    LoadWaveFromMemory(String fileType, + org.bytedeco.javacpp.BytePointer fileData, int dataSize)
     
    -
    LoadWaveFromMemory(org.bytedeco.javacpp.BytePointer fileType, - ByteBuffer fileData, +
    LoadWaveFromMemory(org.bytedeco.javacpp.BytePointer fileType, + byte[] fileData, int dataSize)
     
    -
    LoadWaveFromMemory(org.bytedeco.javacpp.BytePointer fileType, +
    LoadWaveFromMemory(org.bytedeco.javacpp.BytePointer fileType, + ByteBuffer fileData, + int dataSize)
    +
     
    + +
    LoadWaveFromMemory(org.bytedeco.javacpp.BytePointer fileType, org.bytedeco.javacpp.BytePointer fileData, int dataSize)
    +
     
    +
    static org.bytedeco.javacpp.FloatPointer
    +
     
    -
    static org.bytedeco.javacpp.FloatPointer
    - +
    static int
    +
     
    static int
    - +
    MakeDirectory(org.bytedeco.javacpp.BytePointer dirPath)
     
    -
    static int
    -
    MakeDirectory(org.bytedeco.javacpp.BytePointer dirPath)
    + +
     
    - +
    MatrixCompose(Raylib.Vector3 translation, + Raylib.Vector4 rotation, + Raylib.Vector3 scale)
     
    static void
    MatrixDecompose(Raylib.Matrix mat, @@ -10508,66 +8523,73 @@

    Method Summary

    Raylib.Matrix right)
     
    -
    MatrixOrtho(double left, +
    MatrixMultiplyValue(Raylib.Matrix left, + float value)
    +
     
    + +
    MatrixOrtho(double left, double right, double bottom, double top, double nearPlane, double farPlane)
    -
     
    - -
    MatrixPerspective(double fovY, +
     
    + +
    MatrixPerspective(double fovY, double aspect, double nearPlane, double farPlane)
    -
     
    - -
    MatrixRotate(Raylib.Vector3 axis, - float angle)
     
    -
    MatrixRotateX(float angle)
    +
    MatrixRotate(Raylib.Vector3 axis, + float angle)
     
    - +
    MatrixRotateX(float angle)
     
    -
    MatrixRotateY(float angle)
    +
     
    -
    MatrixRotateZ(float angle)
    +
    MatrixRotateY(float angle)
     
    - +
    MatrixRotateZ(float angle)
     
    -
    MatrixScale(float x, - float y, - float z)
    +
     
    - +
    MatrixScale(float x, + float y, + float z)
     
    - - + +
     
    -
    static float
    - + +
     
    - -
    MatrixTranslate(float x, +
    static float
    + +
     
    + +
    MatrixTranslate(float x, float y, float z)
    +
     
    + +
     
    - +
     
    static void
     
    static int
    -
    MeasureText(String text, +
    MeasureText(String text, int fontSize)
     
    static int
    @@ -10575,29 +8597,54 @@

    Method Summary

    int fontSize)
     
    -
    MeasureTextEx(Raylib.Font font, - String text, +
    MeasureTextCodepoints(Raylib.Font font, + int[] codepoints, + int length, float fontSize, float spacing)
     
    -
    MeasureTextEx(Raylib.Font font, - org.bytedeco.javacpp.BytePointer text, +
    MeasureTextCodepoints(Raylib.Font font, + IntBuffer codepoints, + int length, float fontSize, float spacing)
     
    -
    static org.bytedeco.javacpp.Pointer
    -
    MemAlloc(int size)
    + +
    MeasureTextCodepoints(Raylib.Font font, + org.bytedeco.javacpp.IntPointer codepoints, + int length, + float fontSize, + float spacing)
     
    -
    static void
    -
    MemFree(org.bytedeco.javacpp.Pointer ptr)
    + +
    MeasureTextEx(Raylib.Font font, + String text, + float fontSize, + float spacing)
     
    -
    static org.bytedeco.javacpp.Pointer
    -
    MemRealloc(org.bytedeco.javacpp.Pointer ptr, + +
    MeasureTextEx(Raylib.Font font, + org.bytedeco.javacpp.BytePointer text, + float fontSize, + float spacing)
    +
     
    +
    static org.bytedeco.javacpp.Pointer
    +
    MemAlloc(int size)
    +
     
    +
    static void
    +
    MemFree(org.bytedeco.javacpp.Pointer ptr)
    +
     
    +
    static org.bytedeco.javacpp.Pointer
    +
    MemRealloc(org.bytedeco.javacpp.Pointer ptr, int size)
    +
     
    +
    static void
    +
     
    -
    static void
    - + +
    multiply(Raylib.Matrix lhs, + float value)
     
    multiply(Raylib.Matrix lhs, @@ -10640,268 +8687,272 @@

    Method Summary

    Raylib.Vector4 rhs)
     
    - +
    multiplyPut(Raylib.Matrix lhs, + float value)
     
    - -
    multiplyPut(Raylib.Vector2 lhs, - float rhs)
    + +
     
    - +
    multiplyPut(Raylib.Vector2 lhs, + float rhs)
     
    - +
     
    - -
    multiplyPut(Raylib.Vector3 lhs, - float rhs)
    + +
     
    - +
    multiplyPut(Raylib.Vector3 lhs, + float rhs)
     
    - +
     
    - -
    multiplyPut(Raylib.Vector4 lhs, - float rhs)
    + +
     
    - +
    multiplyPut(Raylib.Vector4 lhs, + float rhs)
     
    - +
     
    -
    static float
    -
    Normalize(float value, + + +
     
    +
    static float
    +
    Normalize(float value, float start, float end)
    -
     
    -
    static boolean
    -
     
    static boolean
    - +
     
    static boolean
    - +
     
    -
    static void
    - +
    static boolean
    +
     
    static void
    -
    OpenURL(org.bytedeco.javacpp.BytePointer url)
    +
     
    static void
    - +
    OpenURL(org.bytedeco.javacpp.BytePointer url)
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    -
    PhysicsAddTorque(Raylib.PhysicsBody body, - float amount)
    +
     
    static void
    -
    PhysicsShatter(Raylib.PhysicsBody body, - Raylib.Vector2 _position, - float force)
    +
    PhysicsAddTorque(Raylib.PhysicsBody body, + float amount)
     
    static void
    - +
    PhysicsShatter(Raylib.PhysicsBody body, + Raylib.Vector2 _position, + float force)
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    - - +
    static void
    +
     
    - +
     
    -
    QuaternionCubicHermiteSpline(Raylib.Vector4 q1, + +
     
    + + -
     
    - -
     
    -
    static int
    - + +
     
    - - +
    static int
    +
     
    -
    QuaternionFromEuler(float pitch, - float yaw, - float roll)
    +
     
    - +
    QuaternionFromEuler(float pitch, + float yaw, + float roll)
     
    - +
     
    - +
     
    - +
     
    -
    static float
    - + +
     
    - -
    QuaternionLerp(Raylib.Vector4 q1, - Raylib.Vector4 q2, - float amount)
    +
    static float
    +
     
    - -
     
    - -
    QuaternionNlerp(Raylib.Vector4 q1, + +
     
    + +
     
    - +
    QuaternionNlerp(Raylib.Vector4 q1, + Raylib.Vector4 q2, + float amount)
     
    - +
     
    - +
     
    -
    QuaternionSlerp(Raylib.Vector4 q1, - Raylib.Vector4 q2, - float amount)
    +
     
    - +
    QuaternionSlerp(Raylib.Vector4 q1, + Raylib.Vector4 q2, + float amount)
     
    - +
     
    -
    static void
    -
    QuaternionToAxisAngle(Raylib.Vector4 q, - Raylib.Vector3 outAxis, - float[] outAngle)
    + +
     
    static void
    -
     
    static void
    -
    QuaternionToAxisAngle(Raylib.Vector4 q, +
    QuaternionToAxisAngle(Raylib.Vector4 q, Raylib.Vector3 outAxis, - org.bytedeco.javacpp.FloatPointer outAngle)
    + FloatBuffer outAngle)
     
    - - +
    static void
    +
    QuaternionToAxisAngle(Raylib.Vector4 q, + Raylib.Vector3 outAxis, + org.bytedeco.javacpp.FloatPointer outAngle)
     
    - - + +
     
    - - + +
     
    - +
     
    - +
     
    -
    static float
    -
    Remap(float value, + + +
     
    +
    static float
    +
    Remap(float value, float inputStart, float inputEnd, float outputStart, float outputEnd)
    -
     
    -
    static void
    -
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    -
    rlBegin(int mode)
    +
     
    static void
    -
    rlBindFramebuffer(int target, - int framebuffer)
    +
    rlBegin(int mode)
     
    static void
    -
    rlBindImageTexture(int id, +
    rlBindFramebuffer(int target, + int framebuffer)
    +
     
    +
    static void
    +
    rlBindImageTexture(int id, int index, int format, boolean readonly)
    -
     
    -
    static void
    -
    rlBindShaderBuffer(int id, - int index)
     
    static void
    -
    rlBlitFramebuffer(int srcX, +
    rlBindShaderBuffer(int id, + int index)
    +
     
    +
    static void
    +
    rlBlitFramebuffer(int srcX, int srcY, int srcWidth, int srcHeight, @@ -10910,57 +8961,57 @@

    Method Summary

    int dstWidth, int dstHeight, int bufferMask)
    -
     
    -
    static void
    -
     
    -
    static boolean
    - +
    static void
    +
     
    -
    static void
    -
    rlClearColor(byte r, +
    static boolean
    + +
     
    +
    static void
    +
    rlClearColor(byte r, byte g, byte b, byte a)
    -
     
    -
    static void
    -
     
    static void
    -
    rlColor3f(float x, - float y, - float z)
    +
     
    static void
    -
    rlColor4f(float x, +
    rlColor3f(float x, float y, - float z, - float w)
    + float z)
     
    static void
    -
    rlColor4ub(byte r, +
    rlColor4f(float x, + float y, + float z, + float w)
    +
     
    +
    static void
    +
    rlColor4ub(byte r, byte g, byte b, byte a)
    -
     
    -
    static void
    -
    rlColorMask(boolean r, +
     
    +
    static void
    +
    rlColorMask(boolean r, boolean g, boolean b, boolean a)
    -
     
    -
    static int
    -
    rlCompileShader(String shaderCode, - int type)
     
    -
    static int
    -
    rlCompileShader(org.bytedeco.javacpp.BytePointer shaderCode, - int type)
    -
     
    -
    static void
    -
    rlComputeShaderDispatch(int groupX, +
    static void
    +
    rlComputeShaderDispatch(int groupX, int groupY, int groupZ)
    +
     
    +
    static void
    +
    rlCopyFramebuffer(int x, + int y, + int width, + int height, + int format, + org.bytedeco.javacpp.Pointer pixels)
     
    static void
    rlCopyShaderBuffer(int destId, @@ -10990,13 +9041,19 @@

    Method Summary

     
    static void
    - +
     
    static void
    - +
     
    static void
    - + +
     
    +
    static void
    + +
     
    +
    static void
    +
    rlDisableStatePointer(int vertexAttribType)
     
    static void
    @@ -11076,140 +9133,153 @@

    Method Summary

     
    static void
    - +
    rlEnableStatePointer(int vertexAttribType, + org.bytedeco.javacpp.Pointer buffer)
     
    static void
    - +
     
    static void
    - +
     
    -
    static boolean
    - +
    static void
    +
     
    -
    static void
    - +
    static boolean
    +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    -
    rlFramebufferAttach(int fboId, + +
     
    +
    static void
    +
    rlFramebufferAttach(int id, int texId, int attachType, int texType, int mipLevel)
    -
     
    -
    static boolean
    -
     
    -
    static void
    -
    rlFrustum(double left, +
    static boolean
    + +
     
    +
    static void
    +
    rlFrustum(double left, double right, double bottom, double top, double znear, double zfar)
    -
     
    -
    static void
    -
    rlGenTextureMipmaps(int id, - int width, - int height, - int format, - int[] mipmaps)
     
    static void
    -
    rlGenTextureMipmaps(int id, +
    rlGenTextureMipmaps(int id, int width, int height, int format, - IntBuffer mipmaps)
    + int[] mipmaps)
     
    static void
    -
    rlGenTextureMipmaps(int id, +
    rlGenTextureMipmaps(int id, int width, int height, int format, - org.bytedeco.javacpp.IntPointer mipmaps)
    + IntBuffer mipmaps)
     
    -
    static int
    - +
    static void
    +
    rlGenTextureMipmaps(int id, + int width, + int height, + int format, + org.bytedeco.javacpp.IntPointer mipmaps)
     
    -
    static double
    - +
    static int
    +
     
    static double
    - +
     
    -
    static int
    - +
    static double
    +
     
    static int
    - +
     
    -
    static void
    -
    rlGetGlTextureFormats(int format, +
    static int
    + +
     
    +
    static void
    +
    rlGetGlTextureFormats(int format, int[] glInternalFormat, int[] glFormat, int[] glType)
    -
     
    -
    static void
    -
    rlGetGlTextureFormats(int format, - IntBuffer glInternalFormat, - IntBuffer glFormat, - IntBuffer glType)
     
    static void
    -
    rlGetGlTextureFormats(int format, +
    rlGetGlTextureFormats(int format, + IntBuffer glInternalFormat, + IntBuffer glFormat, + IntBuffer glType)
    +
     
    +
    static void
    +
    rlGetGlTextureFormats(int format, org.bytedeco.javacpp.IntPointer glInternalFormat, org.bytedeco.javacpp.IntPointer glFormat, org.bytedeco.javacpp.IntPointer glType)
    -
     
    -
    static float
    -
     
    -
    static int
    -
    rlGetLocationAttrib(int shaderId, - String attribName)
    +
    static float
    +
     
    static int
    -
    rlGetLocationAttrib(int shaderId, - org.bytedeco.javacpp.BytePointer attribName)
    +
    rlGetLocationAttrib(int id, + String attribName)
     
    static int
    -
    rlGetLocationUniform(int shaderId, - String uniformName)
    +
    rlGetLocationAttrib(int id, + org.bytedeco.javacpp.BytePointer attribName)
     
    static int
    -
    rlGetLocationUniform(int shaderId, +
    rlGetLocationUniform(int id, + String uniformName)
    +
     
    +
    static int
    +
    rlGetLocationUniform(int id, org.bytedeco.javacpp.BytePointer uniformName)
    +
     
    + +
     
    - +
     
    - +
     
    - +
     
    - +
     
    - - +
    static org.bytedeco.javacpp.BytePointer
    +
     
    -
    static org.bytedeco.javacpp.BytePointer
    - +
    static float
    + +
     
    +
    static org.bytedeco.javacpp.Pointer
    + +
     
    +
    static org.bytedeco.javacpp.Pointer
    +
    rlGetProcAddress(org.bytedeco.javacpp.BytePointer procName)
     
    static int
    @@ -11236,44 +9306,52 @@

    Method Summary

    static boolean
     
    -
    static int
    - +
    static void
    +
     
    static void
    - +
     
    static void
    - +
    rlLoadExtensions(org.bytedeco.javacpp.Pointer loader)
     
    -
    static void
    -
    rlLoadExtensions(org.bytedeco.javacpp.Pointer loader)
    +
    static int
    +
     
    -
    static int
    - +
    static void
    +
     
    -
    static void
    - -
     
    - -
    rlLoadRenderBatch(int numBuffers, + +
    rlLoadRenderBatch(int numBuffers, int bufferElements)
    +
     
    +
    static int
    +
    rlLoadShader(String code, + int type)
     
    static int
    -
    rlLoadShaderBuffer(int size, +
    rlLoadShader(org.bytedeco.javacpp.BytePointer code, + int type)
    +
     
    +
    static int
    +
    rlLoadShaderBuffer(int size, org.bytedeco.javacpp.Pointer data, int usageHint)
    +
     
    +
    static int
    +
    rlLoadShaderProgram(String vsCode, + String fsCode)
     
    static int
    -
    rlLoadShaderCode(String vsCode, - String fsCode)
    +
    rlLoadShaderProgram(org.bytedeco.javacpp.BytePointer vsCode, + org.bytedeco.javacpp.BytePointer fsCode)
     
    static int
    -
    rlLoadShaderCode(org.bytedeco.javacpp.BytePointer vsCode, - org.bytedeco.javacpp.BytePointer fsCode)
    +
     
    static int
    -
    rlLoadShaderProgram(int vShaderId, - int fShaderId)
    +
    rlLoadShaderProgramEx(int vsId, + int fsId)
     
    static int
    rlLoadTexture(org.bytedeco.javacpp.Pointer data, @@ -11313,7 +9391,7 @@

    Method Summary

    rlMultMatrixf(float[] matf)
     
    static void
    - +
     
    static void
    rlMultMatrixf(org.bytedeco.javacpp.FloatPointer matf)
    @@ -11354,67 +9432,74 @@

    Method Summary

    int format)
     
    static void
    -
    rlRotatef(float angle, - float x, - float y, - float z)
    +
    rlResizeFramebuffer(int width, + int height)
     
    static void
    -
    rlScalef(float x, +
    rlRotatef(float angle, + float x, float y, float z)
     
    static void
    -
    rlScissor(int x, +
    rlScalef(float x, + float y, + float z)
    +
     
    +
    static void
    +
    rlScissor(int x, int y, int width, int height)
    -
     
    -
    static void
    -
    rlSetBlendFactors(int glSrcFactor, - int glDstFactor, - int glEquation)
     
    static void
    -
    rlSetBlendFactorsSeparate(int glSrcRGB, +
    rlSetBlendFactors(int glSrcFactor, + int glDstFactor, + int glEquation)
    +
     
    +
    static void
    +
    rlSetBlendFactorsSeparate(int glSrcRGB, int glDstRGB, int glSrcAlpha, int glDstAlpha, int glEqRGB, int glEqAlpha)
    +
     
    +
    static void
    +
    rlSetBlendMode(int mode)
     
    static void
    -
    rlSetBlendMode(int mode)
    +
    rlSetClipPlanes(double nearPlane, + double farPlane)
     
    static void
    -
    rlSetClipPlanes(double nearPlane, - double farPlane)
    +
    rlSetCullFace(int mode)
     
    static void
    -
    rlSetCullFace(int mode)
    +
     
    static void
    - +
     
    static void
    - +
    rlSetLineWidth(float width)
     
    static void
    -
    rlSetLineWidth(float width)
    +
     
    static void
    - +
     
    static void
    - +
     
    static void
    -
    rlSetMatrixProjectionStereo(Raylib.Matrix right, +
     
    static void
    - +
    rlSetPointSize(float size)
     
    static void
    @@ -11425,7 +9510,7 @@

    Method Summary

     
    static void
    rlSetShader(int id, - IntBuffer locs)
    + IntBuffer locs)
     
    static void
    rlSetShader(int id, @@ -11492,693 +9577,727 @@

    Method Summary

     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    -
    rlUpdateShaderBuffer(int id, + +
     
    +
    static void
    +
    rlUpdateShaderBuffer(int id, org.bytedeco.javacpp.Pointer data, int dataSize, int offset)
    -
     
    -
    static void
    -
    rlUpdateTexture(int id, +
     
    +
    static void
    +
    rlUpdateTexture(int id, int offsetX, int offsetY, int width, int height, int format, org.bytedeco.javacpp.Pointer data)
    -
     
    -
    static void
    -
    rlUpdateVertexBuffer(int bufferId, - org.bytedeco.javacpp.Pointer data, - int dataSize, - int offset)
     
    static void
    -
    rlUpdateVertexBufferElements(int id, +
    rlUpdateVertexBuffer(int bufferId, org.bytedeco.javacpp.Pointer data, int dataSize, int offset)
     
    static void
    -
    rlVertex2f(float x, - float y)
    +
    rlUpdateVertexBufferElements(int id, + org.bytedeco.javacpp.Pointer data, + int dataSize, + int offset)
     
    static void
    -
    rlVertex2i(int x, - int y)
    +
    rlVertex2f(float x, + float y)
     
    static void
    -
    rlVertex3f(float x, - float y, - float z)
    +
    rlVertex2i(int x, + int y)
     
    static void
    -
    rlViewport(int x, +
    rlVertex3f(float x, + float y, + float z)
    +
     
    +
    static void
    +
    rlViewport(int x, int y, int width, int height)
    -
     
    -
    static boolean
    -
    SaveFileData(String fileName, - org.bytedeco.javacpp.Pointer data, - int dataSize)
     
    static boolean
    -
    SaveFileData(org.bytedeco.javacpp.BytePointer fileName, +
    SaveFileData(String fileName, org.bytedeco.javacpp.Pointer data, int dataSize)
     
    static boolean
    -
    SaveFileText(String fileName, - byte[] text)
    +
    SaveFileData(org.bytedeco.javacpp.BytePointer fileName, + org.bytedeco.javacpp.Pointer data, + int dataSize)
     
    static boolean
    -
    SaveFileText(String fileName, - ByteBuffer text)
    +
    SaveFileText(String fileName, + String text)
     
    static boolean
    -
    SaveFileText(String fileName, +
    SaveFileText(org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.BytePointer text)
     
    -
    static boolean
    -
    SaveFileText(org.bytedeco.javacpp.BytePointer fileName, - byte[] text)
    -
     
    -
    static boolean
    -
    SaveFileText(org.bytedeco.javacpp.BytePointer fileName, - ByteBuffer text)
    -
     
    -
    static boolean
    -
    SaveFileText(org.bytedeco.javacpp.BytePointer fileName, - org.bytedeco.javacpp.BytePointer text)
    +
    static void
    +
    SeekMusicStream(Raylib.Music music, + float _position)
     
    static void
    -
    SeekMusicStream(Raylib.Music music, - float _position)
    +
     
    static void
    - +
     
    static void
    - +
    SetAudioStreamPan(Raylib.AudioStream stream, + float pan)
     
    static void
    -
    SetAudioStreamPan(Raylib.AudioStream stream, - float pan)
    +
    SetAudioStreamPitch(Raylib.AudioStream stream, + float pitch)
     
    static void
    -
    SetAudioStreamPitch(Raylib.AudioStream stream, - float pitch)
    +
    SetAudioStreamVolume(Raylib.AudioStream stream, + float volume)
     
    static void
    -
    SetAudioStreamVolume(Raylib.AudioStream stream, - float volume)
    +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
    SetClipboardText(org.bytedeco.javacpp.BytePointer text)
     
    static void
    -
    SetClipboardText(org.bytedeco.javacpp.BytePointer text)
    +
    SetConfigFlags(int flags)
     
    static void
    -
    SetConfigFlags(int flags)
    +
    SetExitKey(int key)
     
    -
    static void
    -
    SetExitKey(int key)
    +
    static int
    +
     
    static int
    - +
    SetGamepadMappings(org.bytedeco.javacpp.BytePointer mappings)
     
    -
    static int
    -
    SetGamepadMappings(org.bytedeco.javacpp.BytePointer mappings)
    -
     
    -
    static void
    -
    SetGamepadVibration(int gamepad, +
    static void
    +
    SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
    -
     
    -
    static void
    -
    SetGesturesEnabled(int flags)
     
    static void
    - +
    SetGesturesEnabled(int flags)
     
    static void
    - +
     
    static void
    -
    SetMasterVolume(float volume)
    +
     
    static void
    -
    SetMaterialTexture(Raylib.Material material, - int mapType, - Raylib.Texture texture)
    +
    SetMasterVolume(float volume)
     
    static void
    -
    SetModelMeshMaterial(Raylib.Model model, - int meshId, - int materialId)
    +
    SetMaterialTexture(Raylib.Material material, + int mapType, + Raylib.Texture texture)
     
    static void
    -
    SetMouseCursor(int cursor)
    +
    SetModelMeshMaterial(Raylib.Model model, + int meshId, + int materialId)
     
    static void
    -
    SetMouseOffset(int offsetX, - int offsetY)
    +
    SetMouseCursor(int cursor)
     
    static void
    -
    SetMousePosition(int x, - int y)
    +
    SetMouseOffset(int offsetX, + int offsetY)
     
    static void
    -
    SetMouseScale(float scaleX, - float scaleY)
    +
    SetMousePosition(int x, + int y)
     
    static void
    -
    SetMusicPan(Raylib.Music music, - float pan)
    +
    SetMouseScale(float scaleX, + float scaleY)
     
    static void
    -
    SetMusicPitch(Raylib.Music music, - float pitch)
    +
    SetMusicPan(Raylib.Music music, + float pan)
     
    static void
    -
    SetMusicVolume(Raylib.Music music, - float volume)
    +
    SetMusicPitch(Raylib.Music music, + float pitch)
     
    static void
    - +
    SetMusicVolume(Raylib.Music music, + float volume)
     
    static void
    -
    SetPhysicsGravity(float x, - float y)
    +
     
    static void
    -
    SetPhysicsTimeStep(double delta)
    +
    SetPhysicsGravity(float x, + float y)
     
    static void
    -
    SetPixelColor(org.bytedeco.javacpp.Pointer dstPtr, - Raylib.Color color, - int format)
    +
    SetPhysicsTimeStep(double delta)
     
    static void
    -
    SetRandomSeed(int seed)
    +
    SetPixelColor(org.bytedeco.javacpp.Pointer dstPtr, + Raylib.Color color, + int format)
     
    static void
    - +
    SetRandomSeed(int seed)
     
    static void
    - +
     
    static void
    -
    SetShaderValue(Raylib.Shader shader, - int locIndex, - org.bytedeco.javacpp.Pointer value, - int uniformType)
    +
     
    static void
    -
    SetShaderValueMatrix(Raylib.Shader shader, +
    SetShaderValue(Raylib.Shader shader, int locIndex, - Raylib.Matrix mat)
    + org.bytedeco.javacpp.Pointer value, + int uniformType)
     
    static void
    -
     
    static void
    -
    SetShaderValueV(Raylib.Shader shader, +
    SetShaderValueTexture(Raylib.Shader shader, + int locIndex, + Raylib.Texture texture)
    +
     
    +
    static void
    +
    SetShaderValueV(Raylib.Shader shader, int locIndex, org.bytedeco.javacpp.Pointer value, int uniformType, int count)
    -
     
    -
    static void
    -
     
    static void
    -
    SetSoundPan(Raylib.Sound sound, - float pan)
    +
     
    static void
    -
    SetSoundPitch(Raylib.Sound sound, - float pitch)
    +
    SetSoundPan(Raylib.Sound sound, + float pan)
     
    static void
    -
    SetSoundVolume(Raylib.Sound sound, - float volume)
    +
    SetSoundPitch(Raylib.Sound sound, + float pitch)
     
    static void
    -
    SetTargetFPS(int fps)
    +
    SetSoundVolume(Raylib.Sound sound, + float volume)
     
    static void
    -
    SetTextLineSpacing(int spacing)
    +
    SetTargetFPS(int fps)
     
    static void
    -
    SetTextureFilter(Raylib.Texture texture, - int filter)
    +
    SetTextLineSpacing(int spacing)
     
    static void
    -
    SetTextureWrap(Raylib.Texture texture, - int wrap)
    +
    SetTextureFilter(Raylib.Texture texture, + int filter)
     
    static void
    - +
    SetTextureWrap(Raylib.Texture texture, + int wrap)
     
    static void
    -
    SetTraceLogLevel(int logLevel)
    +
     
    static void
    - +
    SetTraceLogLevel(int logLevel)
     
    static void
    - +
     
    static void
    -
    SetWindowIcons(Raylib.Image images, - int count)
    +
     
    static void
    -
    SetWindowMaxSize(int width, - int height)
    +
    SetWindowIcons(Raylib.Image images, + int count)
     
    static void
    -
    SetWindowMinSize(int width, +
    SetWindowMaxSize(int width, int height)
     
    static void
    -
    SetWindowMonitor(int monitor)
    +
    SetWindowMinSize(int width, + int height)
     
    static void
    -
    SetWindowOpacity(float opacity)
    +
    SetWindowMonitor(int monitor)
     
    static void
    -
    SetWindowPosition(int x, - int y)
    +
    SetWindowOpacity(float opacity)
     
    static void
    -
    SetWindowSize(int width, - int height)
    +
    SetWindowPosition(int x, + int y)
     
    static void
    -
    SetWindowState(int flags)
    +
    SetWindowSize(int width, + int height)
     
    static void
    - +
    SetWindowState(int flags)
     
    static void
    -
    SetWindowTitle(org.bytedeco.javacpp.BytePointer title)
    +
     
    static void
    - +
    SetWindowTitle(org.bytedeco.javacpp.BytePointer title)
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - -
     
    - - -
     
    - - +
     
    - - -
     
    - -
    subtract(Raylib.Vector4 lhs, - float rhs)
    -
     
    - - +
    static void
    +
     
    -
    subtractPut(Raylib.Matrix lhs, +
     
    -
    subtractPut(Raylib.Vector2 lhs, +
     
    -
    subtractPut(Raylib.Vector3 lhs, +
     
    -
    subtractPut(Raylib.Vector4 lhs, +
    subtract(Raylib.Vector4 lhs, float rhs)
     
    -
    subtractPut(Raylib.Vector4 lhs, +
     
    -
    static void
    - + + +
     
    + + +
     
    + + +
     
    + +
    subtractPut(Raylib.Vector4 lhs, + float rhs)
    +
     
    + +
     
    static void
    - +
     
    static void
    -
    TakeScreenshot(org.bytedeco.javacpp.BytePointer fileName)
    +
     
    static void
    -
    TextAppend(byte[] text, - String append, - int[] _position)
    +
    TakeScreenshot(org.bytedeco.javacpp.BytePointer fileName)
     
    static void
    -
    TextAppend(byte[] text, - org.bytedeco.javacpp.BytePointer append, +
    TextAppend(byte[] text, + String append, int[] _position)
     
    static void
    -
    TextAppend(ByteBuffer text, - String append, - IntBuffer _position)
    +
    TextAppend(byte[] text, + org.bytedeco.javacpp.BytePointer append, + int[] _position)
     
    static void
    -
    TextAppend(ByteBuffer text, - org.bytedeco.javacpp.BytePointer append, - IntBuffer _position)
    +
    TextAppend(ByteBuffer text, + String append, + IntBuffer _position)
     
    static void
    -
    TextAppend(org.bytedeco.javacpp.BytePointer text, - String append, - org.bytedeco.javacpp.IntPointer _position)
    +
    TextAppend(ByteBuffer text, + org.bytedeco.javacpp.BytePointer append, + IntBuffer _position)
     
    static void
    -
    TextAppend(org.bytedeco.javacpp.BytePointer text, +
    TextAppend(org.bytedeco.javacpp.BytePointer text, + String append, + org.bytedeco.javacpp.IntPointer _position)
    +
     
    +
    static void
    +
    TextAppend(org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.BytePointer append, org.bytedeco.javacpp.IntPointer _position)
    +
     
    +
    static int
    +
    TextCopy(byte[] dst, + String src)
     
    static int
    -
    TextCopy(byte[] dst, - String src)
    +
    TextCopy(byte[] dst, + org.bytedeco.javacpp.BytePointer src)
     
    static int
    -
    TextCopy(byte[] dst, - org.bytedeco.javacpp.BytePointer src)
    +
    TextCopy(ByteBuffer dst, + String src)
     
    static int
    -
    TextCopy(ByteBuffer dst, - String src)
    +
    TextCopy(ByteBuffer dst, + org.bytedeco.javacpp.BytePointer src)
     
    static int
    -
    TextCopy(ByteBuffer dst, - org.bytedeco.javacpp.BytePointer src)
    +
    TextCopy(org.bytedeco.javacpp.BytePointer dst, + String src)
     
    static int
    -
    TextCopy(org.bytedeco.javacpp.BytePointer dst, - String src)
    +
    TextCopy(org.bytedeco.javacpp.BytePointer dst, + org.bytedeco.javacpp.BytePointer src)
     
    static int
    -
    TextCopy(org.bytedeco.javacpp.BytePointer dst, - org.bytedeco.javacpp.BytePointer src)
    +
    TextFindIndex(String text, + String search)
     
    static int
    -
    TextFindIndex(String text, - String find)
    +
    TextFindIndex(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer search)
     
    -
    static int
    -
    TextFindIndex(org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.BytePointer find)
    +
    static String
    +
     
    -
    static String
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    TextFormat(org.bytedeco.javacpp.BytePointer text)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextFormat(org.bytedeco.javacpp.BytePointer text)
    +
    static ByteBuffer
    +
    TextInsert(String text, + String insert, + int _position)
     
    -
    static ByteBuffer
    -
    TextInsert(String text, - String insert, +
    static org.bytedeco.javacpp.BytePointer
    +
    TextInsert(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer insert, int _position)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextInsert(org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.BytePointer insert, +
    static ByteBuffer
    +
    TextInsertAlloc(String text, + String insert, int _position)
     
    -
    static boolean
    -
    TextIsEqual(String text1, - String text2)
    +
    static org.bytedeco.javacpp.BytePointer
    +
    TextInsertAlloc(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer insert, + int _position)
     
    static boolean
    -
    TextIsEqual(org.bytedeco.javacpp.BytePointer text1, +
    TextIsEqual(String text1, + String text2)
    +
     
    +
    static boolean
    +
    TextIsEqual(org.bytedeco.javacpp.BytePointer text1, org.bytedeco.javacpp.BytePointer text2)
    +
     
    +
    static byte[]
    +
    TextJoin(byte[] textList, + int count, + String delimiter)
     
    -
    static String
    -
    TextJoin(byte[] textList, +
    static byte[]
    +
    TextJoin(byte[] textList, int count, - String delimiter)
    + org.bytedeco.javacpp.BytePointer delimiter)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextJoin(byte[] textList, +
    static ByteBuffer
    +
    TextJoin(ByteBuffer textList, int count, - org.bytedeco.javacpp.BytePointer delimiter)
    + String delimiter)
     
    -
    static String
    -
    TextJoin(ByteBuffer textList, +
    static ByteBuffer
    +
    TextJoin(ByteBuffer textList, int count, - String delimiter)
    + org.bytedeco.javacpp.BytePointer delimiter)
     
    static org.bytedeco.javacpp.BytePointer
    -
    TextJoin(ByteBuffer textList, +
    TextJoin(org.bytedeco.javacpp.BytePointer textList, int count, - org.bytedeco.javacpp.BytePointer delimiter)
    + String delimiter)
     
    -
    static String
    -
    TextJoin(org.bytedeco.javacpp.BytePointer textList, +
    static org.bytedeco.javacpp.BytePointer
    +
    TextJoin(org.bytedeco.javacpp.BytePointer textList, int count, - String delimiter)
    + org.bytedeco.javacpp.BytePointer delimiter)
     
    static org.bytedeco.javacpp.BytePointer
    -
    TextJoin(org.bytedeco.javacpp.BytePointer textList, +
    TextJoin(org.bytedeco.javacpp.PointerPointer textList, int count, org.bytedeco.javacpp.BytePointer delimiter)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextJoin(org.bytedeco.javacpp.PointerPointer textList, - int count, - org.bytedeco.javacpp.BytePointer delimiter)
    +
    static int
    +
     
    static int
    - +
    TextLength(org.bytedeco.javacpp.BytePointer text)
     
    -
    static int
    -
    TextLength(org.bytedeco.javacpp.BytePointer text)
    +
    static String
    +
     
    -
    static ByteBuffer
    -
    TextReplace(String text, - String replace, - String by)
    +
    static org.bytedeco.javacpp.BytePointer
    +
    TextRemoveSpaces(org.bytedeco.javacpp.BytePointer text)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextReplace(org.bytedeco.javacpp.BytePointer text, - org.bytedeco.javacpp.BytePointer replace, - org.bytedeco.javacpp.BytePointer by)
    +
    static ByteBuffer
    +
    TextReplace(String text, + String search, + String replacement)
     
    -
    static byte[]
    -
    TextSplit(String text, - byte delimiter, - int[] count)
    +
    static org.bytedeco.javacpp.BytePointer
    +
    TextReplace(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer search, + org.bytedeco.javacpp.BytePointer replacement)
     
    -
    static ByteBuffer
    -
    TextSplit(String text, - byte delimiter, - IntBuffer count)
    +
    static ByteBuffer
    +
    TextReplaceAlloc(String text, + String search, + String replacement)
     
    static org.bytedeco.javacpp.BytePointer
    -
    TextSplit(String text, - byte delimiter, - org.bytedeco.javacpp.IntPointer count)
    +
    TextReplaceAlloc(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer search, + org.bytedeco.javacpp.BytePointer replacement)
    +
     
    +
    static ByteBuffer
    +
    TextReplaceBetween(String text, + String begin, + String end, + String replacement)
    +
     
    +
    static org.bytedeco.javacpp.BytePointer
    +
    TextReplaceBetween(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer begin, + org.bytedeco.javacpp.BytePointer end, + org.bytedeco.javacpp.BytePointer replacement)
    +
     
    +
    static ByteBuffer
    +
    TextReplaceBetweenAlloc(String text, + String begin, + String end, + String replacement)
    +
     
    +
    static org.bytedeco.javacpp.BytePointer
    +
    TextReplaceBetweenAlloc(org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.BytePointer begin, + org.bytedeco.javacpp.BytePointer end, + org.bytedeco.javacpp.BytePointer replacement)
     
    static byte[]
    -
    TextSplit(org.bytedeco.javacpp.BytePointer text, +
    TextSplit(String text, byte delimiter, int[] count)
     
    -
    static ByteBuffer
    -
    TextSplit(org.bytedeco.javacpp.BytePointer text, +
    static ByteBuffer
    +
    TextSplit(String text, byte delimiter, - IntBuffer count)
    + IntBuffer count)
     
    -
    static org.bytedeco.javacpp.PointerPointer
    -
    TextSplit(org.bytedeco.javacpp.BytePointer text, +
    static org.bytedeco.javacpp.BytePointer
    +
    TextSplit(String text, byte delimiter, org.bytedeco.javacpp.IntPointer count)
     
    -
    static String
    -
    TextSubtext(String text, - int _position, - int length)
    +
    static byte[]
    +
    TextSplit(org.bytedeco.javacpp.BytePointer text, + byte delimiter, + int[] count)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextSubtext(org.bytedeco.javacpp.BytePointer text, +
    static ByteBuffer
    +
    TextSplit(org.bytedeco.javacpp.BytePointer text, + byte delimiter, + IntBuffer count)
    +
     
    +
    static org.bytedeco.javacpp.PointerPointer
    +
    TextSplit(org.bytedeco.javacpp.BytePointer text, + byte delimiter, + org.bytedeco.javacpp.IntPointer count)
    +
     
    +
    static String
    +
    TextSubtext(String text, int _position, int length)
     
    -
    static String
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    TextSubtext(org.bytedeco.javacpp.BytePointer text, + int _position, + int length)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextToCamel(org.bytedeco.javacpp.BytePointer text)
    +
    static ByteBuffer
    +
     
    -
    static float
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    TextToCamel(org.bytedeco.javacpp.BytePointer text)
     
    static float
    -
    TextToFloat(org.bytedeco.javacpp.BytePointer text)
    +
     
    -
    static int
    - +
    static float
    +
    TextToFloat(org.bytedeco.javacpp.BytePointer text)
     
    static int
    -
    TextToInteger(org.bytedeco.javacpp.BytePointer text)
    +
     
    -
    static String
    - +
    static int
    +
    TextToInteger(org.bytedeco.javacpp.BytePointer text)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextToLower(org.bytedeco.javacpp.BytePointer text)
    +
    static ByteBuffer
    +
     
    -
    static String
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    TextToLower(org.bytedeco.javacpp.BytePointer text)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextToPascal(org.bytedeco.javacpp.BytePointer text)
    +
    static ByteBuffer
    +
     
    -
    static String
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    TextToPascal(org.bytedeco.javacpp.BytePointer text)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextToSnake(org.bytedeco.javacpp.BytePointer text)
    +
    static ByteBuffer
    +
     
    -
    static String
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    TextToSnake(org.bytedeco.javacpp.BytePointer text)
     
    -
    static org.bytedeco.javacpp.BytePointer
    -
    TextToUpper(org.bytedeco.javacpp.BytePointer text)
    +
    static ByteBuffer
    +
     
    -
    static void
    - +
    static org.bytedeco.javacpp.BytePointer
    +
    TextToUpper(org.bytedeco.javacpp.BytePointer text)
     
    static void
    - +
     
    static void
    -
    TraceLog(int logLevel, - String text)
    +
     
    static void
    -
    TraceLog(int logLevel, - org.bytedeco.javacpp.BytePointer text)
    +
    TraceLog(int logLevel, + String text)
     
    static void
    - +
    TraceLog(int logLevel, + org.bytedeco.javacpp.BytePointer text)
     
    static void
    - +
     
    static void
    -
    UnloadCodepoints(int[] codepoints)
    +
     
    static void
    - +
    UnloadCodepoints(int[] codepoints)
     
    static void
    -
    UnloadCodepoints(org.bytedeco.javacpp.IntPointer codepoints)
    +
     
    static void
    - +
    UnloadCodepoints(org.bytedeco.javacpp.IntPointer codepoints)
     
    static void
    - +
     
    static void
    -
    UnloadFileData(byte[] data)
    +
     
    static void
    - +
    UnloadFileData(byte[] data)
     
    static void
    -
    UnloadFileData(org.bytedeco.javacpp.BytePointer data)
    +
     
    static void
    -
    UnloadFileText(byte[] text)
    +
    UnloadFileData(org.bytedeco.javacpp.BytePointer data)
     
    static void
    - +
    UnloadFileText(byte[] text)
     
    static void
    -
    UnloadFileText(org.bytedeco.javacpp.BytePointer text)
    +
     
    static void
    - +
    UnloadFileText(org.bytedeco.javacpp.BytePointer text)
     
    static void
    -
    UnloadFontData(Raylib.GlyphInfo glyphs, - int glyphCount)
    +
     
    static void
    - +
    UnloadFontData(Raylib.GlyphInfo glyphs, + int glyphCount)
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    - +
     
    static void
    UnloadModelAnimations(Raylib.ModelAnimation animations, @@ -12191,7 +10310,7 @@

    Method Summary

    UnloadRandomSequence(int[] sequence)
     
    static void
    - +
     
    static void
    UnloadRandomSequence(org.bytedeco.javacpp.IntPointer sequence)
    @@ -12209,13 +10328,29 @@

    Method Summary

     
    static void
    +
    UnloadTextLines(byte[] text, + int lineCount)
    +
     
    +
    static void
    +
    UnloadTextLines(ByteBuffer text, + int lineCount)
    +
     
    +
    static void
    +
    UnloadTextLines(org.bytedeco.javacpp.BytePointer text, + int lineCount)
    +
     
    +
    static void
    +
    UnloadTextLines(org.bytedeco.javacpp.PointerPointer text, + int lineCount)
    +
     
    +
    static void
     
    static void
    UnloadUTF8(byte[] text)
     
    static void
    - +
     
    static void
    UnloadUTF8(org.bytedeco.javacpp.BytePointer text)
    @@ -12230,7 +10365,7 @@

    Method Summary

    UnloadWaveSamples(float[] samples)
     
    static void
    - +
     
    static void
    UnloadWaveSamples(org.bytedeco.javacpp.FloatPointer samples)
    @@ -12258,14 +10393,17 @@

    Method Summary

    int offset)
     
    static void
    -
    UpdateModelAnimation(Raylib.Model model, + + float frame)
     
    static void
    - +
    UpdateModelAnimationEx(Raylib.Model model, + Raylib.ModelAnimation animA, + float frameA, + Raylib.ModelAnimation animB, + float frameB, + float blend)
     
    static void
    @@ -12732,8 +10870,8 @@

    Method Summary

    Methods inherited from class com.raylib.RaylibConfig

    map
    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    @@ -12748,19 +10886,18 @@

    Field Details

  • RAYLIB_VERSION_MAJOR

    -
    public static final int RAYLIB_VERSION_MAJOR
    -
    raylib v5.6-dev - A simple and easy-to-use library to enjoy videogames programming (www.raylib.com) +
    raylib v6.0 - A simple and easy-to-use library to enjoy videogames programming (www.raylib.com) FEATURES: - NO external dependencies, all required libraries included with raylib - - Multiplatform: Windows, Linux, FreeBSD, OpenBSD, NetBSD, DragonFly, - MacOS, Haiku, Android, Raspberry Pi, DRM native, HTML5. + - Multiplatform: Windows, Linux, macOS, FreeBSD, Web, Android, Raspberry Pi, DRM native... - Written in plain C code (C99) in PascalCase/camelCase notation - Hardware accelerated with OpenGL (1.1, 2.1, 3.3, 4.3, ES2, ES3 - choose at compile) - - Unique OpenGL abstraction layer (usable as standalone module): [rlgl] + - Software renderer optional, for systems with no GPU: [rlsw] + - Custom OpenGL abstraction layer (usable as standalone module): [rlgl] - Multiple Fonts formats supported (TTF, OTF, FNT, BDF, Sprite fonts) - - Outstanding texture formats support, including compressed formats (DXT, ETC, ASTC) + - Many texture formats supported, including compressed formats (DXT, ETC, ASTC) - Full 3d support for 3d Shapes, Models, Billboards, Heightmaps and more! - Flexible Materials system, supporting classic maps and PBR maps - Animated 3D models supported (skeletal bones animation) (IQM, M3D, GLTF) @@ -12776,24 +10913,23 @@

    RAYLIB_VERSION_MAJOR

    - One default Shader is loaded on rlglInit()rlLoadShaderDefault() [rlgl] (OpenGL 3.3 or ES2) - One default RenderBatch is loaded on rlglInit()rlLoadRenderBatch() [rlgl] (OpenGL 3.3 or ES2) - DEPENDENCIES (included): - [rcore][GLFW] rglfw (Camilla Löwy - github.com/glfw/glfw) for window/context management and input - [rcore][RGFW] rgfw (ColleagueRiley - github.com/ColleagueRiley/RGFW) for window/context management and input - [rlgl] glad/glad_gles2 (David Herberth - github.com/Dav1dde/glad) for OpenGL 3.3 extensions loading + DEPENDENCIES: + [rcore] Depends on the selected platform backend, check rcore.c header for details + [rlgl] glad/glad_gles2 (David Herberth - github.com/Dav1dde/glad) for OpenGL extensions loading [raudio] miniaudio (David Reid - github.com/mackron/miniaudio) for audio device/context management OPTIONAL DEPENDENCIES (included): - [rcore] msf_gif (Miles Fogle) for GIF recording [rcore] sinfl (Micha Mettke) for DEFLATE decompression algorithm [rcore] sdefl (Micha Mettke) for DEFLATE compression algorithm - [rcore] rprand (Ramon Snatamaria) for pseudo-random numbers generation - [rtextures] qoi (Dominic Szablewski - https://phoboslab.org) for QOI image manage - [rtextures] stb_image (Sean Barret) for images loading (BMP, TGA, PNG, JPEG, HDR...) - [rtextures] stb_image_write (Sean Barret) for image writing (BMP, TGA, PNG, JPG) - [rtextures] stb_image_resize2 (Sean Barret) for image resizing algorithms - [rtextures] stb_perlin (Sean Barret) for Perlin Noise image generation - [rtext] stb_truetype (Sean Barret) for ttf fonts loading - [rtext] stb_rect_pack (Sean Barret) for rectangles packing + [rcore] rprand (Ramon Santamaria) for pseudo-random numbers generation + [rtextures] qoi (Dominic Szablewski - https://phoboslab.org) for QOI image management + [rtextures] stb_image (Sean Barrett) for images loading (BMP, TGA, PNG, JPEG, HDR...) + [rtextures] stb_image_write (Sean Barrett) for image writing (BMP, TGA, PNG, JPG) + [rtextures] stb_image_resize2 (Sean Barrett) for image resizing algorithms + [rtextures] stb_perlin (Sean Barrett) for Perlin Noise image generation + [rtextures] rltexgpu (Ramon Santamaria) for GPU-compressed texture formats + [rtext] stb_truetype (Sean Barrett) for ttf fonts loading + [rtext] stb_rect_pack (Sean Barrett) for rectangles packing [rmodels] par_shapes (Philip Rideout) for parametric 3d shapes generation [rmodels] tinyobj_loader_c (Syoyo Fujita) for models loading (OBJ, MTL) [rmodels] cgltf (Johannes Kuhlmann) for models loading (glTF) @@ -12802,10 +10938,10 @@

    RAYLIB_VERSION_MAJOR

    [raudio] dr_wav (David Reid) for WAV audio file loading [raudio] dr_flac (David Reid) for FLAC audio file loading [raudio] dr_mp3 (David Reid) for MP3 audio file loading - [raudio] stb_vorbis (Sean Barret) for OGG audio loading + [raudio] stb_vorbis (Sean Barrett) for OGG audio loading [raudio] jar_xm (Joshua Reisenauer) for XM audio module loading [raudio] jar_mod (Joshua Reisenauer) for MOD audio module loading - [raudio] qoa (Dominic Szablewski - https://phoboslab.org) for QOA audio manage + [raudio] qoa (Dominic Szablewski - https://phoboslab.org) for QOA audio management LICENSE: zlib/libpng @@ -12813,7 +10949,7 @@

    RAYLIB_VERSION_MAJOR

    raylib is licensed under an unmodified zlib/libpng license, which is an OSI-certified, BSD-like license that allows static linking with closed source software: - Copyright (c) 2013-2024 Ramon Santamaria (\raysan5) + Copyright (c) 2013-2026 Ramon Santamaria (\raysan5) This software is provided "as-is", without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -12837,13 +10973,11 @@

    RAYLIB_VERSION_MAJOR

    -
  • RAYLIB_VERSION_MINOR

    -
    public static final int RAYLIB_VERSION_MINOR
    See Also:
    @@ -12853,13 +10987,11 @@

    RAYLIB_VERSION_MINOR

    -
  • RAYLIB_VERSION_PATCH

    -
    public static final int RAYLIB_VERSION_PATCH
    See Also:
    @@ -12869,14 +11001,12 @@

    RAYLIB_VERSION_PATCH

    -
  • RAYLIB_VERSION

    -
    -
    public static final String RAYLIB_VERSION
    +
    public static final String RAYLIB_VERSION
    See Also:
    @@ -12885,13 +11015,11 @@

    RAYLIB_VERSION

    -
  • PI

    -
    public static final double PI
    See Also:
    @@ -12901,13 +11029,11 @@

    PI

    -
  • DEG2RAD

    -
    public static final double DEG2RAD
    See Also:
    @@ -12917,13 +11043,11 @@

    DEG2RAD

    -
  • RAD2DEG

    -
    public static final double RAD2DEG
    See Also:
    @@ -12933,13 +11057,11 @@

    RAD2DEG

    -
  • FLAG_VSYNC_HINT

    -
    public static final int FLAG_VSYNC_HINT
    enum ConfigFlags
    @@ -12950,13 +11072,11 @@

    FLAG_VSYNC_HINT

    -
  • FLAG_FULLSCREEN_MODE

    -
    public static final int FLAG_FULLSCREEN_MODE
    enum ConfigFlags
    @@ -12967,13 +11087,11 @@

    FLAG_FULLSCREEN_MODE

    -
  • FLAG_WINDOW_RESIZABLE

    -
    public static final int FLAG_WINDOW_RESIZABLE
    enum ConfigFlags
    @@ -12984,13 +11102,11 @@

    FLAG_WINDOW_RESIZABLE

    -
  • FLAG_WINDOW_UNDECORATED

    -
    public static final int FLAG_WINDOW_UNDECORATED
    enum ConfigFlags
    @@ -13001,13 +11117,11 @@

    FLAG_WINDOW_UNDECORATED

    -
  • FLAG_WINDOW_HIDDEN

    -
    public static final int FLAG_WINDOW_HIDDEN
    enum ConfigFlags
    @@ -13018,13 +11132,11 @@

    FLAG_WINDOW_HIDDEN

    -
  • FLAG_WINDOW_MINIMIZED

    -
    public static final int FLAG_WINDOW_MINIMIZED
    enum ConfigFlags
    @@ -13035,13 +11147,11 @@

    FLAG_WINDOW_MINIMIZED

    -
  • FLAG_WINDOW_MAXIMIZED

    -
    public static final int FLAG_WINDOW_MAXIMIZED
    enum ConfigFlags
    @@ -13052,13 +11162,11 @@

    FLAG_WINDOW_MAXIMIZED

    -
  • FLAG_WINDOW_UNFOCUSED

    -
    public static final int FLAG_WINDOW_UNFOCUSED
    enum ConfigFlags
    @@ -13069,13 +11177,11 @@

    FLAG_WINDOW_UNFOCUSED

    -
  • FLAG_WINDOW_TOPMOST

    -
    public static final int FLAG_WINDOW_TOPMOST
    enum ConfigFlags
    @@ -13086,13 +11192,11 @@

    FLAG_WINDOW_TOPMOST

    -
  • FLAG_WINDOW_ALWAYS_RUN

    -
    public static final int FLAG_WINDOW_ALWAYS_RUN
    enum ConfigFlags
    @@ -13103,13 +11207,11 @@

    FLAG_WINDOW_ALWAYS_RUN

    -
  • FLAG_WINDOW_TRANSPARENT

    -
    public static final int FLAG_WINDOW_TRANSPARENT
    enum ConfigFlags
    @@ -13120,13 +11222,11 @@

    FLAG_WINDOW_TRANSPARENT

    -
  • FLAG_WINDOW_HIGHDPI

    -
    public static final int FLAG_WINDOW_HIGHDPI
    enum ConfigFlags
    @@ -13137,13 +11237,11 @@

    FLAG_WINDOW_HIGHDPI

    -
  • FLAG_WINDOW_MOUSE_PASSTHROUGH

    -
    public static final int FLAG_WINDOW_MOUSE_PASSTHROUGH
    enum ConfigFlags
    @@ -13154,13 +11252,11 @@

    FLAG_WINDOW_MOUSE_PASSTHROUGH

    -
  • FLAG_BORDERLESS_WINDOWED_MODE

    -
    public static final int FLAG_BORDERLESS_WINDOWED_MODE
    enum ConfigFlags
    @@ -13171,13 +11267,11 @@

    FLAG_BORDERLESS_WINDOWED_MODE

    -
  • FLAG_MSAA_4X_HINT

    -
    public static final int FLAG_MSAA_4X_HINT
    enum ConfigFlags
    @@ -13188,13 +11282,11 @@

    FLAG_MSAA_4X_HINT

    -
  • FLAG_INTERLACED_HINT

    -
    public static final int FLAG_INTERLACED_HINT
    enum ConfigFlags
    @@ -13205,13 +11297,11 @@

    FLAG_INTERLACED_HINT

    -
  • LOG_ALL

    -
    public static final int LOG_ALL
    enum TraceLogLevel
    @@ -13222,13 +11312,11 @@

    LOG_ALL

    -
  • LOG_TRACE

    -
    public static final int LOG_TRACE
    enum TraceLogLevel
    @@ -13239,13 +11327,11 @@

    LOG_TRACE

    -
  • LOG_DEBUG

    -
    public static final int LOG_DEBUG
    enum TraceLogLevel
    @@ -13256,13 +11342,11 @@

    LOG_DEBUG

    -
  • LOG_INFO

    -
    public static final int LOG_INFO
    enum TraceLogLevel
    @@ -13273,13 +11357,11 @@

    LOG_INFO

    -
  • LOG_WARNING

    -
    public static final int LOG_WARNING
    enum TraceLogLevel
    @@ -13290,13 +11372,11 @@

    LOG_WARNING

    -
  • LOG_ERROR

    -
    public static final int LOG_ERROR
    enum TraceLogLevel
    @@ -13307,13 +11387,11 @@

    LOG_ERROR

    -
  • LOG_FATAL

    -
    public static final int LOG_FATAL
    enum TraceLogLevel
    @@ -13324,13 +11402,11 @@

    LOG_FATAL

    -
  • LOG_NONE

    -
    public static final int LOG_NONE
    enum TraceLogLevel
    @@ -13341,13 +11417,11 @@

    LOG_NONE

    -
  • KEY_NULL

    -
    public static final int KEY_NULL
    enum KeyboardKey
    @@ -13358,13 +11432,11 @@

    KEY_NULL

    -
  • KEY_APOSTROPHE

    -
    public static final int KEY_APOSTROPHE
    enum KeyboardKey
    @@ -13375,13 +11447,11 @@

    KEY_APOSTROPHE

    -
  • KEY_COMMA

    -
    public static final int KEY_COMMA
    enum KeyboardKey
    @@ -13392,13 +11462,11 @@

    KEY_COMMA

    -
  • KEY_MINUS

    -
    public static final int KEY_MINUS
    enum KeyboardKey
    @@ -13409,13 +11477,11 @@

    KEY_MINUS

    -
  • KEY_PERIOD

    -
    public static final int KEY_PERIOD
    enum KeyboardKey
    @@ -13426,13 +11492,11 @@

    KEY_PERIOD

    -
  • KEY_SLASH

    -
    public static final int KEY_SLASH
    enum KeyboardKey
    @@ -13443,13 +11507,11 @@

    KEY_SLASH

    -
  • KEY_ZERO

    -
    public static final int KEY_ZERO
    enum KeyboardKey
    @@ -13460,13 +11522,11 @@

    KEY_ZERO

    -
  • KEY_ONE

    -
    public static final int KEY_ONE
    enum KeyboardKey
    @@ -13477,13 +11537,11 @@

    KEY_ONE

    -
  • KEY_TWO

    -
    public static final int KEY_TWO
    enum KeyboardKey
    @@ -13494,13 +11552,11 @@

    KEY_TWO

    -
  • KEY_THREE

    -
    public static final int KEY_THREE
    enum KeyboardKey
    @@ -13511,13 +11567,11 @@

    KEY_THREE

    -
  • KEY_FOUR

    -
    public static final int KEY_FOUR
    enum KeyboardKey
    @@ -13528,13 +11582,11 @@

    KEY_FOUR

    -
  • KEY_FIVE

    -
    public static final int KEY_FIVE
    enum KeyboardKey
    @@ -13545,13 +11597,11 @@

    KEY_FIVE

    -
  • KEY_SIX

    -
    public static final int KEY_SIX
    enum KeyboardKey
    @@ -13562,13 +11612,11 @@

    KEY_SIX

    -
  • KEY_SEVEN

    -
    public static final int KEY_SEVEN
    enum KeyboardKey
    @@ -13579,13 +11627,11 @@

    KEY_SEVEN

    -
  • KEY_EIGHT

    -
    public static final int KEY_EIGHT
    enum KeyboardKey
    @@ -13596,13 +11642,11 @@

    KEY_EIGHT

    -
  • KEY_NINE

    -
    public static final int KEY_NINE
    enum KeyboardKey
    @@ -13613,13 +11657,11 @@

    KEY_NINE

    -
  • KEY_SEMICOLON

    -
    public static final int KEY_SEMICOLON
    enum KeyboardKey
    @@ -13630,13 +11672,11 @@

    KEY_SEMICOLON

    -
  • KEY_EQUAL

    -
    public static final int KEY_EQUAL
    enum KeyboardKey
    @@ -13647,13 +11687,11 @@

    KEY_EQUAL

    -
  • KEY_A

    -
    public static final int KEY_A
    enum KeyboardKey
    @@ -13664,13 +11702,11 @@

    KEY_A

    -
  • KEY_B

    -
    public static final int KEY_B
    enum KeyboardKey
    @@ -13681,13 +11717,11 @@

    KEY_B

    -
  • KEY_C

    -
    public static final int KEY_C
    enum KeyboardKey
    @@ -13698,13 +11732,11 @@

    KEY_C

    -
  • KEY_D

    -
    public static final int KEY_D
    enum KeyboardKey
    @@ -13715,13 +11747,11 @@

    KEY_D

    -
  • KEY_E

    -
    public static final int KEY_E
    enum KeyboardKey
    @@ -13732,13 +11762,11 @@

    KEY_E

    -
  • KEY_F

    -
    public static final int KEY_F
    enum KeyboardKey
    @@ -13749,13 +11777,11 @@

    KEY_F

    -
  • KEY_G

    -
    public static final int KEY_G
    enum KeyboardKey
    @@ -13766,13 +11792,11 @@

    KEY_G

    -
  • KEY_H

    -
    public static final int KEY_H
    enum KeyboardKey
    @@ -13783,13 +11807,11 @@

    KEY_H

    -
  • KEY_I

    -
    public static final int KEY_I
    enum KeyboardKey
    @@ -13800,13 +11822,11 @@

    KEY_I

    -
  • KEY_J

    -
    public static final int KEY_J
    enum KeyboardKey
    @@ -13817,13 +11837,11 @@

    KEY_J

    -
  • KEY_K

    -
    public static final int KEY_K
    enum KeyboardKey
    @@ -13834,13 +11852,11 @@

    KEY_K

    -
  • KEY_L

    -
    public static final int KEY_L
    enum KeyboardKey
    @@ -13851,13 +11867,11 @@

    KEY_L

    -
  • KEY_M

    -
    public static final int KEY_M
    enum KeyboardKey
    @@ -13868,13 +11882,11 @@

    KEY_M

    -
  • KEY_N

    -
    public static final int KEY_N
    enum KeyboardKey
    @@ -13885,13 +11897,11 @@

    KEY_N

    -
  • KEY_O

    -
    public static final int KEY_O
    enum KeyboardKey
    @@ -13902,13 +11912,11 @@

    KEY_O

    -
  • KEY_P

    -
    public static final int KEY_P
    enum KeyboardKey
    @@ -13919,13 +11927,11 @@

    KEY_P

    -
  • KEY_Q

    -
    public static final int KEY_Q
    enum KeyboardKey
    @@ -13936,13 +11942,11 @@

    KEY_Q

    -
  • KEY_R

    -
    public static final int KEY_R
    enum KeyboardKey
    @@ -13953,13 +11957,11 @@

    KEY_R

    -
  • KEY_S

    -
    public static final int KEY_S
    enum KeyboardKey
    @@ -13970,13 +11972,11 @@

    KEY_S

    -
  • KEY_T

    -
    public static final int KEY_T
    enum KeyboardKey
    @@ -13987,13 +11987,11 @@

    KEY_T

    -
  • KEY_U

    -
    public static final int KEY_U
    enum KeyboardKey
    @@ -14004,13 +12002,11 @@

    KEY_U

    -
  • KEY_V

    -
    public static final int KEY_V
    enum KeyboardKey
    @@ -14021,13 +12017,11 @@

    KEY_V

    -
  • KEY_W

    -
    public static final int KEY_W
    enum KeyboardKey
    @@ -14038,13 +12032,11 @@

    KEY_W

    -
  • KEY_X

    -
    public static final int KEY_X
    enum KeyboardKey
    @@ -14055,13 +12047,11 @@

    KEY_X

    -
  • KEY_Y

    -
    public static final int KEY_Y
    enum KeyboardKey
    @@ -14072,13 +12062,11 @@

    KEY_Y

    -
  • KEY_Z

    -
    public static final int KEY_Z
    enum KeyboardKey
    @@ -14089,13 +12077,11 @@

    KEY_Z

    -
  • KEY_LEFT_BRACKET

    -
    public static final int KEY_LEFT_BRACKET
    enum KeyboardKey
    @@ -14106,13 +12092,11 @@

    KEY_LEFT_BRACKET

    -
  • KEY_BACKSLASH

    -
    public static final int KEY_BACKSLASH
    enum KeyboardKey
    @@ -14123,13 +12107,11 @@

    KEY_BACKSLASH

    -
  • KEY_RIGHT_BRACKET

    -
    public static final int KEY_RIGHT_BRACKET
    enum KeyboardKey
    @@ -14140,13 +12122,11 @@

    KEY_RIGHT_BRACKET

    -
  • KEY_GRAVE

    -
    public static final int KEY_GRAVE
    enum KeyboardKey
    @@ -14157,13 +12137,11 @@

    KEY_GRAVE

    -
  • KEY_SPACE

    -
    public static final int KEY_SPACE
    enum KeyboardKey
    @@ -14174,13 +12152,11 @@

    KEY_SPACE

    -
  • KEY_ESCAPE

    -
    public static final int KEY_ESCAPE
    enum KeyboardKey
    @@ -14191,13 +12167,11 @@

    KEY_ESCAPE

    -
  • KEY_ENTER

    -
    public static final int KEY_ENTER
    enum KeyboardKey
    @@ -14208,13 +12182,11 @@

    KEY_ENTER

    -
  • KEY_TAB

    -
    public static final int KEY_TAB
    enum KeyboardKey
    @@ -14225,13 +12197,11 @@

    KEY_TAB

    -
  • KEY_BACKSPACE

    -
    public static final int KEY_BACKSPACE
    enum KeyboardKey
    @@ -14242,13 +12212,11 @@

    KEY_BACKSPACE

    -
  • KEY_INSERT

    -
    public static final int KEY_INSERT
    enum KeyboardKey
    @@ -14259,13 +12227,11 @@

    KEY_INSERT

    -
  • KEY_DELETE

    -
    public static final int KEY_DELETE
    enum KeyboardKey
    @@ -14276,13 +12242,11 @@

    KEY_DELETE

    -
  • KEY_RIGHT

    -
    public static final int KEY_RIGHT
    enum KeyboardKey
    @@ -14293,13 +12257,11 @@

    KEY_RIGHT

    -
  • KEY_LEFT

    -
    public static final int KEY_LEFT
    enum KeyboardKey
    @@ -14310,13 +12272,11 @@

    KEY_LEFT

    -
  • KEY_DOWN

    -
    public static final int KEY_DOWN
    enum KeyboardKey
    @@ -14327,13 +12287,11 @@

    KEY_DOWN

    -
  • KEY_UP

    -
    public static final int KEY_UP
    enum KeyboardKey
    @@ -14344,13 +12302,11 @@

    KEY_UP

    -
  • KEY_PAGE_UP

    -
    public static final int KEY_PAGE_UP
    enum KeyboardKey
    @@ -14361,13 +12317,11 @@

    KEY_PAGE_UP

    -
  • KEY_PAGE_DOWN

    -
    public static final int KEY_PAGE_DOWN
    enum KeyboardKey
    @@ -14378,13 +12332,11 @@

    KEY_PAGE_DOWN

    -
  • KEY_HOME

    -
    public static final int KEY_HOME
    enum KeyboardKey
    @@ -14395,13 +12347,11 @@

    KEY_HOME

    -
  • KEY_END

    -
    public static final int KEY_END
    enum KeyboardKey
    @@ -14412,13 +12362,11 @@

    KEY_END

    -
  • KEY_CAPS_LOCK

    -
    public static final int KEY_CAPS_LOCK
    enum KeyboardKey
    @@ -14429,13 +12377,11 @@

    KEY_CAPS_LOCK

    -
  • KEY_SCROLL_LOCK

    -
    public static final int KEY_SCROLL_LOCK
    enum KeyboardKey
    @@ -14446,13 +12392,11 @@

    KEY_SCROLL_LOCK

    -
  • KEY_NUM_LOCK

    -
    public static final int KEY_NUM_LOCK
    enum KeyboardKey
    @@ -14463,13 +12407,11 @@

    KEY_NUM_LOCK

    -
  • KEY_PRINT_SCREEN

    -
    public static final int KEY_PRINT_SCREEN
    enum KeyboardKey
    @@ -14480,13 +12422,11 @@

    KEY_PRINT_SCREEN

    -
  • KEY_PAUSE

    -
    public static final int KEY_PAUSE
    enum KeyboardKey
    @@ -14497,13 +12437,11 @@

    KEY_PAUSE

    -
  • KEY_F1

    -
    public static final int KEY_F1
    enum KeyboardKey
    @@ -14514,13 +12452,11 @@

    KEY_F1

    -
  • KEY_F2

    -
    public static final int KEY_F2
    enum KeyboardKey
    @@ -14531,13 +12467,11 @@

    KEY_F2

    -
  • KEY_F3

    -
    public static final int KEY_F3
    enum KeyboardKey
    @@ -14548,13 +12482,11 @@

    KEY_F3

    -
  • KEY_F4

    -
    public static final int KEY_F4
    enum KeyboardKey
    @@ -14565,13 +12497,11 @@

    KEY_F4

    -
  • KEY_F5

    -
    public static final int KEY_F5
    enum KeyboardKey
    @@ -14582,13 +12512,11 @@

    KEY_F5

    -
  • KEY_F6

    -
    public static final int KEY_F6
    enum KeyboardKey
    @@ -14599,13 +12527,11 @@

    KEY_F6

    -
  • KEY_F7

    -
    public static final int KEY_F7
    enum KeyboardKey
    @@ -14616,13 +12542,11 @@

    KEY_F7

    -
  • KEY_F8

    -
    public static final int KEY_F8
    enum KeyboardKey
    @@ -14633,13 +12557,11 @@

    KEY_F8

    -
  • KEY_F9

    -
    public static final int KEY_F9
    enum KeyboardKey
    @@ -14650,13 +12572,11 @@

    KEY_F9

    -
  • KEY_F10

    -
    public static final int KEY_F10
    enum KeyboardKey
    @@ -14667,13 +12587,11 @@

    KEY_F10

    -
  • KEY_F11

    -
    public static final int KEY_F11
    enum KeyboardKey
    @@ -14684,13 +12602,11 @@

    KEY_F11

    -
  • KEY_F12

    -
    public static final int KEY_F12
    enum KeyboardKey
    @@ -14701,13 +12617,11 @@

    KEY_F12

    -
  • KEY_LEFT_SHIFT

    -
    public static final int KEY_LEFT_SHIFT
    enum KeyboardKey
    @@ -14718,13 +12632,11 @@

    KEY_LEFT_SHIFT

    -
  • KEY_LEFT_CONTROL

    -
    public static final int KEY_LEFT_CONTROL
    enum KeyboardKey
    @@ -14735,13 +12647,11 @@

    KEY_LEFT_CONTROL

    -
  • KEY_LEFT_ALT

    -
    public static final int KEY_LEFT_ALT
    enum KeyboardKey
    @@ -14752,13 +12662,11 @@

    KEY_LEFT_ALT

    -
  • KEY_LEFT_SUPER

    -
    public static final int KEY_LEFT_SUPER
    enum KeyboardKey
    @@ -14769,13 +12677,11 @@

    KEY_LEFT_SUPER

    -
  • KEY_RIGHT_SHIFT

    -
    public static final int KEY_RIGHT_SHIFT
    enum KeyboardKey
    @@ -14786,13 +12692,11 @@

    KEY_RIGHT_SHIFT

    -
  • KEY_RIGHT_CONTROL

    -
    public static final int KEY_RIGHT_CONTROL
    enum KeyboardKey
    @@ -14803,13 +12707,11 @@

    KEY_RIGHT_CONTROL

    -
  • KEY_RIGHT_ALT

    -
    public static final int KEY_RIGHT_ALT
    enum KeyboardKey
    @@ -14820,13 +12722,11 @@

    KEY_RIGHT_ALT

    -
  • KEY_RIGHT_SUPER

    -
    public static final int KEY_RIGHT_SUPER
    enum KeyboardKey
    @@ -14837,13 +12737,11 @@

    KEY_RIGHT_SUPER

    -
  • KEY_KB_MENU

    -
    public static final int KEY_KB_MENU
    enum KeyboardKey
    @@ -14854,13 +12752,11 @@

    KEY_KB_MENU

    -
  • KEY_KP_0

    -
    public static final int KEY_KP_0
    enum KeyboardKey
    @@ -14871,13 +12767,11 @@

    KEY_KP_0

    -
  • KEY_KP_1

    -
    public static final int KEY_KP_1
    enum KeyboardKey
    @@ -14888,13 +12782,11 @@

    KEY_KP_1

    -
  • KEY_KP_2

    -
    public static final int KEY_KP_2
    enum KeyboardKey
    @@ -14905,13 +12797,11 @@

    KEY_KP_2

    -
  • KEY_KP_3

    -
    public static final int KEY_KP_3
    enum KeyboardKey
    @@ -14922,13 +12812,11 @@

    KEY_KP_3

    -
  • KEY_KP_4

    -
    public static final int KEY_KP_4
    enum KeyboardKey
    @@ -14939,13 +12827,11 @@

    KEY_KP_4

    -
  • KEY_KP_5

    -
    public static final int KEY_KP_5
    enum KeyboardKey
    @@ -14956,13 +12842,11 @@

    KEY_KP_5

    -
  • KEY_KP_6

    -
    public static final int KEY_KP_6
    enum KeyboardKey
    @@ -14973,13 +12857,11 @@

    KEY_KP_6

    -
  • KEY_KP_7

    -
    public static final int KEY_KP_7
    enum KeyboardKey
    @@ -14990,13 +12872,11 @@

    KEY_KP_7

    -
  • KEY_KP_8

    -
    public static final int KEY_KP_8
    enum KeyboardKey
    @@ -15007,13 +12887,11 @@

    KEY_KP_8

    -
  • KEY_KP_9

    -
    public static final int KEY_KP_9
    enum KeyboardKey
    @@ -15024,13 +12902,11 @@

    KEY_KP_9

    -
  • KEY_KP_DECIMAL

    -
    public static final int KEY_KP_DECIMAL
    enum KeyboardKey
    @@ -15041,13 +12917,11 @@

    KEY_KP_DECIMAL

    -
  • KEY_KP_DIVIDE

    -
    public static final int KEY_KP_DIVIDE
    enum KeyboardKey
    @@ -15058,13 +12932,11 @@

    KEY_KP_DIVIDE

    -
  • KEY_KP_MULTIPLY

    -
    public static final int KEY_KP_MULTIPLY
    enum KeyboardKey
    @@ -15075,13 +12947,11 @@

    KEY_KP_MULTIPLY

    -
  • KEY_KP_SUBTRACT

    -
    public static final int KEY_KP_SUBTRACT
    enum KeyboardKey
    @@ -15092,13 +12962,11 @@

    KEY_KP_SUBTRACT

    -
  • KEY_KP_ADD

    -
    public static final int KEY_KP_ADD
    enum KeyboardKey
    @@ -15109,13 +12977,11 @@

    KEY_KP_ADD

    -
  • KEY_KP_ENTER

    -
    public static final int KEY_KP_ENTER
    enum KeyboardKey
    @@ -15126,13 +12992,11 @@

    KEY_KP_ENTER

    -
  • KEY_KP_EQUAL

    -
    public static final int KEY_KP_EQUAL
    enum KeyboardKey
    @@ -15143,13 +13007,11 @@

    KEY_KP_EQUAL

    -
  • KEY_BACK

    -
    public static final int KEY_BACK
    enum KeyboardKey
    @@ -15160,13 +13022,11 @@

    KEY_BACK

    -
  • KEY_MENU

    -
    public static final int KEY_MENU
    enum KeyboardKey
    @@ -15177,13 +13037,11 @@

    KEY_MENU

    -
  • KEY_VOLUME_UP

    -
    public static final int KEY_VOLUME_UP
    enum KeyboardKey
    @@ -15194,13 +13052,11 @@

    KEY_VOLUME_UP

    -
  • KEY_VOLUME_DOWN

    -
    public static final int KEY_VOLUME_DOWN
    enum KeyboardKey
    @@ -15211,13 +13067,11 @@

    KEY_VOLUME_DOWN

    -
  • MOUSE_BUTTON_LEFT

    -
    public static final int MOUSE_BUTTON_LEFT
    enum MouseButton
    @@ -15228,13 +13082,11 @@

    MOUSE_BUTTON_LEFT

    -
  • MOUSE_BUTTON_RIGHT

    -
    public static final int MOUSE_BUTTON_RIGHT
    enum MouseButton
    @@ -15245,13 +13097,11 @@

    MOUSE_BUTTON_RIGHT

    -
  • MOUSE_BUTTON_MIDDLE

    -
    public static final int MOUSE_BUTTON_MIDDLE
    enum MouseButton
    @@ -15262,13 +13112,11 @@

    MOUSE_BUTTON_MIDDLE

    -
  • MOUSE_BUTTON_SIDE

    -
    public static final int MOUSE_BUTTON_SIDE
    enum MouseButton
    @@ -15279,13 +13127,11 @@

    MOUSE_BUTTON_SIDE

    -
  • MOUSE_BUTTON_EXTRA

    -
    public static final int MOUSE_BUTTON_EXTRA
    enum MouseButton
    @@ -15296,13 +13142,11 @@

    MOUSE_BUTTON_EXTRA

    -
  • MOUSE_BUTTON_FORWARD

    -
    public static final int MOUSE_BUTTON_FORWARD
    enum MouseButton
    @@ -15313,13 +13157,11 @@

    MOUSE_BUTTON_FORWARD

    -
  • MOUSE_BUTTON_BACK

    -
    public static final int MOUSE_BUTTON_BACK
    enum MouseButton
    @@ -15330,13 +13172,11 @@

    MOUSE_BUTTON_BACK

    -
  • MOUSE_CURSOR_DEFAULT

    -
    public static final int MOUSE_CURSOR_DEFAULT
    enum MouseCursor
    @@ -15347,13 +13187,11 @@

    MOUSE_CURSOR_DEFAULT

    -
  • MOUSE_CURSOR_ARROW

    -
    public static final int MOUSE_CURSOR_ARROW
    enum MouseCursor
    @@ -15364,13 +13202,11 @@

    MOUSE_CURSOR_ARROW

    -
  • MOUSE_CURSOR_IBEAM

    -
    public static final int MOUSE_CURSOR_IBEAM
    enum MouseCursor
    @@ -15381,13 +13217,11 @@

    MOUSE_CURSOR_IBEAM

    -
  • MOUSE_CURSOR_CROSSHAIR

    -
    public static final int MOUSE_CURSOR_CROSSHAIR
    enum MouseCursor
    @@ -15398,13 +13232,11 @@

    MOUSE_CURSOR_CROSSHAIR

    -
  • MOUSE_CURSOR_POINTING_HAND

    -
    public static final int MOUSE_CURSOR_POINTING_HAND
    enum MouseCursor
    @@ -15415,13 +13247,11 @@

    MOUSE_CURSOR_POINTING_HAND

    -
  • MOUSE_CURSOR_RESIZE_EW

    -
    public static final int MOUSE_CURSOR_RESIZE_EW
    enum MouseCursor
    @@ -15432,13 +13262,11 @@

    MOUSE_CURSOR_RESIZE_EW

    -
  • MOUSE_CURSOR_RESIZE_NS

    -
    public static final int MOUSE_CURSOR_RESIZE_NS
    enum MouseCursor
    @@ -15449,13 +13277,11 @@

    MOUSE_CURSOR_RESIZE_NS

    -
  • MOUSE_CURSOR_RESIZE_NWSE

    -
    public static final int MOUSE_CURSOR_RESIZE_NWSE
    enum MouseCursor
    @@ -15466,13 +13292,11 @@

    MOUSE_CURSOR_RESIZE_NWSE

    -
  • MOUSE_CURSOR_RESIZE_NESW

    -
    public static final int MOUSE_CURSOR_RESIZE_NESW
    enum MouseCursor
    @@ -15483,13 +13307,11 @@

    MOUSE_CURSOR_RESIZE_NESW

    -
  • MOUSE_CURSOR_RESIZE_ALL

    -
    public static final int MOUSE_CURSOR_RESIZE_ALL
    enum MouseCursor
    @@ -15500,13 +13322,11 @@

    MOUSE_CURSOR_RESIZE_ALL

    -
  • MOUSE_CURSOR_NOT_ALLOWED

    -
    public static final int MOUSE_CURSOR_NOT_ALLOWED
    enum MouseCursor
    @@ -15517,13 +13337,11 @@

    MOUSE_CURSOR_NOT_ALLOWED

    -
  • GAMEPAD_BUTTON_UNKNOWN

    -
    public static final int GAMEPAD_BUTTON_UNKNOWN
    enum GamepadButton
    @@ -15534,13 +13352,11 @@

    GAMEPAD_BUTTON_UNKNOWN

    -
  • GAMEPAD_BUTTON_LEFT_FACE_UP

    -
    public static final int GAMEPAD_BUTTON_LEFT_FACE_UP
    enum GamepadButton
    @@ -15551,13 +13367,11 @@

    GAMEPAD_BUTTON_LEFT_FACE_UP

    -
  • GAMEPAD_BUTTON_LEFT_FACE_RIGHT

    -
    public static final int GAMEPAD_BUTTON_LEFT_FACE_RIGHT
    enum GamepadButton
    @@ -15568,13 +13382,11 @@

    GAMEPAD_BUTTON_LEFT_FACE_RIGHT

    -
  • GAMEPAD_BUTTON_LEFT_FACE_DOWN

    -
    public static final int GAMEPAD_BUTTON_LEFT_FACE_DOWN
    enum GamepadButton
    @@ -15585,13 +13397,11 @@

    GAMEPAD_BUTTON_LEFT_FACE_DOWN

    -
  • GAMEPAD_BUTTON_LEFT_FACE_LEFT

    -
    public static final int GAMEPAD_BUTTON_LEFT_FACE_LEFT
    enum GamepadButton
    @@ -15602,13 +13412,11 @@

    GAMEPAD_BUTTON_LEFT_FACE_LEFT

    -
  • GAMEPAD_BUTTON_RIGHT_FACE_UP

    -
    public static final int GAMEPAD_BUTTON_RIGHT_FACE_UP
    enum GamepadButton
    @@ -15619,13 +13427,11 @@

    GAMEPAD_BUTTON_RIGHT_FACE_UP

    -
  • GAMEPAD_BUTTON_RIGHT_FACE_RIGHT

    -
    public static final int GAMEPAD_BUTTON_RIGHT_FACE_RIGHT
    enum GamepadButton
    @@ -15636,13 +13442,11 @@

    GAMEPAD_BUTTON_RIGHT_FACE_RIGHT

    -
  • GAMEPAD_BUTTON_RIGHT_FACE_DOWN

    -
    public static final int GAMEPAD_BUTTON_RIGHT_FACE_DOWN
    enum GamepadButton
    @@ -15653,13 +13457,11 @@

    GAMEPAD_BUTTON_RIGHT_FACE_DOWN

    -
  • GAMEPAD_BUTTON_RIGHT_FACE_LEFT

    -
    public static final int GAMEPAD_BUTTON_RIGHT_FACE_LEFT
    enum GamepadButton
    @@ -15670,13 +13472,11 @@

    GAMEPAD_BUTTON_RIGHT_FACE_LEFT

    -
  • GAMEPAD_BUTTON_LEFT_TRIGGER_1

    -
    public static final int GAMEPAD_BUTTON_LEFT_TRIGGER_1
    enum GamepadButton
    @@ -15687,13 +13487,11 @@

    GAMEPAD_BUTTON_LEFT_TRIGGER_1

    -
  • GAMEPAD_BUTTON_LEFT_TRIGGER_2

    -
    public static final int GAMEPAD_BUTTON_LEFT_TRIGGER_2
    enum GamepadButton
    @@ -15704,13 +13502,11 @@

    GAMEPAD_BUTTON_LEFT_TRIGGER_2

    -
  • GAMEPAD_BUTTON_RIGHT_TRIGGER_1

    -
    public static final int GAMEPAD_BUTTON_RIGHT_TRIGGER_1
    enum GamepadButton
    @@ -15721,13 +13517,11 @@

    GAMEPAD_BUTTON_RIGHT_TRIGGER_1

    -
  • GAMEPAD_BUTTON_RIGHT_TRIGGER_2

    -
    public static final int GAMEPAD_BUTTON_RIGHT_TRIGGER_2
    enum GamepadButton
    @@ -15738,13 +13532,11 @@

    GAMEPAD_BUTTON_RIGHT_TRIGGER_2

    -
  • GAMEPAD_BUTTON_MIDDLE_LEFT

    -
    public static final int GAMEPAD_BUTTON_MIDDLE_LEFT
    enum GamepadButton
    @@ -15755,13 +13547,11 @@

    GAMEPAD_BUTTON_MIDDLE_LEFT

    -
  • GAMEPAD_BUTTON_MIDDLE

    -
    public static final int GAMEPAD_BUTTON_MIDDLE
    enum GamepadButton
    @@ -15772,13 +13562,11 @@

    GAMEPAD_BUTTON_MIDDLE

    -
  • GAMEPAD_BUTTON_MIDDLE_RIGHT

    -
    public static final int GAMEPAD_BUTTON_MIDDLE_RIGHT
    enum GamepadButton
    @@ -15789,13 +13577,11 @@

    GAMEPAD_BUTTON_MIDDLE_RIGHT

    -
  • GAMEPAD_BUTTON_LEFT_THUMB

    -
    public static final int GAMEPAD_BUTTON_LEFT_THUMB
    enum GamepadButton
    @@ -15806,13 +13592,11 @@

    GAMEPAD_BUTTON_LEFT_THUMB

    -
  • GAMEPAD_BUTTON_RIGHT_THUMB

    -
    public static final int GAMEPAD_BUTTON_RIGHT_THUMB
    enum GamepadButton
    @@ -15823,13 +13607,11 @@

    GAMEPAD_BUTTON_RIGHT_THUMB

    -
  • GAMEPAD_AXIS_LEFT_X

    -
    public static final int GAMEPAD_AXIS_LEFT_X
    enum GamepadAxis
    @@ -15840,13 +13622,11 @@

    GAMEPAD_AXIS_LEFT_X

    -
  • GAMEPAD_AXIS_LEFT_Y

    -
    public static final int GAMEPAD_AXIS_LEFT_Y
    enum GamepadAxis
    @@ -15857,13 +13637,11 @@

    GAMEPAD_AXIS_LEFT_Y

    -
  • GAMEPAD_AXIS_RIGHT_X

    -
    public static final int GAMEPAD_AXIS_RIGHT_X
    enum GamepadAxis
    @@ -15874,13 +13652,11 @@

    GAMEPAD_AXIS_RIGHT_X

    -
  • GAMEPAD_AXIS_RIGHT_Y

    -
    public static final int GAMEPAD_AXIS_RIGHT_Y
    enum GamepadAxis
    @@ -15891,13 +13667,11 @@

    GAMEPAD_AXIS_RIGHT_Y

    -
  • GAMEPAD_AXIS_LEFT_TRIGGER

    -
    public static final int GAMEPAD_AXIS_LEFT_TRIGGER
    enum GamepadAxis
    @@ -15908,13 +13682,11 @@

    GAMEPAD_AXIS_LEFT_TRIGGER

    -
  • GAMEPAD_AXIS_RIGHT_TRIGGER

    -
    public static final int GAMEPAD_AXIS_RIGHT_TRIGGER
    enum GamepadAxis
    @@ -15925,13 +13697,11 @@

    GAMEPAD_AXIS_RIGHT_TRIGGER

    -
  • MATERIAL_MAP_ALBEDO

    -
    public static final int MATERIAL_MAP_ALBEDO
    enum MaterialMapIndex
    @@ -15942,13 +13712,11 @@

    MATERIAL_MAP_ALBEDO

    -
  • MATERIAL_MAP_METALNESS

    -
    public static final int MATERIAL_MAP_METALNESS
    enum MaterialMapIndex
    @@ -15959,13 +13727,11 @@

    MATERIAL_MAP_METALNESS

    -
  • MATERIAL_MAP_NORMAL

    -
    public static final int MATERIAL_MAP_NORMAL
    enum MaterialMapIndex
    @@ -15976,13 +13742,11 @@

    MATERIAL_MAP_NORMAL

    -
  • MATERIAL_MAP_ROUGHNESS

    -
    public static final int MATERIAL_MAP_ROUGHNESS
    enum MaterialMapIndex
    @@ -15993,13 +13757,11 @@

    MATERIAL_MAP_ROUGHNESS

    -
  • MATERIAL_MAP_OCCLUSION

    -
    public static final int MATERIAL_MAP_OCCLUSION
    enum MaterialMapIndex
    @@ -16010,13 +13772,11 @@

    MATERIAL_MAP_OCCLUSION

    -
  • MATERIAL_MAP_EMISSION

    -
    public static final int MATERIAL_MAP_EMISSION
    enum MaterialMapIndex
    @@ -16027,13 +13787,11 @@

    MATERIAL_MAP_EMISSION

    -
  • MATERIAL_MAP_HEIGHT

    -
    public static final int MATERIAL_MAP_HEIGHT
    enum MaterialMapIndex
    @@ -16044,13 +13802,11 @@

    MATERIAL_MAP_HEIGHT

    -
  • MATERIAL_MAP_CUBEMAP

    -
    public static final int MATERIAL_MAP_CUBEMAP
    enum MaterialMapIndex
    @@ -16061,13 +13817,11 @@

    MATERIAL_MAP_CUBEMAP

    -
  • MATERIAL_MAP_IRRADIANCE

    -
    public static final int MATERIAL_MAP_IRRADIANCE
    enum MaterialMapIndex
    @@ -16078,13 +13832,11 @@

    MATERIAL_MAP_IRRADIANCE

    -
  • MATERIAL_MAP_PREFILTER

    -
    public static final int MATERIAL_MAP_PREFILTER
    enum MaterialMapIndex
    @@ -16095,13 +13847,11 @@

    MATERIAL_MAP_PREFILTER

    -
  • MATERIAL_MAP_BRDF

    -
    public static final int MATERIAL_MAP_BRDF
    enum MaterialMapIndex
    @@ -16112,13 +13862,11 @@

    MATERIAL_MAP_BRDF

    -
  • MATERIAL_MAP_DIFFUSE

    -
    public static final int MATERIAL_MAP_DIFFUSE
    See Also:
    @@ -16128,13 +13876,11 @@

    MATERIAL_MAP_DIFFUSE

    -
  • MATERIAL_MAP_SPECULAR

    -
    public static final int MATERIAL_MAP_SPECULAR
    See Also:
    @@ -16144,13 +13890,11 @@

    MATERIAL_MAP_SPECULAR

    -
  • SHADER_LOC_VERTEX_POSITION

    -
    public static final int SHADER_LOC_VERTEX_POSITION
    enum ShaderLocationIndex
    @@ -16161,13 +13905,11 @@

    SHADER_LOC_VERTEX_POSITION

    -
  • SHADER_LOC_VERTEX_TEXCOORD01

    -
    public static final int SHADER_LOC_VERTEX_TEXCOORD01
    enum ShaderLocationIndex
    @@ -16178,13 +13920,11 @@

    SHADER_LOC_VERTEX_TEXCOORD01

    -
  • SHADER_LOC_VERTEX_TEXCOORD02

    -
    public static final int SHADER_LOC_VERTEX_TEXCOORD02
    enum ShaderLocationIndex
    @@ -16195,13 +13935,11 @@

    SHADER_LOC_VERTEX_TEXCOORD02

    -
  • SHADER_LOC_VERTEX_NORMAL

    -
    public static final int SHADER_LOC_VERTEX_NORMAL
    enum ShaderLocationIndex
    @@ -16212,13 +13950,11 @@

    SHADER_LOC_VERTEX_NORMAL

    -
  • SHADER_LOC_VERTEX_TANGENT

    -
    public static final int SHADER_LOC_VERTEX_TANGENT
    enum ShaderLocationIndex
    @@ -16229,13 +13965,11 @@

    SHADER_LOC_VERTEX_TANGENT

    -
  • SHADER_LOC_VERTEX_COLOR

    -
    public static final int SHADER_LOC_VERTEX_COLOR
    enum ShaderLocationIndex
    @@ -16246,13 +13980,11 @@

    SHADER_LOC_VERTEX_COLOR

    -
  • SHADER_LOC_MATRIX_MVP

    -
    public static final int SHADER_LOC_MATRIX_MVP
    enum ShaderLocationIndex
    @@ -16263,13 +13995,11 @@

    SHADER_LOC_MATRIX_MVP

    -
  • SHADER_LOC_MATRIX_VIEW

    -
    public static final int SHADER_LOC_MATRIX_VIEW
    enum ShaderLocationIndex
    @@ -16280,13 +14010,11 @@

    SHADER_LOC_MATRIX_VIEW

    -
  • SHADER_LOC_MATRIX_PROJECTION

    -
    public static final int SHADER_LOC_MATRIX_PROJECTION
    enum ShaderLocationIndex
    @@ -16297,13 +14025,11 @@

    SHADER_LOC_MATRIX_PROJECTION

    -
  • SHADER_LOC_MATRIX_MODEL

    -
    public static final int SHADER_LOC_MATRIX_MODEL
    enum ShaderLocationIndex
    @@ -16314,13 +14040,11 @@

    SHADER_LOC_MATRIX_MODEL

    -
  • SHADER_LOC_MATRIX_NORMAL

    -
    public static final int SHADER_LOC_MATRIX_NORMAL
    enum ShaderLocationIndex
    @@ -16331,13 +14055,11 @@

    SHADER_LOC_MATRIX_NORMAL

    -
  • SHADER_LOC_VECTOR_VIEW

    -
    public static final int SHADER_LOC_VECTOR_VIEW
    enum ShaderLocationIndex
    @@ -16348,13 +14070,11 @@

    SHADER_LOC_VECTOR_VIEW

    -
  • SHADER_LOC_COLOR_DIFFUSE

    -
    public static final int SHADER_LOC_COLOR_DIFFUSE
    enum ShaderLocationIndex
    @@ -16365,13 +14085,11 @@

    SHADER_LOC_COLOR_DIFFUSE

    -
  • SHADER_LOC_COLOR_SPECULAR

    -
    public static final int SHADER_LOC_COLOR_SPECULAR
    enum ShaderLocationIndex
    @@ -16382,13 +14100,11 @@

    SHADER_LOC_COLOR_SPECULAR

    -
  • SHADER_LOC_COLOR_AMBIENT

    -
    public static final int SHADER_LOC_COLOR_AMBIENT
    enum ShaderLocationIndex
    @@ -16399,13 +14115,11 @@

    SHADER_LOC_COLOR_AMBIENT

    -
  • SHADER_LOC_MAP_ALBEDO

    -
    public static final int SHADER_LOC_MAP_ALBEDO
    enum ShaderLocationIndex
    @@ -16416,13 +14130,11 @@

    SHADER_LOC_MAP_ALBEDO

    -
  • SHADER_LOC_MAP_METALNESS

    -
    public static final int SHADER_LOC_MAP_METALNESS
    enum ShaderLocationIndex
    @@ -16433,13 +14145,11 @@

    SHADER_LOC_MAP_METALNESS

    -
  • SHADER_LOC_MAP_NORMAL

    -
    public static final int SHADER_LOC_MAP_NORMAL
    enum ShaderLocationIndex
    @@ -16450,13 +14160,11 @@

    SHADER_LOC_MAP_NORMAL

    -
  • SHADER_LOC_MAP_ROUGHNESS

    -
    public static final int SHADER_LOC_MAP_ROUGHNESS
    enum ShaderLocationIndex
    @@ -16467,13 +14175,11 @@

    SHADER_LOC_MAP_ROUGHNESS

    -
  • SHADER_LOC_MAP_OCCLUSION

    -
    public static final int SHADER_LOC_MAP_OCCLUSION
    enum ShaderLocationIndex
    @@ -16484,13 +14190,11 @@

    SHADER_LOC_MAP_OCCLUSION

    -
  • SHADER_LOC_MAP_EMISSION

    -
    public static final int SHADER_LOC_MAP_EMISSION
    enum ShaderLocationIndex
    @@ -16501,13 +14205,11 @@

    SHADER_LOC_MAP_EMISSION

    -
  • SHADER_LOC_MAP_HEIGHT

    -
    public static final int SHADER_LOC_MAP_HEIGHT
    enum ShaderLocationIndex
    @@ -16518,13 +14220,11 @@

    SHADER_LOC_MAP_HEIGHT

    -
  • SHADER_LOC_MAP_CUBEMAP

    -
    public static final int SHADER_LOC_MAP_CUBEMAP
    enum ShaderLocationIndex
    @@ -16535,13 +14235,11 @@

    SHADER_LOC_MAP_CUBEMAP

    -
  • SHADER_LOC_MAP_IRRADIANCE

    -
    public static final int SHADER_LOC_MAP_IRRADIANCE
    enum ShaderLocationIndex
    @@ -16552,13 +14250,11 @@

    SHADER_LOC_MAP_IRRADIANCE

    -
  • SHADER_LOC_MAP_PREFILTER

    -
    public static final int SHADER_LOC_MAP_PREFILTER
    enum ShaderLocationIndex
    @@ -16569,13 +14265,11 @@

    SHADER_LOC_MAP_PREFILTER

    -
  • SHADER_LOC_MAP_BRDF

    -
    public static final int SHADER_LOC_MAP_BRDF
    enum ShaderLocationIndex
    @@ -16586,13 +14280,11 @@

    SHADER_LOC_MAP_BRDF

    -
  • SHADER_LOC_VERTEX_BONEIDS

    -
    public static final int SHADER_LOC_VERTEX_BONEIDS
    enum ShaderLocationIndex
    @@ -16603,13 +14295,11 @@

    SHADER_LOC_VERTEX_BONEIDS

    -
  • SHADER_LOC_VERTEX_BONEWEIGHTS

    -
    public static final int SHADER_LOC_VERTEX_BONEWEIGHTS
    enum ShaderLocationIndex
    @@ -16620,30 +14310,41 @@

    SHADER_LOC_VERTEX_BONEWEIGHTS

    -
  • -
    -

    SHADER_LOC_BONE_MATRICES

    -
    -
    public static final int SHADER_LOC_BONE_MATRICES
    +
    +

    SHADER_LOC_MATRIX_BONETRANSFORMS

    +
    public static final int SHADER_LOC_MATRIX_BONETRANSFORMS
    enum ShaderLocationIndex
    See Also:
    +
    +
    +
    +
  • +
  • +
    +

    SHADER_LOC_VERTEX_INSTANCETRANSFORM

    +
    public static final int SHADER_LOC_VERTEX_INSTANCETRANSFORM
    +
    enum ShaderLocationIndex
    +
    +
    See Also:
    +
    +
    -
  • SHADER_LOC_MAP_DIFFUSE

    -
    public static final int SHADER_LOC_MAP_DIFFUSE
    See Also:
    @@ -16653,13 +14354,11 @@

    SHADER_LOC_MAP_DIFFUSE

    -
  • SHADER_LOC_MAP_SPECULAR

    -
    public static final int SHADER_LOC_MAP_SPECULAR
    See Also:
    @@ -16669,13 +14368,11 @@

    SHADER_LOC_MAP_SPECULAR

    -
  • SHADER_UNIFORM_FLOAT

    -
    public static final int SHADER_UNIFORM_FLOAT
    enum ShaderUniformDataType
    @@ -16686,13 +14383,11 @@

    SHADER_UNIFORM_FLOAT

    -
  • SHADER_UNIFORM_VEC2

    -
    public static final int SHADER_UNIFORM_VEC2
    enum ShaderUniformDataType
    @@ -16703,13 +14398,11 @@

    SHADER_UNIFORM_VEC2

    -
  • SHADER_UNIFORM_VEC3

    -
    public static final int SHADER_UNIFORM_VEC3
    enum ShaderUniformDataType
    @@ -16720,13 +14413,11 @@

    SHADER_UNIFORM_VEC3

    -
  • SHADER_UNIFORM_VEC4

    -
    public static final int SHADER_UNIFORM_VEC4
    enum ShaderUniformDataType
    @@ -16737,13 +14428,11 @@

    SHADER_UNIFORM_VEC4

    -
  • SHADER_UNIFORM_INT

    -
    public static final int SHADER_UNIFORM_INT
    enum ShaderUniformDataType
    @@ -16754,13 +14443,11 @@

    SHADER_UNIFORM_INT

    -
  • SHADER_UNIFORM_IVEC2

    -
    public static final int SHADER_UNIFORM_IVEC2
    enum ShaderUniformDataType
    @@ -16771,13 +14458,11 @@

    SHADER_UNIFORM_IVEC2

    -
  • SHADER_UNIFORM_IVEC3

    -
    public static final int SHADER_UNIFORM_IVEC3
    enum ShaderUniformDataType
    @@ -16788,13 +14473,11 @@

    SHADER_UNIFORM_IVEC3

    -
  • SHADER_UNIFORM_IVEC4

    -
    public static final int SHADER_UNIFORM_IVEC4
    enum ShaderUniformDataType
    @@ -16805,13 +14488,71 @@

    SHADER_UNIFORM_IVEC4

    -
    +
    +
  • +
  • +
    +

    SHADER_UNIFORM_UINT

    +
    public static final int SHADER_UNIFORM_UINT
    +
    enum ShaderUniformDataType
    +
    +
    See Also:
    +
    + +
    +
    +
    +
  • +
  • +
    +

    SHADER_UNIFORM_UIVEC2

    +
    public static final int SHADER_UNIFORM_UIVEC2
    +
    enum ShaderUniformDataType
    +
    +
    See Also:
    +
    + +
    +
    +
    +
  • +
  • +
    +

    SHADER_UNIFORM_UIVEC3

    +
    public static final int SHADER_UNIFORM_UIVEC3
    +
    enum ShaderUniformDataType
    +
    +
    See Also:
    +
    + +
    +
    +
    +
  • +
  • +
    +

    SHADER_UNIFORM_UIVEC4

    +
    public static final int SHADER_UNIFORM_UIVEC4
    +
    enum ShaderUniformDataType
    +
    +
    See Also:
    +
    + +
    +
  • SHADER_UNIFORM_SAMPLER2D

    -
    public static final int SHADER_UNIFORM_SAMPLER2D
    enum ShaderUniformDataType
    @@ -16822,13 +14563,11 @@

    SHADER_UNIFORM_SAMPLER2D

    -
  • SHADER_ATTRIB_FLOAT

    -
    public static final int SHADER_ATTRIB_FLOAT
    enum ShaderAttributeDataType
    @@ -16839,13 +14578,11 @@

    SHADER_ATTRIB_FLOAT

    -
  • SHADER_ATTRIB_VEC2

    -
    public static final int SHADER_ATTRIB_VEC2
    enum ShaderAttributeDataType
    @@ -16856,13 +14593,11 @@

    SHADER_ATTRIB_VEC2

    -
  • SHADER_ATTRIB_VEC3

    -
    public static final int SHADER_ATTRIB_VEC3
    enum ShaderAttributeDataType
    @@ -16873,13 +14608,11 @@

    SHADER_ATTRIB_VEC3

    -
  • SHADER_ATTRIB_VEC4

    -
    public static final int SHADER_ATTRIB_VEC4
    enum ShaderAttributeDataType
    @@ -16890,13 +14623,11 @@

    SHADER_ATTRIB_VEC4

    -
  • PIXELFORMAT_UNCOMPRESSED_GRAYSCALE

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_GRAYSCALE
    enum PixelFormat
    @@ -16907,13 +14638,11 @@

    PIXELFORMAT_UNCOMPRESSED_GRAYSCALE

    -
  • PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA
    enum PixelFormat
    @@ -16924,13 +14653,11 @@

    PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA

    -
  • PIXELFORMAT_UNCOMPRESSED_R5G6B5

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R5G6B5
    enum PixelFormat
    @@ -16941,13 +14668,11 @@

    PIXELFORMAT_UNCOMPRESSED_R5G6B5

    -
  • PIXELFORMAT_UNCOMPRESSED_R8G8B8

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R8G8B8
    enum PixelFormat
    @@ -16958,13 +14683,11 @@

    PIXELFORMAT_UNCOMPRESSED_R8G8B8

    -
  • PIXELFORMAT_UNCOMPRESSED_R5G5B5A1

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R5G5B5A1
    enum PixelFormat
    @@ -16975,13 +14698,11 @@

    PIXELFORMAT_UNCOMPRESSED_R5G5B5A1

    -
  • PIXELFORMAT_UNCOMPRESSED_R4G4B4A4

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R4G4B4A4
    enum PixelFormat
    @@ -16992,13 +14713,11 @@

    PIXELFORMAT_UNCOMPRESSED_R4G4B4A4

    -
  • PIXELFORMAT_UNCOMPRESSED_R8G8B8A8

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R8G8B8A8
    enum PixelFormat
    @@ -17009,13 +14728,11 @@

    PIXELFORMAT_UNCOMPRESSED_R8G8B8A8

    -
  • PIXELFORMAT_UNCOMPRESSED_R32

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R32
    enum PixelFormat
    @@ -17026,13 +14743,11 @@

    PIXELFORMAT_UNCOMPRESSED_R32

    -
  • PIXELFORMAT_UNCOMPRESSED_R32G32B32

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R32G32B32
    enum PixelFormat
    @@ -17043,13 +14758,11 @@

    PIXELFORMAT_UNCOMPRESSED_R32G32B32

    -
  • PIXELFORMAT_UNCOMPRESSED_R32G32B32A32

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R32G32B32A32
    enum PixelFormat
    @@ -17060,13 +14773,11 @@

    PIXELFORMAT_UNCOMPRESSED_R32G32B32A32

    -
  • PIXELFORMAT_UNCOMPRESSED_R16

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R16
    enum PixelFormat
    @@ -17077,13 +14788,11 @@

    PIXELFORMAT_UNCOMPRESSED_R16

    -
  • PIXELFORMAT_UNCOMPRESSED_R16G16B16

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R16G16B16
    enum PixelFormat
    @@ -17094,13 +14803,11 @@

    PIXELFORMAT_UNCOMPRESSED_R16G16B16

    -
  • PIXELFORMAT_UNCOMPRESSED_R16G16B16A16

    -
    public static final int PIXELFORMAT_UNCOMPRESSED_R16G16B16A16
    enum PixelFormat
    @@ -17111,13 +14818,11 @@

    PIXELFORMAT_UNCOMPRESSED_R16G16B16A16

    -
  • PIXELFORMAT_COMPRESSED_DXT1_RGB

    -
    public static final int PIXELFORMAT_COMPRESSED_DXT1_RGB
    enum PixelFormat
    @@ -17128,13 +14833,11 @@

    PIXELFORMAT_COMPRESSED_DXT1_RGB

    -
  • PIXELFORMAT_COMPRESSED_DXT1_RGBA

    -
    public static final int PIXELFORMAT_COMPRESSED_DXT1_RGBA
    enum PixelFormat
    @@ -17145,13 +14848,11 @@

    PIXELFORMAT_COMPRESSED_DXT1_RGBA

    -
  • PIXELFORMAT_COMPRESSED_DXT3_RGBA

    -
    public static final int PIXELFORMAT_COMPRESSED_DXT3_RGBA
    enum PixelFormat
    @@ -17162,13 +14863,11 @@

    PIXELFORMAT_COMPRESSED_DXT3_RGBA

    -
  • PIXELFORMAT_COMPRESSED_DXT5_RGBA

    -
    public static final int PIXELFORMAT_COMPRESSED_DXT5_RGBA
    enum PixelFormat
    @@ -17179,13 +14878,11 @@

    PIXELFORMAT_COMPRESSED_DXT5_RGBA

    -
  • PIXELFORMAT_COMPRESSED_ETC1_RGB

    -
    public static final int PIXELFORMAT_COMPRESSED_ETC1_RGB
    enum PixelFormat
    @@ -17196,13 +14893,11 @@

    PIXELFORMAT_COMPRESSED_ETC1_RGB

    -
  • PIXELFORMAT_COMPRESSED_ETC2_RGB

    -
    public static final int PIXELFORMAT_COMPRESSED_ETC2_RGB
    enum PixelFormat
    @@ -17213,13 +14908,11 @@

    PIXELFORMAT_COMPRESSED_ETC2_RGB

    -
  • PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA

    -
    public static final int PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA
    enum PixelFormat
    @@ -17230,13 +14923,11 @@

    PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA

    -
  • PIXELFORMAT_COMPRESSED_PVRT_RGB

    -
    public static final int PIXELFORMAT_COMPRESSED_PVRT_RGB
    enum PixelFormat
    @@ -17247,13 +14938,11 @@

    PIXELFORMAT_COMPRESSED_PVRT_RGB

    -
  • PIXELFORMAT_COMPRESSED_PVRT_RGBA

    -
    public static final int PIXELFORMAT_COMPRESSED_PVRT_RGBA
    enum PixelFormat
    @@ -17264,13 +14953,11 @@

    PIXELFORMAT_COMPRESSED_PVRT_RGBA

    -
  • PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA

    -
    public static final int PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA
    enum PixelFormat
    @@ -17281,13 +14968,11 @@

    PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA

    -
  • PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA

    -
    public static final int PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA
    enum PixelFormat
    @@ -17298,13 +14983,11 @@

    PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA

    -
  • TEXTURE_FILTER_POINT

    -
    public static final int TEXTURE_FILTER_POINT
    enum TextureFilter
    @@ -17315,13 +14998,11 @@

    TEXTURE_FILTER_POINT

    -
  • TEXTURE_FILTER_BILINEAR

    -
    public static final int TEXTURE_FILTER_BILINEAR
    enum TextureFilter
    @@ -17332,13 +15013,11 @@

    TEXTURE_FILTER_BILINEAR

    -
  • TEXTURE_FILTER_TRILINEAR

    -
    public static final int TEXTURE_FILTER_TRILINEAR
    enum TextureFilter
    @@ -17349,13 +15028,11 @@

    TEXTURE_FILTER_TRILINEAR

    -
  • TEXTURE_FILTER_ANISOTROPIC_4X

    -
    public static final int TEXTURE_FILTER_ANISOTROPIC_4X
    enum TextureFilter
    @@ -17366,13 +15043,11 @@

    TEXTURE_FILTER_ANISOTROPIC_4X

    -
  • TEXTURE_FILTER_ANISOTROPIC_8X

    -
    public static final int TEXTURE_FILTER_ANISOTROPIC_8X
    enum TextureFilter
    @@ -17383,13 +15058,11 @@

    TEXTURE_FILTER_ANISOTROPIC_8X

    -
  • TEXTURE_FILTER_ANISOTROPIC_16X

    -
    public static final int TEXTURE_FILTER_ANISOTROPIC_16X
    enum TextureFilter
    @@ -17400,13 +15073,11 @@

    TEXTURE_FILTER_ANISOTROPIC_16X

    -
  • TEXTURE_WRAP_REPEAT

    -
    public static final int TEXTURE_WRAP_REPEAT
    enum TextureWrap
    @@ -17417,13 +15088,11 @@

    TEXTURE_WRAP_REPEAT

    -
  • TEXTURE_WRAP_CLAMP

    -
    public static final int TEXTURE_WRAP_CLAMP
    enum TextureWrap
    @@ -17434,13 +15103,11 @@

    TEXTURE_WRAP_CLAMP

    -
  • TEXTURE_WRAP_MIRROR_REPEAT

    -
    public static final int TEXTURE_WRAP_MIRROR_REPEAT
    enum TextureWrap
    @@ -17451,13 +15118,11 @@

    TEXTURE_WRAP_MIRROR_REPEAT

    -
  • TEXTURE_WRAP_MIRROR_CLAMP

    -
    public static final int TEXTURE_WRAP_MIRROR_CLAMP
    enum TextureWrap
    @@ -17468,13 +15133,11 @@

    TEXTURE_WRAP_MIRROR_CLAMP

    -
  • CUBEMAP_LAYOUT_AUTO_DETECT

    -
    public static final int CUBEMAP_LAYOUT_AUTO_DETECT
    enum CubemapLayout
    @@ -17485,13 +15148,11 @@

    CUBEMAP_LAYOUT_AUTO_DETECT

    -
  • CUBEMAP_LAYOUT_LINE_VERTICAL

    -
    public static final int CUBEMAP_LAYOUT_LINE_VERTICAL
    enum CubemapLayout
    @@ -17502,13 +15163,11 @@

    CUBEMAP_LAYOUT_LINE_VERTICAL

    -
  • CUBEMAP_LAYOUT_LINE_HORIZONTAL

    -
    public static final int CUBEMAP_LAYOUT_LINE_HORIZONTAL
    enum CubemapLayout
    @@ -17519,13 +15178,11 @@

    CUBEMAP_LAYOUT_LINE_HORIZONTAL

    -
  • CUBEMAP_LAYOUT_CROSS_THREE_BY_FOUR

    -
    public static final int CUBEMAP_LAYOUT_CROSS_THREE_BY_FOUR
    enum CubemapLayout
    @@ -17536,13 +15193,11 @@

    CUBEMAP_LAYOUT_CROSS_THREE_BY_FOUR

    -
  • CUBEMAP_LAYOUT_CROSS_FOUR_BY_THREE

    -
    public static final int CUBEMAP_LAYOUT_CROSS_FOUR_BY_THREE
    enum CubemapLayout
    @@ -17553,13 +15208,11 @@

    CUBEMAP_LAYOUT_CROSS_FOUR_BY_THREE

    -
  • FONT_DEFAULT

    -
    public static final int FONT_DEFAULT
    enum FontType
    @@ -17570,13 +15223,11 @@

    FONT_DEFAULT

    -
  • FONT_BITMAP

    -
    public static final int FONT_BITMAP
    enum FontType
    @@ -17587,13 +15238,11 @@

    FONT_BITMAP

    -
  • FONT_SDF

    -
    public static final int FONT_SDF
    enum FontType
    @@ -17604,13 +15253,11 @@

    FONT_SDF

    -
  • BLEND_ALPHA

    -
    public static final int BLEND_ALPHA
    enum BlendMode
    @@ -17621,13 +15268,11 @@

    BLEND_ALPHA

    -
  • BLEND_ADDITIVE

    -
    public static final int BLEND_ADDITIVE
    enum BlendMode
    @@ -17638,13 +15283,11 @@

    BLEND_ADDITIVE

    -
  • BLEND_MULTIPLIED

    -
    public static final int BLEND_MULTIPLIED
    enum BlendMode
    @@ -17655,13 +15298,11 @@

    BLEND_MULTIPLIED

    -
  • BLEND_ADD_COLORS

    -
    public static final int BLEND_ADD_COLORS
    enum BlendMode
    @@ -17672,13 +15313,11 @@

    BLEND_ADD_COLORS

    -
  • BLEND_SUBTRACT_COLORS

    -
    public static final int BLEND_SUBTRACT_COLORS
    enum BlendMode
    @@ -17689,13 +15328,11 @@

    BLEND_SUBTRACT_COLORS

    -
  • BLEND_ALPHA_PREMULTIPLY

    -
    public static final int BLEND_ALPHA_PREMULTIPLY
    enum BlendMode
    @@ -17706,13 +15343,11 @@

    BLEND_ALPHA_PREMULTIPLY

    -
  • BLEND_CUSTOM

    -
    public static final int BLEND_CUSTOM
    enum BlendMode
    @@ -17723,13 +15358,11 @@

    BLEND_CUSTOM

    -
  • BLEND_CUSTOM_SEPARATE

    -
    public static final int BLEND_CUSTOM_SEPARATE
    enum BlendMode
    @@ -17740,13 +15373,11 @@

    BLEND_CUSTOM_SEPARATE

    -
  • GESTURE_NONE

    -
    public static final int GESTURE_NONE
    enum Gesture
    @@ -17757,13 +15388,11 @@

    GESTURE_NONE

    -
  • GESTURE_TAP

    -
    public static final int GESTURE_TAP
    enum Gesture
    @@ -17774,13 +15403,11 @@

    GESTURE_TAP

    -
  • GESTURE_DOUBLETAP

    -
    public static final int GESTURE_DOUBLETAP
    enum Gesture
    @@ -17791,13 +15418,11 @@

    GESTURE_DOUBLETAP

    -
  • GESTURE_HOLD

    -
    public static final int GESTURE_HOLD
    enum Gesture
    @@ -17808,13 +15433,11 @@

    GESTURE_HOLD

    -
  • GESTURE_DRAG

    -
    public static final int GESTURE_DRAG
    enum Gesture
    @@ -17825,13 +15448,11 @@

    GESTURE_DRAG

    -
  • GESTURE_SWIPE_RIGHT

    -
    public static final int GESTURE_SWIPE_RIGHT
    enum Gesture
    @@ -17842,13 +15463,11 @@

    GESTURE_SWIPE_RIGHT

    -
  • GESTURE_SWIPE_LEFT

    -
    public static final int GESTURE_SWIPE_LEFT
    enum Gesture
    @@ -17859,13 +15478,11 @@

    GESTURE_SWIPE_LEFT

    -
  • GESTURE_SWIPE_UP

    -
    public static final int GESTURE_SWIPE_UP
    enum Gesture
    @@ -17876,13 +15493,11 @@

    GESTURE_SWIPE_UP

    -
  • GESTURE_SWIPE_DOWN

    -
    public static final int GESTURE_SWIPE_DOWN
    enum Gesture
    @@ -17893,13 +15508,11 @@

    GESTURE_SWIPE_DOWN

    -
  • GESTURE_PINCH_IN

    -
    public static final int GESTURE_PINCH_IN
    enum Gesture
    @@ -17910,13 +15523,11 @@

    GESTURE_PINCH_IN

    -
  • GESTURE_PINCH_OUT

    -
    public static final int GESTURE_PINCH_OUT
    enum Gesture
    @@ -17927,13 +15538,11 @@

    GESTURE_PINCH_OUT

    -
  • CAMERA_CUSTOM

    -
    public static final int CAMERA_CUSTOM
    enum CameraMode
    @@ -17944,13 +15553,11 @@

    CAMERA_CUSTOM

    -
  • CAMERA_FREE

    -
    public static final int CAMERA_FREE
    enum CameraMode
    @@ -17961,13 +15568,11 @@

    CAMERA_FREE

    -
  • CAMERA_ORBITAL

    -
    public static final int CAMERA_ORBITAL
    enum CameraMode
    @@ -17978,13 +15583,11 @@

    CAMERA_ORBITAL

    -
  • CAMERA_FIRST_PERSON

    -
    public static final int CAMERA_FIRST_PERSON
    enum CameraMode
    @@ -17995,13 +15598,11 @@

    CAMERA_FIRST_PERSON

    -
  • CAMERA_THIRD_PERSON

    -
    public static final int CAMERA_THIRD_PERSON
    enum CameraMode
    @@ -18012,13 +15613,11 @@

    CAMERA_THIRD_PERSON

    -
  • CAMERA_PERSPECTIVE

    -
    public static final int CAMERA_PERSPECTIVE
    enum CameraProjection
    @@ -18029,13 +15628,11 @@

    CAMERA_PERSPECTIVE

    -
  • CAMERA_ORTHOGRAPHIC

    -
    public static final int CAMERA_ORTHOGRAPHIC
    enum CameraProjection
    @@ -18046,13 +15643,11 @@

    CAMERA_ORTHOGRAPHIC

    -
  • NPATCH_NINE_PATCH

    -
    public static final int NPATCH_NINE_PATCH
    enum NPatchLayout
    @@ -18063,13 +15658,11 @@

    NPATCH_NINE_PATCH

    -
  • NPATCH_THREE_PATCH_VERTICAL

    -
    public static final int NPATCH_THREE_PATCH_VERTICAL
    enum NPatchLayout
    @@ -18080,13 +15673,11 @@

    NPATCH_THREE_PATCH_VERTICAL

    -
  • NPATCH_THREE_PATCH_HORIZONTAL

    -
    public static final int NPATCH_THREE_PATCH_HORIZONTAL
    enum NPatchLayout
    @@ -18097,25 +15688,23 @@

    NPATCH_THREE_PATCH_HORIZONTAL

    -
  • RLGL_VERSION

    -
    -
    public static final String RLGL_VERSION
    -
    rlgl v5.0 - A multi-OpenGL abstraction layer with an immediate-mode style API +
    public static final String RLGL_VERSION
    +
    rlgl v6.0 - A multi-OpenGL abstraction layer with an immediate-mode style API DESCRIPTION: An abstraction layer for multiple OpenGL versions (1.1, 2.1, 3.3 Core, 4.3 Core, ES 2.0, ES 3.0) that provides a pseudo-OpenGL 1.1 immediate-mode style API (rlVertex, rlTranslate, rlRotate...) ADDITIONAL NOTES: - When choosing an OpenGL backend different than OpenGL 1.1, some internal buffer are + When choosing an OpenGL backend different than OpenGL 1.1, some internal buffers are initialized on rlglInit() to accumulate vertex data - When an internal state change is required all the stored vertex data is renderer in batch, + When an internal state change is required all the stored vertex data is rendered in a batch, additionally, rlDrawRenderBatchActive() could be called to force flushing of the batch Some resources are also loaded for convenience, here the complete list: @@ -18126,6 +15715,7 @@

    RLGL_VERSION

    Internal buffer (and resources) must be manually unloaded calling rlglClose() CONFIGURATION: + #define GRAPHICS_API_OPENGL_SOFTWARE #define GRAPHICS_API_OPENGL_11 #define GRAPHICS_API_OPENGL_21 #define GRAPHICS_API_OPENGL_33 @@ -18133,7 +15723,7 @@

    RLGL_VERSION

    #define GRAPHICS_API_OPENGL_ES2 #define GRAPHICS_API_OPENGL_ES3 Use selected OpenGL graphics backend, should be supported by platform - Those preprocessor defines are only used on rlgl module, if OpenGL version is + Those preprocessor defines are only used on the rlgl module, if OpenGL version is required by any other module, use rlGetVersion() to check it #define RLGL_IMPLEMENTATION @@ -18141,28 +15731,24 @@

    RLGL_VERSION

    If not defined, the library is in header only mode and can be included in other headers or source files without problems. But only ONE file should hold the implementation - #define RLGL_RENDER_TEXTURES_HINT - Enable framebuffer objects (fbo) support (enabled by default) - Some GPUs could not support them despite the OpenGL version - - #define RLGL_SHOW_GL_DETAILS_INFO + #if RLGL_SHOW_GL_DETAILS_INFO Show OpenGL extensions and capabilities detailed logs on init - #define RLGL_ENABLE_OPENGL_DEBUG_CONTEXT + #if RLGL_ENABLE_OPENGL_DEBUG_CONTEXT Enable debug context (only available on OpenGL 4.3) - rlgl capabilities could be customized just defining some internal + rlgl capabilities could be customized defining some internal values before library inclusion (default values listed): #define RL_DEFAULT_BATCH_BUFFER_ELEMENTS 8192 // Default internal render batch elements limits #define RL_DEFAULT_BATCH_BUFFERS 1 // Default number of batch buffers (multi-buffering) #define RL_DEFAULT_BATCH_DRAWCALLS 256 // Default number of batch draw calls (by state changes: mode, texture) - #define RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS 4 // Maximum number of textures units that can be activated on batch drawing (SetShaderValueTexture()) + #define RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS 4 // Maximum number of texture units that can be activated on batch drawing (SetShaderValueTexture()) #define RL_MAX_MATRIX_STACK_SIZE 32 // Maximum size of internal Matrix stack #define RL_MAX_SHADER_LOCATIONS 32 // Maximum number of shader locations supported - #define RL_CULL_DISTANCE_NEAR 0.01 // Default projection matrix near cull distance - #define RL_CULL_DISTANCE_FAR 1000.0 // Default projection matrix far cull distance + #define RL_CULL_DISTANCE_NEAR 0.05 // Default projection matrix near cull distance + #define RL_CULL_DISTANCE_FAR 4000.0 // Default projection matrix far cull distance When loading a shader, the following vertex attributes and uniform location names are tried to be set automatically: @@ -18173,7 +15759,7 @@

    RLGL_VERSION

    #define RL_DEFAULT_SHADER_ATTRIB_NAME_COLOR "vertexColor" // Bound by default to shader location: RL_DEFAULT_SHADER_ATTRIB_LOCATION_COLOR #define RL_DEFAULT_SHADER_ATTRIB_NAME_TANGENT "vertexTangent" // Bound by default to shader location: RL_DEFAULT_SHADER_ATTRIB_LOCATION_TANGENT #define RL_DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD2 "vertexTexCoord2" // Bound by default to shader location: RL_DEFAULT_SHADER_ATTRIB_LOCATION_TEXCOORD2 - #define RL_DEFAULT_SHADER_ATTRIB_NAME_BONEIDS "vertexBoneIds" // Bound by default to shader location: RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEIDS + #define RL_DEFAULT_SHADER_ATTRIB_NAME_BONEINDICES "vertexBoneIndices" // Bound by default to shader location: RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEINDICES #define RL_DEFAULT_SHADER_ATTRIB_NAME_BONEWEIGHTS "vertexBoneWeights" // Bound by default to shader location: RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS #define RL_DEFAULT_SHADER_UNIFORM_NAME_MVP "mvp" // model-view-projection matrix #define RL_DEFAULT_SHADER_UNIFORM_NAME_VIEW "matView" // view matrix @@ -18181,7 +15767,7 @@

    RLGL_VERSION

    #define RL_DEFAULT_SHADER_UNIFORM_NAME_MODEL "matModel" // model matrix #define RL_DEFAULT_SHADER_UNIFORM_NAME_NORMAL "matNormal" // normal matrix (transpose(inverse(matModelView))) #define RL_DEFAULT_SHADER_UNIFORM_NAME_COLOR "colDiffuse" // color diffuse (base tint color, multiplied by texture color) - #define RL_DEFAULT_SHADER_UNIFORM_NAME_BONE_MATRICES "boneMatrices" // bone matrices + #define RL_DEFAULT_SHADER_UNIFORM_NAME_BONEMATRICES "boneMatrices" // bone matrices #define RL_DEFAULT_SHADER_SAMPLER2D_NAME_TEXTURE0 "texture0" // texture0 (texture slot active 0) #define RL_DEFAULT_SHADER_SAMPLER2D_NAME_TEXTURE1 "texture1" // texture1 (texture slot active 1) #define RL_DEFAULT_SHADER_SAMPLER2D_NAME_TEXTURE2 "texture2" // texture2 (texture slot active 2) @@ -18193,7 +15779,7 @@

    RLGL_VERSION

    LICENSE: zlib/libpng - Copyright (c) 2014-2024 Ramon Santamaria (\raysan5) + Copyright (c) 2014-2026 Ramon Santamaria (\raysan5) This software is provided "as-is", without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -18217,13 +15803,11 @@

    RLGL_VERSION

    -
  • RL_DEFAULT_BATCH_BUFFER_ELEMENTS

    -
    public static final int RL_DEFAULT_BATCH_BUFFER_ELEMENTS
    See Also:
    @@ -18233,13 +15817,11 @@

    RL_DEFAULT_BATCH_BUFFER_ELEMENTS

    -
  • RL_DEFAULT_BATCH_BUFFERS

    -
    public static final int RL_DEFAULT_BATCH_BUFFERS
    See Also:
    @@ -18249,13 +15831,11 @@

    RL_DEFAULT_BATCH_BUFFERS

    -
  • RL_DEFAULT_BATCH_DRAWCALLS

    -
    public static final int RL_DEFAULT_BATCH_DRAWCALLS
    See Also:
    @@ -18265,13 +15845,11 @@

    RL_DEFAULT_BATCH_DRAWCALLS

    -
  • RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS

    -
    public static final int RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS
    See Also:
    @@ -18281,13 +15859,11 @@

    RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS

    -
  • RL_MAX_MATRIX_STACK_SIZE

    -
    public static final int RL_MAX_MATRIX_STACK_SIZE
    See Also:
    @@ -18297,13 +15873,11 @@

    RL_MAX_MATRIX_STACK_SIZE

    -
  • RL_MAX_SHADER_LOCATIONS

    -
    public static final int RL_MAX_SHADER_LOCATIONS
    See Also:
    @@ -18313,13 +15887,11 @@

    RL_MAX_SHADER_LOCATIONS

    -
  • RL_CULL_DISTANCE_NEAR

    -
    public static final double RL_CULL_DISTANCE_NEAR
    See Also:
    @@ -18329,13 +15901,11 @@

    RL_CULL_DISTANCE_NEAR

    -
  • RL_CULL_DISTANCE_FAR

    -
    public static final double RL_CULL_DISTANCE_FAR
    See Also:
    @@ -18345,13 +15915,11 @@

    RL_CULL_DISTANCE_FAR

    -
  • RL_TEXTURE_WRAP_S

    -
    public static final int RL_TEXTURE_WRAP_S
    See Also:
    @@ -18361,13 +15929,11 @@

    RL_TEXTURE_WRAP_S

    -
  • RL_TEXTURE_WRAP_T

    -
    public static final int RL_TEXTURE_WRAP_T
    See Also:
    @@ -18377,13 +15943,11 @@

    RL_TEXTURE_WRAP_T

    -
  • RL_TEXTURE_MAG_FILTER

    -
    public static final int RL_TEXTURE_MAG_FILTER
    See Also:
    @@ -18393,13 +15957,11 @@

    RL_TEXTURE_MAG_FILTER

    -
  • RL_TEXTURE_MIN_FILTER

    -
    public static final int RL_TEXTURE_MIN_FILTER
    See Also:
    @@ -18409,13 +15971,11 @@

    RL_TEXTURE_MIN_FILTER

    -
  • RL_TEXTURE_FILTER_NEAREST

    -
    public static final int RL_TEXTURE_FILTER_NEAREST
    See Also:
    @@ -18425,13 +15985,11 @@

    RL_TEXTURE_FILTER_NEAREST

    -
  • RL_TEXTURE_FILTER_LINEAR

    -
    public static final int RL_TEXTURE_FILTER_LINEAR
    See Also:
    @@ -18441,13 +15999,11 @@

    RL_TEXTURE_FILTER_LINEAR

    -
  • RL_TEXTURE_FILTER_MIP_NEAREST

    -
    public static final int RL_TEXTURE_FILTER_MIP_NEAREST
    See Also:
    @@ -18457,13 +16013,11 @@

    RL_TEXTURE_FILTER_MIP_NEAREST

    -
  • RL_TEXTURE_FILTER_NEAREST_MIP_LINEAR

    -
    public static final int RL_TEXTURE_FILTER_NEAREST_MIP_LINEAR
    See Also:
    @@ -18473,13 +16027,11 @@

    RL_TEXTURE_FILTER_NEAREST_MIP_LINEAR

    -
  • RL_TEXTURE_FILTER_LINEAR_MIP_NEAREST

    -
    public static final int RL_TEXTURE_FILTER_LINEAR_MIP_NEAREST
    See Also:
    @@ -18489,13 +16041,11 @@

    RL_TEXTURE_FILTER_LINEAR_MIP_NEAREST

    -
  • RL_TEXTURE_FILTER_MIP_LINEAR

    -
    public static final int RL_TEXTURE_FILTER_MIP_LINEAR
    See Also:
    @@ -18505,13 +16055,11 @@

    RL_TEXTURE_FILTER_MIP_LINEAR

    -
  • RL_TEXTURE_FILTER_ANISOTROPIC

    -
    public static final int RL_TEXTURE_FILTER_ANISOTROPIC
    See Also:
    @@ -18521,13 +16069,11 @@

    RL_TEXTURE_FILTER_ANISOTROPIC

    -
  • RL_TEXTURE_MIPMAP_BIAS_RATIO

    -
    public static final int RL_TEXTURE_MIPMAP_BIAS_RATIO
    See Also:
    @@ -18537,13 +16083,11 @@

    RL_TEXTURE_MIPMAP_BIAS_RATIO

    -
  • RL_TEXTURE_WRAP_REPEAT

    -
    public static final int RL_TEXTURE_WRAP_REPEAT
    See Also:
    @@ -18553,13 +16097,11 @@

    RL_TEXTURE_WRAP_REPEAT

    -
  • RL_TEXTURE_WRAP_CLAMP

    -
    public static final int RL_TEXTURE_WRAP_CLAMP
    See Also:
    @@ -18569,13 +16111,11 @@

    RL_TEXTURE_WRAP_CLAMP

    -
  • RL_TEXTURE_WRAP_MIRROR_REPEAT

    -
    public static final int RL_TEXTURE_WRAP_MIRROR_REPEAT
    See Also:
    @@ -18585,13 +16125,11 @@

    RL_TEXTURE_WRAP_MIRROR_REPEAT

    -
  • RL_TEXTURE_WRAP_MIRROR_CLAMP

    -
    public static final int RL_TEXTURE_WRAP_MIRROR_CLAMP
    See Also:
    @@ -18601,13 +16139,11 @@

    RL_TEXTURE_WRAP_MIRROR_CLAMP

    -
  • RL_MODELVIEW

    -
    public static final int RL_MODELVIEW
    See Also:
    @@ -18617,13 +16153,11 @@

    RL_MODELVIEW

    -
  • RL_PROJECTION

    -
    public static final int RL_PROJECTION
    See Also:
    @@ -18633,13 +16167,11 @@

    RL_PROJECTION

    -
  • RL_TEXTURE

    -
    public static final int RL_TEXTURE
    See Also:
    @@ -18649,13 +16181,11 @@

    RL_TEXTURE

    -
  • RL_LINES

    -
    public static final int RL_LINES
    See Also:
    @@ -18665,13 +16195,11 @@

    RL_LINES

    -
  • RL_TRIANGLES

    -
    public static final int RL_TRIANGLES
    See Also:
    @@ -18681,13 +16209,11 @@

    RL_TRIANGLES

    -
  • RL_QUADS

    -
    public static final int RL_QUADS
    See Also:
    @@ -18697,13 +16223,11 @@

    RL_QUADS

    -
  • RL_UNSIGNED_BYTE

    -
    public static final int RL_UNSIGNED_BYTE
    See Also:
    @@ -18713,13 +16237,11 @@

    RL_UNSIGNED_BYTE

    -
  • RL_FLOAT

    -
    public static final int RL_FLOAT
    See Also:
    @@ -18729,13 +16251,11 @@

    RL_FLOAT

    -
  • RL_STREAM_DRAW

    -
    public static final int RL_STREAM_DRAW
    See Also:
    @@ -18745,13 +16265,11 @@

    RL_STREAM_DRAW

    -
  • RL_STREAM_READ

    -
    public static final int RL_STREAM_READ
    See Also:
    @@ -18761,13 +16279,11 @@

    RL_STREAM_READ

    -
  • RL_STREAM_COPY

    -
    public static final int RL_STREAM_COPY
    See Also:
    @@ -18777,13 +16293,11 @@

    RL_STREAM_COPY

    -
  • RL_STATIC_DRAW

    -
    public static final int RL_STATIC_DRAW
    See Also:
    @@ -18793,13 +16307,11 @@

    RL_STATIC_DRAW

    -
  • RL_STATIC_READ

    -
    public static final int RL_STATIC_READ
    See Also:
    @@ -18809,13 +16321,11 @@

    RL_STATIC_READ

    -
  • RL_STATIC_COPY

    -
    public static final int RL_STATIC_COPY
    See Also:
    @@ -18825,13 +16335,11 @@

    RL_STATIC_COPY

    -
  • RL_DYNAMIC_DRAW

    -
    public static final int RL_DYNAMIC_DRAW
    See Also:
    @@ -18841,13 +16349,11 @@

    RL_DYNAMIC_DRAW

    -
  • RL_DYNAMIC_READ

    -
    public static final int RL_DYNAMIC_READ
    See Also:
    @@ -18857,13 +16363,11 @@

    RL_DYNAMIC_READ

    -
  • RL_DYNAMIC_COPY

    -
    public static final int RL_DYNAMIC_COPY
    See Also:
    @@ -18873,13 +16377,11 @@

    RL_DYNAMIC_COPY

    -
  • RL_FRAGMENT_SHADER

    -
    public static final int RL_FRAGMENT_SHADER
    See Also:
    @@ -18889,13 +16391,11 @@

    RL_FRAGMENT_SHADER

    -
  • RL_VERTEX_SHADER

    -
    public static final int RL_VERTEX_SHADER
    See Also:
    @@ -18905,13 +16405,11 @@

    RL_VERTEX_SHADER

    -
  • RL_COMPUTE_SHADER

    -
    public static final int RL_COMPUTE_SHADER
    See Also:
    @@ -18921,13 +16419,11 @@

    RL_COMPUTE_SHADER

    -
  • RL_ZERO

    -
    public static final int RL_ZERO
    See Also:
    @@ -18937,13 +16433,11 @@

    RL_ZERO

    -
  • RL_ONE

    -
    public static final int RL_ONE
    See Also:
    @@ -18953,13 +16447,11 @@

    RL_ONE

    -
  • RL_SRC_COLOR

    -
    public static final int RL_SRC_COLOR
    See Also:
    @@ -18969,13 +16461,11 @@

    RL_SRC_COLOR

    -
  • RL_ONE_MINUS_SRC_COLOR

    -
    public static final int RL_ONE_MINUS_SRC_COLOR
    See Also:
    @@ -18985,13 +16475,11 @@

    RL_ONE_MINUS_SRC_COLOR

    -
  • RL_SRC_ALPHA

    -
    public static final int RL_SRC_ALPHA
    See Also:
    @@ -19001,13 +16489,11 @@

    RL_SRC_ALPHA

    -
  • RL_ONE_MINUS_SRC_ALPHA

    -
    public static final int RL_ONE_MINUS_SRC_ALPHA
    See Also:
    @@ -19017,13 +16503,11 @@

    RL_ONE_MINUS_SRC_ALPHA

    -
  • RL_DST_ALPHA

    -
    public static final int RL_DST_ALPHA
    See Also:
    @@ -19033,13 +16517,11 @@

    RL_DST_ALPHA

    -
  • RL_ONE_MINUS_DST_ALPHA

    -
    public static final int RL_ONE_MINUS_DST_ALPHA
    See Also:
    @@ -19049,13 +16531,11 @@

    RL_ONE_MINUS_DST_ALPHA

    -
  • RL_DST_COLOR

    -
    public static final int RL_DST_COLOR
    See Also:
    @@ -19065,13 +16545,11 @@

    RL_DST_COLOR

    -
  • RL_ONE_MINUS_DST_COLOR

    -
    public static final int RL_ONE_MINUS_DST_COLOR
    See Also:
    @@ -19081,13 +16559,11 @@

    RL_ONE_MINUS_DST_COLOR

    -
  • RL_SRC_ALPHA_SATURATE

    -
    public static final int RL_SRC_ALPHA_SATURATE
    See Also:
    @@ -19097,13 +16573,11 @@

    RL_SRC_ALPHA_SATURATE

    -
  • RL_CONSTANT_COLOR

    -
    public static final int RL_CONSTANT_COLOR
    See Also:
    @@ -19113,13 +16587,11 @@

    RL_CONSTANT_COLOR

    -
  • RL_ONE_MINUS_CONSTANT_COLOR

    -
    public static final int RL_ONE_MINUS_CONSTANT_COLOR
    See Also:
    @@ -19129,13 +16601,11 @@

    RL_ONE_MINUS_CONSTANT_COLOR

    -
  • RL_CONSTANT_ALPHA

    -
    public static final int RL_CONSTANT_ALPHA
    See Also:
    @@ -19145,13 +16615,11 @@

    RL_CONSTANT_ALPHA

    -
  • RL_ONE_MINUS_CONSTANT_ALPHA

    -
    public static final int RL_ONE_MINUS_CONSTANT_ALPHA
    See Also:
    @@ -19161,13 +16629,11 @@

    RL_ONE_MINUS_CONSTANT_ALPHA

    -
  • RL_FUNC_ADD

    -
    public static final int RL_FUNC_ADD
    See Also:
    @@ -19177,13 +16643,11 @@

    RL_FUNC_ADD

    -
  • RL_MIN

    -
    public static final int RL_MIN
    See Also:
    @@ -19193,13 +16657,11 @@

    RL_MIN

    -
  • RL_MAX

    -
    public static final int RL_MAX
    See Also:
    @@ -19209,13 +16671,11 @@

    RL_MAX

    -
  • RL_FUNC_SUBTRACT

    -
    public static final int RL_FUNC_SUBTRACT
    See Also:
    @@ -19225,13 +16685,11 @@

    RL_FUNC_SUBTRACT

    -
  • RL_FUNC_REVERSE_SUBTRACT

    -
    public static final int RL_FUNC_REVERSE_SUBTRACT
    See Also:
    @@ -19241,13 +16699,11 @@

    RL_FUNC_REVERSE_SUBTRACT

    -
  • RL_BLEND_EQUATION

    -
    public static final int RL_BLEND_EQUATION
    See Also:
    @@ -19257,13 +16713,11 @@

    RL_BLEND_EQUATION

    -
  • RL_BLEND_EQUATION_RGB

    -
    public static final int RL_BLEND_EQUATION_RGB
    See Also:
    @@ -19273,13 +16727,11 @@

    RL_BLEND_EQUATION_RGB

    -
  • RL_BLEND_EQUATION_ALPHA

    -
    public static final int RL_BLEND_EQUATION_ALPHA
    See Also:
    @@ -19289,13 +16741,11 @@

    RL_BLEND_EQUATION_ALPHA

    -
  • RL_BLEND_DST_RGB

    -
    public static final int RL_BLEND_DST_RGB
    See Also:
    @@ -19305,13 +16755,11 @@

    RL_BLEND_DST_RGB

    -
  • RL_BLEND_SRC_RGB

    -
    public static final int RL_BLEND_SRC_RGB
    See Also:
    @@ -19321,13 +16769,11 @@

    RL_BLEND_SRC_RGB

    -
  • RL_BLEND_DST_ALPHA

    -
    public static final int RL_BLEND_DST_ALPHA
    See Also:
    @@ -19337,13 +16783,11 @@

    RL_BLEND_DST_ALPHA

    -
  • RL_BLEND_SRC_ALPHA

    -
    public static final int RL_BLEND_SRC_ALPHA
    See Also:
    @@ -19353,13 +16797,11 @@

    RL_BLEND_SRC_ALPHA

    -
  • RL_BLEND_COLOR

    -
    public static final int RL_BLEND_COLOR
    See Also:
    @@ -19369,13 +16811,11 @@

    RL_BLEND_COLOR

    -
  • RL_READ_FRAMEBUFFER

    -
    public static final int RL_READ_FRAMEBUFFER
    See Also:
    @@ -19385,13 +16825,11 @@

    RL_READ_FRAMEBUFFER

    -
  • RL_DRAW_FRAMEBUFFER

    -
    public static final int RL_DRAW_FRAMEBUFFER
    See Also:
    @@ -19401,13 +16839,11 @@

    RL_DRAW_FRAMEBUFFER

    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_POSITION

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_POSITION
    See Also:
    @@ -19417,13 +16853,11 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_POSITION

    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_TEXCOORD

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_TEXCOORD
    See Also:
    @@ -19433,13 +16867,11 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_TEXCOORD

    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_NORMAL

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_NORMAL
    See Also:
    @@ -19449,13 +16881,11 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_NORMAL

    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_COLOR

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_COLOR
    See Also:
    @@ -19465,13 +16895,11 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_COLOR

    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_TANGENT

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_TANGENT
    See Also:
    @@ -19481,13 +16909,11 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_TANGENT

    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_TEXCOORD2

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_TEXCOORD2
    See Also:
    @@ -19497,13 +16923,11 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_TEXCOORD2

    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_INDICES

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_INDICES
    See Also:
    @@ -19513,29 +16937,25 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_INDICES

    -
  • -
    -

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEIDS

    -
    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEIDS
    +
    +

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEINDICES

    +
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEINDICES
    See Also:
    -
  • RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS

    -
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS
    See Also:
    @@ -19545,13 +16965,40 @@

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS

    -
    +
    +
  • +
  • +
    +

    RL_DEFAULT_SHADER_ATTRIB_LOCATION_INSTANCETRANSFORM

    +
    public static final int RL_DEFAULT_SHADER_ATTRIB_LOCATION_INSTANCETRANSFORM
    +
    +
    See Also:
    +
    + +
    +
    +
    +
  • +
  • +
    +

    RL_OPENGL_SOFTWARE

    +
    public static final int RL_OPENGL_SOFTWARE
    +
    enum rlGlVersion
    +
    +
    See Also:
    +
    + +
    +
  • RL_OPENGL_11

    -
    public static final int RL_OPENGL_11
    enum rlGlVersion
    @@ -19562,13 +17009,11 @@

    RL_OPENGL_11

    -
  • RL_OPENGL_21

    -
    public static final int RL_OPENGL_21
    enum rlGlVersion
    @@ -19579,13 +17024,11 @@

    RL_OPENGL_21

    -
  • RL_OPENGL_33

    -
    public static final int RL_OPENGL_33
    enum rlGlVersion
    @@ -19596,13 +17039,11 @@

    RL_OPENGL_33

    -
  • RL_OPENGL_43

    -
    public static final int RL_OPENGL_43
    enum rlGlVersion
    @@ -19613,13 +17054,11 @@

    RL_OPENGL_43

    -
  • RL_OPENGL_ES_20

    -
    public static final int RL_OPENGL_ES_20
    enum rlGlVersion
    @@ -19630,13 +17069,11 @@

    RL_OPENGL_ES_20

    -
  • RL_OPENGL_ES_30

    -
    public static final int RL_OPENGL_ES_30
    enum rlGlVersion
    @@ -19647,13 +17084,11 @@

    RL_OPENGL_ES_30

    -
  • RL_LOG_ALL

    -
    public static final int RL_LOG_ALL
    enum rlTraceLogLevel
    @@ -19664,13 +17099,11 @@

    RL_LOG_ALL

    -
  • RL_LOG_TRACE

    -
    public static final int RL_LOG_TRACE
    enum rlTraceLogLevel
    @@ -19681,13 +17114,11 @@

    RL_LOG_TRACE

    -
  • RL_LOG_DEBUG

    -
    public static final int RL_LOG_DEBUG
    enum rlTraceLogLevel
    @@ -19698,13 +17129,11 @@

    RL_LOG_DEBUG

    -
  • RL_LOG_INFO

    -
    public static final int RL_LOG_INFO
    enum rlTraceLogLevel
    @@ -19715,13 +17144,11 @@

    RL_LOG_INFO

    -
  • RL_LOG_WARNING

    -
    public static final int RL_LOG_WARNING
    enum rlTraceLogLevel
    @@ -19732,13 +17159,11 @@

    RL_LOG_WARNING

    -
  • RL_LOG_ERROR

    -
    public static final int RL_LOG_ERROR
    enum rlTraceLogLevel
    @@ -19749,13 +17174,11 @@

    RL_LOG_ERROR

    -
  • RL_LOG_FATAL

    -
    public static final int RL_LOG_FATAL
    enum rlTraceLogLevel
    @@ -19766,13 +17189,11 @@

    RL_LOG_FATAL

    -
  • RL_LOG_NONE

    -
    public static final int RL_LOG_NONE
    enum rlTraceLogLevel
    @@ -19783,13 +17204,11 @@

    RL_LOG_NONE

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_GRAYSCALE

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_GRAYSCALE
    enum rlPixelFormat
    @@ -19800,13 +17219,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_GRAYSCALE

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA
    enum rlPixelFormat
    @@ -19817,13 +17234,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R5G6B5

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R5G6B5
    enum rlPixelFormat
    @@ -19834,13 +17249,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R5G6B5

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8
    enum rlPixelFormat
    @@ -19851,13 +17264,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R5G5B5A1

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R5G5B5A1
    enum rlPixelFormat
    @@ -19868,13 +17279,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R5G5B5A1

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R4G4B4A4

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R4G4B4A4
    enum rlPixelFormat
    @@ -19885,13 +17294,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R4G4B4A4

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8A8

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8A8
    enum rlPixelFormat
    @@ -19902,13 +17309,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8A8

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R32

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R32
    enum rlPixelFormat
    @@ -19919,13 +17324,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R32

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32
    enum rlPixelFormat
    @@ -19936,13 +17339,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32A32

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32A32
    enum rlPixelFormat
    @@ -19953,13 +17354,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32A32

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R16

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R16
    enum rlPixelFormat
    @@ -19970,13 +17369,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R16

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16
    enum rlPixelFormat
    @@ -19987,13 +17384,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16

    -
  • RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16A16

    -
    public static final int RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16A16
    enum rlPixelFormat
    @@ -20004,13 +17399,11 @@

    RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16A16

    -
  • RL_PIXELFORMAT_COMPRESSED_DXT1_RGB

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_DXT1_RGB
    enum rlPixelFormat
    @@ -20021,13 +17414,11 @@

    RL_PIXELFORMAT_COMPRESSED_DXT1_RGB

    -
  • RL_PIXELFORMAT_COMPRESSED_DXT1_RGBA

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_DXT1_RGBA
    enum rlPixelFormat
    @@ -20038,13 +17429,11 @@

    RL_PIXELFORMAT_COMPRESSED_DXT1_RGBA

    -
  • RL_PIXELFORMAT_COMPRESSED_DXT3_RGBA

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_DXT3_RGBA
    enum rlPixelFormat
    @@ -20055,13 +17444,11 @@

    RL_PIXELFORMAT_COMPRESSED_DXT3_RGBA

    -
  • RL_PIXELFORMAT_COMPRESSED_DXT5_RGBA

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_DXT5_RGBA
    enum rlPixelFormat
    @@ -20072,13 +17459,11 @@

    RL_PIXELFORMAT_COMPRESSED_DXT5_RGBA

    -
  • RL_PIXELFORMAT_COMPRESSED_ETC1_RGB

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_ETC1_RGB
    enum rlPixelFormat
    @@ -20089,13 +17474,11 @@

    RL_PIXELFORMAT_COMPRESSED_ETC1_RGB

    -
  • RL_PIXELFORMAT_COMPRESSED_ETC2_RGB

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_ETC2_RGB
    enum rlPixelFormat
    @@ -20106,13 +17489,11 @@

    RL_PIXELFORMAT_COMPRESSED_ETC2_RGB

    -
  • RL_PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA
    enum rlPixelFormat
    @@ -20123,13 +17504,11 @@

    RL_PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA

    -
  • RL_PIXELFORMAT_COMPRESSED_PVRT_RGB

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_PVRT_RGB
    enum rlPixelFormat
    @@ -20140,13 +17519,11 @@

    RL_PIXELFORMAT_COMPRESSED_PVRT_RGB

    -
  • RL_PIXELFORMAT_COMPRESSED_PVRT_RGBA

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_PVRT_RGBA
    enum rlPixelFormat
    @@ -20157,13 +17534,11 @@

    RL_PIXELFORMAT_COMPRESSED_PVRT_RGBA

    -
  • RL_PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA
    enum rlPixelFormat
    @@ -20174,13 +17549,11 @@

    RL_PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA

    -
  • RL_PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA

    -
    public static final int RL_PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA
    enum rlPixelFormat
    @@ -20191,13 +17564,11 @@

    RL_PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA

    -
  • RL_TEXTURE_FILTER_POINT

    -
    public static final int RL_TEXTURE_FILTER_POINT
    enum rlTextureFilter
    @@ -20208,13 +17579,11 @@

    RL_TEXTURE_FILTER_POINT

    -
  • RL_TEXTURE_FILTER_BILINEAR

    -
    public static final int RL_TEXTURE_FILTER_BILINEAR
    enum rlTextureFilter
    @@ -20225,13 +17594,11 @@

    RL_TEXTURE_FILTER_BILINEAR

    -
  • RL_TEXTURE_FILTER_TRILINEAR

    -
    public static final int RL_TEXTURE_FILTER_TRILINEAR
    enum rlTextureFilter
    @@ -20242,13 +17609,11 @@

    RL_TEXTURE_FILTER_TRILINEAR

    -
  • RL_TEXTURE_FILTER_ANISOTROPIC_4X

    -
    public static final int RL_TEXTURE_FILTER_ANISOTROPIC_4X
    enum rlTextureFilter
    @@ -20259,13 +17624,11 @@

    RL_TEXTURE_FILTER_ANISOTROPIC_4X

    -
  • RL_TEXTURE_FILTER_ANISOTROPIC_8X

    -
    public static final int RL_TEXTURE_FILTER_ANISOTROPIC_8X
    enum rlTextureFilter
    @@ -20276,13 +17639,11 @@

    RL_TEXTURE_FILTER_ANISOTROPIC_8X

    -
  • RL_TEXTURE_FILTER_ANISOTROPIC_16X

    -
    public static final int RL_TEXTURE_FILTER_ANISOTROPIC_16X
    enum rlTextureFilter
    @@ -20293,13 +17654,11 @@

    RL_TEXTURE_FILTER_ANISOTROPIC_16X

    -
  • RL_BLEND_ALPHA

    -
    public static final int RL_BLEND_ALPHA
    enum rlBlendMode
    @@ -20310,13 +17669,11 @@

    RL_BLEND_ALPHA

    -
  • RL_BLEND_ADDITIVE

    -
    public static final int RL_BLEND_ADDITIVE
    enum rlBlendMode
    @@ -20327,13 +17684,11 @@

    RL_BLEND_ADDITIVE

    -
  • RL_BLEND_MULTIPLIED

    -
    public static final int RL_BLEND_MULTIPLIED
    enum rlBlendMode
    @@ -20344,13 +17699,11 @@

    RL_BLEND_MULTIPLIED

    -
  • RL_BLEND_ADD_COLORS

    -
    public static final int RL_BLEND_ADD_COLORS
    enum rlBlendMode
    @@ -20361,13 +17714,11 @@

    RL_BLEND_ADD_COLORS

    -
  • RL_BLEND_SUBTRACT_COLORS

    -
    public static final int RL_BLEND_SUBTRACT_COLORS
    enum rlBlendMode
    @@ -20378,13 +17729,11 @@

    RL_BLEND_SUBTRACT_COLORS

    -
  • RL_BLEND_ALPHA_PREMULTIPLY

    -
    public static final int RL_BLEND_ALPHA_PREMULTIPLY
    enum rlBlendMode
    @@ -20395,13 +17744,11 @@

    RL_BLEND_ALPHA_PREMULTIPLY

    -
  • RL_BLEND_CUSTOM

    -
    public static final int RL_BLEND_CUSTOM
    enum rlBlendMode
    @@ -20412,13 +17759,11 @@

    RL_BLEND_CUSTOM

    -
  • RL_BLEND_CUSTOM_SEPARATE

    -
    public static final int RL_BLEND_CUSTOM_SEPARATE
    enum rlBlendMode
    @@ -20429,13 +17774,11 @@

    RL_BLEND_CUSTOM_SEPARATE

    -
  • RL_SHADER_LOC_VERTEX_POSITION

    -
    public static final int RL_SHADER_LOC_VERTEX_POSITION
    enum rlShaderLocationIndex
    @@ -20446,13 +17789,11 @@

    RL_SHADER_LOC_VERTEX_POSITION

    -
  • RL_SHADER_LOC_VERTEX_TEXCOORD01

    -
    public static final int RL_SHADER_LOC_VERTEX_TEXCOORD01
    enum rlShaderLocationIndex
    @@ -20463,13 +17804,11 @@

    RL_SHADER_LOC_VERTEX_TEXCOORD01

    -
  • RL_SHADER_LOC_VERTEX_TEXCOORD02

    -
    public static final int RL_SHADER_LOC_VERTEX_TEXCOORD02
    enum rlShaderLocationIndex
    @@ -20480,13 +17819,11 @@

    RL_SHADER_LOC_VERTEX_TEXCOORD02

    -
  • RL_SHADER_LOC_VERTEX_NORMAL

    -
    public static final int RL_SHADER_LOC_VERTEX_NORMAL
    enum rlShaderLocationIndex
    @@ -20497,13 +17834,11 @@

    RL_SHADER_LOC_VERTEX_NORMAL

    -
  • RL_SHADER_LOC_VERTEX_TANGENT

    -
    public static final int RL_SHADER_LOC_VERTEX_TANGENT
    enum rlShaderLocationIndex
    @@ -20514,13 +17849,11 @@

    RL_SHADER_LOC_VERTEX_TANGENT

    -
  • RL_SHADER_LOC_VERTEX_COLOR

    -
    public static final int RL_SHADER_LOC_VERTEX_COLOR
    enum rlShaderLocationIndex
    @@ -20531,13 +17864,11 @@

    RL_SHADER_LOC_VERTEX_COLOR

    -
  • RL_SHADER_LOC_MATRIX_MVP

    -
    public static final int RL_SHADER_LOC_MATRIX_MVP
    enum rlShaderLocationIndex
    @@ -20548,13 +17879,11 @@

    RL_SHADER_LOC_MATRIX_MVP

    -
  • RL_SHADER_LOC_MATRIX_VIEW

    -
    public static final int RL_SHADER_LOC_MATRIX_VIEW
    enum rlShaderLocationIndex
    @@ -20565,13 +17894,11 @@

    RL_SHADER_LOC_MATRIX_VIEW

    -
  • RL_SHADER_LOC_MATRIX_PROJECTION

    -
    public static final int RL_SHADER_LOC_MATRIX_PROJECTION
    enum rlShaderLocationIndex
    @@ -20582,13 +17909,11 @@

    RL_SHADER_LOC_MATRIX_PROJECTION

    -
  • RL_SHADER_LOC_MATRIX_MODEL

    -
    public static final int RL_SHADER_LOC_MATRIX_MODEL
    enum rlShaderLocationIndex
    @@ -20599,13 +17924,11 @@

    RL_SHADER_LOC_MATRIX_MODEL

    -
  • RL_SHADER_LOC_MATRIX_NORMAL

    -
    public static final int RL_SHADER_LOC_MATRIX_NORMAL
    enum rlShaderLocationIndex
    @@ -20616,13 +17939,11 @@

    RL_SHADER_LOC_MATRIX_NORMAL

    -
  • RL_SHADER_LOC_VECTOR_VIEW

    -
    public static final int RL_SHADER_LOC_VECTOR_VIEW
    enum rlShaderLocationIndex
    @@ -20633,13 +17954,11 @@

    RL_SHADER_LOC_VECTOR_VIEW

    -
  • RL_SHADER_LOC_COLOR_DIFFUSE

    -
    public static final int RL_SHADER_LOC_COLOR_DIFFUSE
    enum rlShaderLocationIndex
    @@ -20650,13 +17969,11 @@

    RL_SHADER_LOC_COLOR_DIFFUSE

    -
  • RL_SHADER_LOC_COLOR_SPECULAR

    -
    public static final int RL_SHADER_LOC_COLOR_SPECULAR
    enum rlShaderLocationIndex
    @@ -20667,13 +17984,11 @@

    RL_SHADER_LOC_COLOR_SPECULAR

    -
  • RL_SHADER_LOC_COLOR_AMBIENT

    -
    public static final int RL_SHADER_LOC_COLOR_AMBIENT
    enum rlShaderLocationIndex
    @@ -20684,13 +17999,11 @@

    RL_SHADER_LOC_COLOR_AMBIENT

    -
  • RL_SHADER_LOC_MAP_ALBEDO

    -
    public static final int RL_SHADER_LOC_MAP_ALBEDO
    enum rlShaderLocationIndex
    @@ -20701,13 +18014,11 @@

    RL_SHADER_LOC_MAP_ALBEDO

    -
  • RL_SHADER_LOC_MAP_METALNESS

    -
    public static final int RL_SHADER_LOC_MAP_METALNESS
    enum rlShaderLocationIndex
    @@ -20718,13 +18029,11 @@

    RL_SHADER_LOC_MAP_METALNESS

    -
  • RL_SHADER_LOC_MAP_NORMAL

    -
    public static final int RL_SHADER_LOC_MAP_NORMAL
    enum rlShaderLocationIndex
    @@ -20735,13 +18044,11 @@

    RL_SHADER_LOC_MAP_NORMAL

    -
  • RL_SHADER_LOC_MAP_ROUGHNESS

    -
    public static final int RL_SHADER_LOC_MAP_ROUGHNESS
    enum rlShaderLocationIndex
    @@ -20752,13 +18059,11 @@

    RL_SHADER_LOC_MAP_ROUGHNESS

    -
  • RL_SHADER_LOC_MAP_OCCLUSION

    -
    public static final int RL_SHADER_LOC_MAP_OCCLUSION
    enum rlShaderLocationIndex
    @@ -20769,13 +18074,11 @@

    RL_SHADER_LOC_MAP_OCCLUSION

    -
  • RL_SHADER_LOC_MAP_EMISSION

    -
    public static final int RL_SHADER_LOC_MAP_EMISSION
    enum rlShaderLocationIndex
    @@ -20786,13 +18089,11 @@

    RL_SHADER_LOC_MAP_EMISSION

    -
  • RL_SHADER_LOC_MAP_HEIGHT

    -
    public static final int RL_SHADER_LOC_MAP_HEIGHT
    enum rlShaderLocationIndex
    @@ -20803,13 +18104,11 @@

    RL_SHADER_LOC_MAP_HEIGHT

    -
  • RL_SHADER_LOC_MAP_CUBEMAP

    -
    public static final int RL_SHADER_LOC_MAP_CUBEMAP
    enum rlShaderLocationIndex
    @@ -20820,13 +18119,11 @@

    RL_SHADER_LOC_MAP_CUBEMAP

    -
  • RL_SHADER_LOC_MAP_IRRADIANCE

    -
    public static final int RL_SHADER_LOC_MAP_IRRADIANCE
    enum rlShaderLocationIndex
    @@ -20837,13 +18134,11 @@

    RL_SHADER_LOC_MAP_IRRADIANCE

    -
  • RL_SHADER_LOC_MAP_PREFILTER

    -
    public static final int RL_SHADER_LOC_MAP_PREFILTER
    enum rlShaderLocationIndex
    @@ -20854,13 +18149,11 @@

    RL_SHADER_LOC_MAP_PREFILTER

    -
  • RL_SHADER_LOC_MAP_BRDF

    -
    public static final int RL_SHADER_LOC_MAP_BRDF
    enum rlShaderLocationIndex
    @@ -20871,13 +18164,11 @@

    RL_SHADER_LOC_MAP_BRDF

    -
  • RL_SHADER_LOC_MAP_DIFFUSE

    -
    public static final int RL_SHADER_LOC_MAP_DIFFUSE
    See Also:
    @@ -20887,13 +18178,11 @@

    RL_SHADER_LOC_MAP_DIFFUSE

    -
  • RL_SHADER_LOC_MAP_SPECULAR

    -
    public static final int RL_SHADER_LOC_MAP_SPECULAR
    See Also:
    @@ -20903,13 +18192,11 @@

    RL_SHADER_LOC_MAP_SPECULAR

    -
  • RL_SHADER_UNIFORM_FLOAT

    -
    public static final int RL_SHADER_UNIFORM_FLOAT
    enum rlShaderUniformDataType
    @@ -20920,13 +18207,11 @@

    RL_SHADER_UNIFORM_FLOAT

    -
  • RL_SHADER_UNIFORM_VEC2

    -
    public static final int RL_SHADER_UNIFORM_VEC2
    enum rlShaderUniformDataType
    @@ -20937,13 +18222,11 @@

    RL_SHADER_UNIFORM_VEC2

    -
  • RL_SHADER_UNIFORM_VEC3

    -
    public static final int RL_SHADER_UNIFORM_VEC3
    enum rlShaderUniformDataType
    @@ -20954,13 +18237,11 @@

    RL_SHADER_UNIFORM_VEC3

    -
  • RL_SHADER_UNIFORM_VEC4

    -
    public static final int RL_SHADER_UNIFORM_VEC4
    enum rlShaderUniformDataType
    @@ -20971,13 +18252,11 @@

    RL_SHADER_UNIFORM_VEC4

    -
  • RL_SHADER_UNIFORM_INT

    -
    public static final int RL_SHADER_UNIFORM_INT
    enum rlShaderUniformDataType
    @@ -20988,13 +18267,11 @@

    RL_SHADER_UNIFORM_INT

    -
  • RL_SHADER_UNIFORM_IVEC2

    -
    public static final int RL_SHADER_UNIFORM_IVEC2
    enum rlShaderUniformDataType
    @@ -21005,13 +18282,11 @@

    RL_SHADER_UNIFORM_IVEC2

    -
  • RL_SHADER_UNIFORM_IVEC3

    -
    public static final int RL_SHADER_UNIFORM_IVEC3
    enum rlShaderUniformDataType
    @@ -21022,13 +18297,11 @@

    RL_SHADER_UNIFORM_IVEC3

    -
  • RL_SHADER_UNIFORM_IVEC4

    -
    public static final int RL_SHADER_UNIFORM_IVEC4
    enum rlShaderUniformDataType
    @@ -21039,13 +18312,11 @@

    RL_SHADER_UNIFORM_IVEC4

    -
  • RL_SHADER_UNIFORM_UINT

    -
    public static final int RL_SHADER_UNIFORM_UINT
    enum rlShaderUniformDataType
    @@ -21056,13 +18327,11 @@

    RL_SHADER_UNIFORM_UINT

    -
  • RL_SHADER_UNIFORM_UIVEC2

    -
    public static final int RL_SHADER_UNIFORM_UIVEC2
    enum rlShaderUniformDataType
    @@ -21073,13 +18342,11 @@

    RL_SHADER_UNIFORM_UIVEC2

    -
  • RL_SHADER_UNIFORM_UIVEC3

    -
    public static final int RL_SHADER_UNIFORM_UIVEC3
    enum rlShaderUniformDataType
    @@ -21090,13 +18357,11 @@

    RL_SHADER_UNIFORM_UIVEC3

    -
  • RL_SHADER_UNIFORM_UIVEC4

    -
    public static final int RL_SHADER_UNIFORM_UIVEC4
    enum rlShaderUniformDataType
    @@ -21107,13 +18372,11 @@

    RL_SHADER_UNIFORM_UIVEC4

    -
  • RL_SHADER_UNIFORM_SAMPLER2D

    -
    public static final int RL_SHADER_UNIFORM_SAMPLER2D
    enum rlShaderUniformDataType
    @@ -21124,13 +18387,11 @@

    RL_SHADER_UNIFORM_SAMPLER2D

    -
  • RL_SHADER_ATTRIB_FLOAT

    -
    public static final int RL_SHADER_ATTRIB_FLOAT
    enum rlShaderAttributeDataType
    @@ -21141,13 +18402,11 @@

    RL_SHADER_ATTRIB_FLOAT

    -
  • RL_SHADER_ATTRIB_VEC2

    -
    public static final int RL_SHADER_ATTRIB_VEC2
    enum rlShaderAttributeDataType
    @@ -21158,13 +18417,11 @@

    RL_SHADER_ATTRIB_VEC2

    -
  • RL_SHADER_ATTRIB_VEC3

    -
    public static final int RL_SHADER_ATTRIB_VEC3
    enum rlShaderAttributeDataType
    @@ -21175,13 +18432,11 @@

    RL_SHADER_ATTRIB_VEC3

    -
  • RL_SHADER_ATTRIB_VEC4

    -
    public static final int RL_SHADER_ATTRIB_VEC4
    enum rlShaderAttributeDataType
    @@ -21192,13 +18447,11 @@

    RL_SHADER_ATTRIB_VEC4

    -
  • RL_ATTACHMENT_COLOR_CHANNEL0

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL0
    enum rlFramebufferAttachType
    @@ -21209,13 +18462,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL0

    -
  • RL_ATTACHMENT_COLOR_CHANNEL1

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL1
    enum rlFramebufferAttachType
    @@ -21226,13 +18477,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL1

    -
  • RL_ATTACHMENT_COLOR_CHANNEL2

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL2
    enum rlFramebufferAttachType
    @@ -21243,13 +18492,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL2

    -
  • RL_ATTACHMENT_COLOR_CHANNEL3

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL3
    enum rlFramebufferAttachType
    @@ -21260,13 +18507,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL3

    -
  • RL_ATTACHMENT_COLOR_CHANNEL4

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL4
    enum rlFramebufferAttachType
    @@ -21277,13 +18522,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL4

    -
  • RL_ATTACHMENT_COLOR_CHANNEL5

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL5
    enum rlFramebufferAttachType
    @@ -21294,13 +18537,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL5

    -
  • RL_ATTACHMENT_COLOR_CHANNEL6

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL6
    enum rlFramebufferAttachType
    @@ -21311,13 +18552,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL6

    -
  • RL_ATTACHMENT_COLOR_CHANNEL7

    -
    public static final int RL_ATTACHMENT_COLOR_CHANNEL7
    enum rlFramebufferAttachType
    @@ -21328,13 +18567,11 @@

    RL_ATTACHMENT_COLOR_CHANNEL7

    -
  • RL_ATTACHMENT_DEPTH

    -
    public static final int RL_ATTACHMENT_DEPTH
    enum rlFramebufferAttachType
    @@ -21345,13 +18582,11 @@

    RL_ATTACHMENT_DEPTH

    -
  • RL_ATTACHMENT_STENCIL

    -
    public static final int RL_ATTACHMENT_STENCIL
    enum rlFramebufferAttachType
    @@ -21362,13 +18597,11 @@

    RL_ATTACHMENT_STENCIL

    -
  • RL_ATTACHMENT_CUBEMAP_POSITIVE_X

    -
    public static final int RL_ATTACHMENT_CUBEMAP_POSITIVE_X
    enum rlFramebufferAttachTextureType
    @@ -21379,13 +18612,11 @@

    RL_ATTACHMENT_CUBEMAP_POSITIVE_X

    -
  • RL_ATTACHMENT_CUBEMAP_NEGATIVE_X

    -
    public static final int RL_ATTACHMENT_CUBEMAP_NEGATIVE_X
    enum rlFramebufferAttachTextureType
    @@ -21396,13 +18627,11 @@

    RL_ATTACHMENT_CUBEMAP_NEGATIVE_X

    -
  • RL_ATTACHMENT_CUBEMAP_POSITIVE_Y

    -
    public static final int RL_ATTACHMENT_CUBEMAP_POSITIVE_Y
    enum rlFramebufferAttachTextureType
    @@ -21413,13 +18642,11 @@

    RL_ATTACHMENT_CUBEMAP_POSITIVE_Y

    -
  • RL_ATTACHMENT_CUBEMAP_NEGATIVE_Y

    -
    public static final int RL_ATTACHMENT_CUBEMAP_NEGATIVE_Y
    enum rlFramebufferAttachTextureType
    @@ -21430,13 +18657,11 @@

    RL_ATTACHMENT_CUBEMAP_NEGATIVE_Y

    -
  • RL_ATTACHMENT_CUBEMAP_POSITIVE_Z

    -
    public static final int RL_ATTACHMENT_CUBEMAP_POSITIVE_Z
    enum rlFramebufferAttachTextureType
    @@ -21447,13 +18672,11 @@

    RL_ATTACHMENT_CUBEMAP_POSITIVE_Z

    -
  • RL_ATTACHMENT_CUBEMAP_NEGATIVE_Z

    -
    public static final int RL_ATTACHMENT_CUBEMAP_NEGATIVE_Z
    enum rlFramebufferAttachTextureType
    @@ -21464,13 +18687,11 @@

    RL_ATTACHMENT_CUBEMAP_NEGATIVE_Z

    -
  • RL_ATTACHMENT_TEXTURE2D

    -
    public static final int RL_ATTACHMENT_TEXTURE2D
    enum rlFramebufferAttachTextureType
    @@ -21481,13 +18702,11 @@

    RL_ATTACHMENT_TEXTURE2D

    -
  • RL_ATTACHMENT_RENDERBUFFER

    -
    public static final int RL_ATTACHMENT_RENDERBUFFER
    enum rlFramebufferAttachTextureType
    @@ -21498,13 +18717,11 @@

    RL_ATTACHMENT_RENDERBUFFER

    -
  • RL_CULL_FACE_FRONT

    -
    public static final int RL_CULL_FACE_FRONT
    enum rlCullMode
    @@ -21515,13 +18732,11 @@

    RL_CULL_FACE_FRONT

    -
  • RL_CULL_FACE_BACK

    -
    public static final int RL_CULL_FACE_BACK
    enum rlCullMode
    @@ -21532,13 +18747,11 @@

    RL_CULL_FACE_BACK

    -
  • EPSILON

    -
    public static final double EPSILON
    raymath v2.0 - Math functions to work with Vector2, Vector3, Matrix and Quaternions @@ -21555,24 +18768,29 @@

    EPSILON

    - Functions use always a "result" variable for return (except C++ operators) - Functions are always defined inline - Angles are always in radians (DEG2RAD/RAD2DEG macros provided for convenience) - - No compound literals used to make sure libray is compatible with C++ + - No compound literals used to make sure the library is compatible with C++ CONFIGURATION: #define RAYMATH_IMPLEMENTATION - Generates the implementation of the library into the included file. + Generates the implementation of the library into the included file If not defined, the library is in header only mode and can be included in other headers - or source files without problems. But only ONE file should hold the implementation. + or source files without problems. But only ONE file should hold the implementation #define RAYMATH_STATIC_INLINE - Define static inline functions code, so #include header suffices for use. - This may use up lots of memory. + Define static inline functions code, so #include header suffices for use + This may use up lots of memory #define RAYMATH_DISABLE_CPP_OPERATORS Disables C++ operator overloads for raymath types. + #define RAYMATH_USE_SIMD_INTRINSICS 1 + Try to enable SIMD intrinsics for MatrixMultiply() + Note that users enabling it must be aware of the target platform where application will + run to support the selected SIMD intrinsic, for now, only SSE is supported + LICENSE: zlib/libpng - Copyright (c) 2015-2024 Ramon Santamaria (\raysan5) + Copyright (c) 2015-2026 Ramon Santamaria (\raysan5) This software is provided "as-is", without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -21596,13 +18814,11 @@

    EPSILON

    -
  • PHYSAC_MAX_BODIES

    -
    public static final int PHYSAC_MAX_BODIES
    Physac v1.1 - 2D Physics library for videogames @@ -21678,13 +18894,11 @@

    PHYSAC_MAX_BODIES

    -
  • PHYSAC_MAX_MANIFOLDS

    -
    public static final int PHYSAC_MAX_MANIFOLDS
    See Also:
    @@ -21694,13 +18908,11 @@

    PHYSAC_MAX_MANIFOLDS

    -
  • PHYSAC_MAX_VERTICES

    -
    public static final int PHYSAC_MAX_VERTICES
    See Also:
    @@ -21710,13 +18922,11 @@

    PHYSAC_MAX_VERTICES

    -
  • PHYSAC_DEFAULT_CIRCLE_VERTICES

    -
    public static final int PHYSAC_DEFAULT_CIRCLE_VERTICES
    See Also:
    @@ -21726,13 +18936,11 @@

    PHYSAC_DEFAULT_CIRCLE_VERTICES

    -
  • PHYSAC_COLLISION_ITERATIONS

    -
    public static final int PHYSAC_COLLISION_ITERATIONS
    See Also:
    @@ -21742,13 +18950,11 @@

    PHYSAC_COLLISION_ITERATIONS

    -
  • PHYSAC_PENETRATION_ALLOWANCE

    -
    public static final double PHYSAC_PENETRATION_ALLOWANCE
    See Also:
    @@ -21758,13 +18964,11 @@

    PHYSAC_PENETRATION_ALLOWANCE

    -
  • PHYSAC_PENETRATION_CORRECTION

    -
    public static final double PHYSAC_PENETRATION_CORRECTION
    See Also:
    @@ -21774,13 +18978,11 @@

    PHYSAC_PENETRATION_CORRECTION

    -
  • PHYSAC_PI

    -
    public static final double PHYSAC_PI
    See Also:
    @@ -21790,13 +18992,11 @@

    PHYSAC_PI

    -
  • PHYSAC_DEG2RAD

    -
    public static final double PHYSAC_DEG2RAD
    See Also:
    @@ -21806,13 +19006,11 @@

    PHYSAC_DEG2RAD

    -
  • PHYSICS_CIRCLE

    -
    public static final int PHYSICS_CIRCLE
    enum PhysicsShapeType
    @@ -21823,13 +19021,11 @@

    PHYSICS_CIRCLE

    -
  • PHYSICS_POLYGON

    -
    public static final int PHYSICS_POLYGON
    enum PhysicsShapeType
    @@ -21840,19 +19036,17 @@

    PHYSICS_POLYGON

    -
  • RAYGUI_VERSION_MAJOR

    -
    public static final int RAYGUI_VERSION_MAJOR
    -
    raygui v4.5-dev - A simple and easy-to-use immediate-mode gui library +
    raygui v5.0 - A simple and easy-to-use immediate-mode gui library DESCRIPTION: raygui is a tools-dev-focused immediate-mode-gui library based on raylib but also - available as a standalone library, as long as input and drawing functions are provided. + available as a standalone library, as long as input and drawing functions are provided FEATURES: - Immediate-mode gui, minimal retained data @@ -21875,7 +19069,7 @@

    RAYGUI_VERSION_MAJOR

    - WARNING: GuiLoadStyle() and GuiLoadStyle{Custom}() functions, allocate memory for font atlas recs and glyphs, freeing that memory is (usually) up to the user, no unload function is explicitly provided... but note that GuiLoadStyleDefault() unloads - by default any previously loaded font (texture, recs, glyphs). + by default any previously loaded font (texture, recs, glyphs) - Global UI alpha (guiAlpha) is applied inside GuiDrawRectangle() and GuiDrawText() functions CONTROLS PROVIDED: @@ -21913,7 +19107,7 @@

    RAYGUI_VERSION_MAJOR

    - MessageBox - Window, Label, Button - TextInputBox - Window, Label, TextBox, Button - It also provides a set of functions for styling the controls based on its properties (size, color). + It also provides a set of functions for styling the controls based on its properties (size, color) RAYGUI STYLE (guiStyle): @@ -21925,14 +19119,14 @@

    RAYGUI_VERSION_MAJOR

    static unsigned int guiStyle[RAYGUI_MAX_CONTROLS*(RAYGUI_MAX_PROPS_BASE + RAYGUI_MAX_PROPS_EXTENDED)]; - guiStyle size is by default: 16*(16 + 8) = 384*4 = 1536 bytes = 1.5 KB + guiStyle size is by default: 16*(16 + 8) = 384 int = 384*4 bytes = 1536 bytes = 1.5 KB Note that the first set of BASE properties (by default guiStyle[0..15]) belong to the generic style used for all controls, when any of those base values is set, it is automatically populated to all - controls, so, specific control values overwriting generic style should be set after base values. + controls, so, specific control values overwriting generic style should be set after base values - After the first BASE set we have the EXTENDED properties (by default guiStyle[16..23]), those - properties are actually common to all controls and can not be overwritten individually (like BASE ones) + After the first BASE properties set, the EXTENDED properties set is defined (by default guiStyle[16..23]), + those properties are actually common to all controls and can not be overwritten individually (like BASE ones) Some of those properties are: TEXT_SIZE, TEXT_SPACING, LINE_COLOR, BACKGROUND_COLOR Custom control properties can be defined using the EXTENDED properties for each independent control. @@ -21948,7 +19142,7 @@

    RAYGUI_VERSION_MAJOR

    Every icon is codified in binary form, using 1 bit per pixel, so, every 16x16 icon requires 8 integers (16*16/32) to be stored in memory. - When the icon is draw, actually one quad per pixel is drawn if the bit for that pixel is set. + When the icon is draw, actually one quad per pixel is drawn if the bit for that pixel is set The global icons array size is fixed and depends on the number of icons and size: @@ -21960,20 +19154,20 @@

    RAYGUI_VERSION_MAJOR

    RAYGUI LAYOUT: raygui currently does not provide an auto-layout mechanism like other libraries, - layouts must be defined manually on controls drawing, providing the right bounds Rectangle for it. + layouts must be defined manually on controls drawing, providing the right bounds Rectangle for it TOOL: rGuiLayout is a visual tool to create raygui layouts: github.com/raysan5/rguilayout CONFIGURATION: #define RAYGUI_IMPLEMENTATION - Generates the implementation of the library into the included file. + Generates the implementation of the library into the included file If not defined, the library is in header only mode and can be included in other headers - or source files without problems. But only ONE file should hold the implementation. + or source files without problems. But only ONE file should hold the implementation #define RAYGUI_STANDALONE Avoid raylib.h header inclusion in this file. Data types defined on raylib are defined internally in the library and input management and drawing functions must be provided by - the user (check library implementation for further details). + the user (check library implementation for further details) #define RAYGUI_NO_ICONS Avoid including embedded ricons data (256 icons, 16x16 pixels, 1-bit per pixel, 2KB) @@ -21989,12 +19183,18 @@

    RAYGUI_VERSION_MAJOR

    Draw text bounds rectangles for debug VERSIONS HISTORY: - 4.5-dev (Sep-2024) Current dev version... + 5.0 (xx-Mar-2026) ADDED: Support up to 32 controls (v500) ADDED: guiControlExclusiveMode and guiControlExclusiveRec for exclusive modes ADDED: GuiValueBoxFloat() ADDED: GuiDropdonwBox() properties: DROPDOWN_ARROW_HIDDEN, DROPDOWN_ROLL_UP ADDED: GuiListView() property: LIST_ITEMS_BORDER_WIDTH + ADDED: GuiLoadIconsFromMemory() ADDED: Multiple new icons + ADDED: Macros for inputs customization, raylib decoupling + REMOVED: GuiSpinner() from controls list, using BUTTON + VALUEBOX properties + REMOVED: GuiSliderPro(), functionality was redundant + REVIEWED: Controls using text labels to use LABEL properties + REVIEWED: Replaced sprintf() by snprintf() for more safety REVIEWED: GuiTabBar(), close tab with mouse middle button REVIEWED: GuiScrollPanel(), scroll speed proportional to content REVIEWED: GuiDropdownBox(), support roll up and hidden arrow @@ -22004,8 +19204,11 @@

    RAYGUI_VERSION_MAJOR

    REVIEWED: GuiIconText(), increase buffer size and reviewed padding REVIEWED: GuiDrawText(), improved wrap mode drawing REVIEWED: GuiScrollBar(), minor tweaks + REVIEWED: GuiProgressBar(), improved borders computing + REVIEWED: GuiTextBox(), multiple improvements: autocursor and more REVIEWED: Functions descriptions, removed wrong return value reference REDESIGNED: GuiColorPanel(), improved HSV RGBA convertion + REDESIGNED: WARNING: TEXT_LINE_SPACING does not consider text height, only lines spacing 4.0 (12-Sep-2023) ADDED: GuiToggleSlider() ADDED: GuiColorPickerHSV() and GuiColorPanelHSV() @@ -22107,16 +19310,16 @@

    RAYGUI_VERSION_MAJOR

    1.4 (15-Jun-2017) Rewritten all GUI functions (removed useless ones) 1.3 (12-Jun-2017) Complete redesign of style system 1.1 (01-Jun-2017) Complete review of the library - 1.0 (07-Jun-2016) Converted to header-only by Ramon Santamaria. - 0.9 (07-Mar-2016) Reviewed and tested by Albert Martos, Ian Eito, Sergio Martinez and Ramon Santamaria. - 0.8 (27-Aug-2015) Initial release. Implemented by Kevin Gato, Daniel Nicolás and Ramon Santamaria. + 1.0 (07-Jun-2016) Converted to header-only by Ramon Santamaria + 0.9 (07-Mar-2016) Reviewed and tested by Albert Martos, Ian Eito, Sergio Martinez and Ramon Santamaria + 0.8 (27-Aug-2015) Initial release. Implemented by Kevin Gato, Daniel Nicolás and Ramon Santamaria DEPENDENCIES: - raylib 5.0 - Inputs reading (keyboard/mouse), shapes drawing, font loading and text drawing + raylib 5.6-dev - Inputs reading (keyboard/mouse), shapes drawing, font loading and text drawing STANDALONE MODE: By default raygui depends on raylib mostly for the inputs and the drawing functionality but that dependency can be disabled - with the config flag RAYGUI_STANDALONE. In that case is up to the user to provide another backend to cover library needs. + with the config flag RAYGUI_STANDALONE. In that case is up to the user to provide another backend to cover library needs The following functions should be redefined for a custom backend: @@ -22157,7 +19360,7 @@

    RAYGUI_VERSION_MAJOR

    LICENSE: zlib/libpng - Copyright (c) 2014-2024 Ramon Santamaria (\raysan5) + Copyright (c) 2014-2026 Ramon Santamaria (\raysan5) This software is provided "as-is", without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -22181,13 +19384,11 @@

    RAYGUI_VERSION_MAJOR

    -
  • RAYGUI_VERSION_MINOR

    -
    public static final int RAYGUI_VERSION_MINOR
    See Also:
    @@ -22197,13 +19398,11 @@

    RAYGUI_VERSION_MINOR

    -
  • RAYGUI_VERSION_PATCH

    -
    public static final int RAYGUI_VERSION_PATCH
    See Also:
    @@ -22213,14 +19412,12 @@

    RAYGUI_VERSION_PATCH

    -
  • RAYGUI_VERSION

    -
    -
    public static final String RAYGUI_VERSION
    +
    public static final String RAYGUI_VERSION
    See Also:
    @@ -22229,13 +19426,47 @@

    RAYGUI_VERSION

    -
    +
    +
  • +
  • +
    +

    GUI_BUTTON_DOWN

    +
    public static final int GUI_BUTTON_DOWN
    +
    +
  • +
  • +
    +

    GUI_BUTTON_DOWN_ALT

    +
    public static final int GUI_BUTTON_DOWN_ALT
    +
    +
  • +
  • +
    +

    GUI_BUTTON_PRESSED

    +
    public static final int GUI_BUTTON_PRESSED
    +
    +
  • +
  • +
    +

    GUI_BUTTON_RELEASED

    +
    public static final int GUI_BUTTON_RELEASED
    +
    +
  • +
  • +
    +

    GUI_SCROLL_DELTA

    +
    public static final int GUI_SCROLL_DELTA
    +
    +
  • +
  • +
    +

    GUI_INPUT_KEY

    +
    public static final int GUI_INPUT_KEY
  • STATE_NORMAL

    -
    public static final int STATE_NORMAL
    enum GuiState
    @@ -22246,13 +19477,11 @@

    STATE_NORMAL

    -
  • STATE_FOCUSED

    -
    public static final int STATE_FOCUSED
    enum GuiState
    @@ -22263,13 +19492,11 @@

    STATE_FOCUSED

    -
  • STATE_PRESSED

    -
    public static final int STATE_PRESSED
    enum GuiState
    @@ -22280,13 +19507,11 @@

    STATE_PRESSED

    -
  • STATE_DISABLED

    -
    public static final int STATE_DISABLED
    enum GuiState
    @@ -22297,13 +19522,11 @@

    STATE_DISABLED

    -
  • TEXT_ALIGN_LEFT

    -
    public static final int TEXT_ALIGN_LEFT
    enum GuiTextAlignment
    @@ -22314,13 +19537,11 @@

    TEXT_ALIGN_LEFT

    -
  • TEXT_ALIGN_CENTER

    -
    public static final int TEXT_ALIGN_CENTER
    enum GuiTextAlignment
    @@ -22331,13 +19552,11 @@

    TEXT_ALIGN_CENTER

    -
  • TEXT_ALIGN_RIGHT

    -
    public static final int TEXT_ALIGN_RIGHT
    enum GuiTextAlignment
    @@ -22348,13 +19567,11 @@

    TEXT_ALIGN_RIGHT

    -
  • TEXT_ALIGN_TOP

    -
    public static final int TEXT_ALIGN_TOP
    enum GuiTextAlignmentVertical
    @@ -22365,13 +19582,11 @@

    TEXT_ALIGN_TOP

    -
  • TEXT_ALIGN_MIDDLE

    -
    public static final int TEXT_ALIGN_MIDDLE
    enum GuiTextAlignmentVertical
    @@ -22382,13 +19597,11 @@

    TEXT_ALIGN_MIDDLE

    -
  • TEXT_ALIGN_BOTTOM

    -
    public static final int TEXT_ALIGN_BOTTOM
    enum GuiTextAlignmentVertical
    @@ -22399,13 +19612,11 @@

    TEXT_ALIGN_BOTTOM

    -
  • TEXT_WRAP_NONE

    -
    public static final int TEXT_WRAP_NONE
    enum GuiTextWrapMode
    @@ -22416,13 +19627,11 @@

    TEXT_WRAP_NONE

    -
  • TEXT_WRAP_CHAR

    -
    public static final int TEXT_WRAP_CHAR
    enum GuiTextWrapMode
    @@ -22433,13 +19642,11 @@

    TEXT_WRAP_CHAR

    -
  • TEXT_WRAP_WORD

    -
    public static final int TEXT_WRAP_WORD
    enum GuiTextWrapMode
    @@ -22450,13 +19657,11 @@

    TEXT_WRAP_WORD

    -
  • DEFAULT

    -
    public static final int DEFAULT
    enum GuiControl
    @@ -22467,13 +19672,11 @@

    DEFAULT

    -
  • LABEL

    -
    public static final int LABEL
    enum GuiControl
    @@ -22484,13 +19687,11 @@

    LABEL

    -
  • BUTTON

    -
    public static final int BUTTON
    enum GuiControl
    @@ -22501,13 +19702,11 @@

    BUTTON

    -
  • TOGGLE

    -
    public static final int TOGGLE
    enum GuiControl
    @@ -22518,13 +19717,11 @@

    TOGGLE

    -
  • SLIDER

    -
    public static final int SLIDER
    enum GuiControl
    @@ -22535,13 +19732,11 @@

    SLIDER

    -
  • PROGRESSBAR

    -
    public static final int PROGRESSBAR
    enum GuiControl
    @@ -22552,13 +19747,11 @@

    PROGRESSBAR

    -
  • CHECKBOX

    -
    public static final int CHECKBOX
    enum GuiControl
    @@ -22569,13 +19762,11 @@

    CHECKBOX

    -
  • COMBOBOX

    -
    public static final int COMBOBOX
    enum GuiControl
    @@ -22586,13 +19777,11 @@

    COMBOBOX

    -
  • TEXTBOX

    -
    public static final int TEXTBOX
    enum GuiControl
    @@ -22620,13 +19807,11 @@

    TEXTBOX

    -
  • VALUEBOX

    -
    public static final int VALUEBOX
    enum GuiControl
    @@ -22637,30 +19822,26 @@

    VALUEBOX

    -
  • -
    -

    SPINNER

    -
    -
    public static final int SPINNER
    +
    +

    CONTROL11

    +
    public static final int CONTROL11
    enum GuiControl
    See Also:
    -
  • LISTVIEW

    -
    public static final int LISTVIEW
    enum GuiControl
    @@ -22671,13 +19852,11 @@

    LISTVIEW

    -
  • COLORPICKER

    -
    public static final int COLORPICKER
    enum GuiControl
    @@ -22688,13 +19867,11 @@

    COLORPICKER

    -
  • SCROLLBAR

    -
    public static final int SCROLLBAR
    enum GuiControl
    @@ -22705,13 +19882,11 @@

    SCROLLBAR

    -
  • STATUSBAR

    -
    public static final int STATUSBAR
    enum GuiControl
    @@ -22722,13 +19897,11 @@

    STATUSBAR

    -
  • BORDER_COLOR_NORMAL

    -
    public static final int BORDER_COLOR_NORMAL
    enum GuiControlProperty
    @@ -22739,13 +19912,11 @@

    BORDER_COLOR_NORMAL

    -
  • BASE_COLOR_NORMAL

    -
    public static final int BASE_COLOR_NORMAL
    enum GuiControlProperty
    @@ -22756,13 +19927,11 @@

    BASE_COLOR_NORMAL

    -
  • TEXT_COLOR_NORMAL

    -
    public static final int TEXT_COLOR_NORMAL
    enum GuiControlProperty
    @@ -22773,13 +19942,11 @@

    TEXT_COLOR_NORMAL

    -
  • BORDER_COLOR_FOCUSED

    -
    public static final int BORDER_COLOR_FOCUSED
    enum GuiControlProperty
    @@ -22790,13 +19957,11 @@

    BORDER_COLOR_FOCUSED

    -
  • BASE_COLOR_FOCUSED

    -
    public static final int BASE_COLOR_FOCUSED
    enum GuiControlProperty
    @@ -22807,13 +19972,11 @@

    BASE_COLOR_FOCUSED

    -
  • TEXT_COLOR_FOCUSED

    -
    public static final int TEXT_COLOR_FOCUSED
    enum GuiControlProperty
    @@ -22824,13 +19987,11 @@

    TEXT_COLOR_FOCUSED

    -
  • BORDER_COLOR_PRESSED

    -
    public static final int BORDER_COLOR_PRESSED
    enum GuiControlProperty
    @@ -22841,13 +20002,11 @@

    BORDER_COLOR_PRESSED

    -
  • BASE_COLOR_PRESSED

    -
    public static final int BASE_COLOR_PRESSED
    enum GuiControlProperty
    @@ -22858,13 +20017,11 @@

    BASE_COLOR_PRESSED

    -
  • TEXT_COLOR_PRESSED

    -
    public static final int TEXT_COLOR_PRESSED
    enum GuiControlProperty
    @@ -22875,13 +20032,11 @@

    TEXT_COLOR_PRESSED

    -
  • BORDER_COLOR_DISABLED

    -
    public static final int BORDER_COLOR_DISABLED
    enum GuiControlProperty
    @@ -22892,13 +20047,11 @@

    BORDER_COLOR_DISABLED

    -
  • BASE_COLOR_DISABLED

    -
    public static final int BASE_COLOR_DISABLED
    enum GuiControlProperty
    @@ -22909,13 +20062,11 @@

    BASE_COLOR_DISABLED

    -
  • TEXT_COLOR_DISABLED

    -
    public static final int TEXT_COLOR_DISABLED
    enum GuiControlProperty
    @@ -22926,13 +20077,11 @@

    TEXT_COLOR_DISABLED

    -
  • BORDER_WIDTH

    -
    public static final int BORDER_WIDTH
    enum GuiControlProperty
    @@ -22943,13 +20092,11 @@

    BORDER_WIDTH

    -
  • TEXT_PADDING

    -
    public static final int TEXT_PADDING
    enum GuiControlProperty
    @@ -22960,13 +20107,11 @@

    TEXT_PADDING

    -
  • TEXT_ALIGNMENT

    -
    public static final int TEXT_ALIGNMENT
    enum GuiControlProperty
    @@ -22977,13 +20122,11 @@

    TEXT_ALIGNMENT

    -
  • TEXT_SIZE

    -
    public static final int TEXT_SIZE
    enum GuiDefaultProperty
    @@ -22994,13 +20137,11 @@

    TEXT_SIZE

    -
  • TEXT_SPACING

    -
    public static final int TEXT_SPACING
    enum GuiDefaultProperty
    @@ -23011,13 +20152,11 @@

    TEXT_SPACING

    -
  • LINE_COLOR

    -
    public static final int LINE_COLOR
    enum GuiDefaultProperty
    @@ -23028,13 +20167,11 @@

    LINE_COLOR

    -
  • BACKGROUND_COLOR

    -
    public static final int BACKGROUND_COLOR
    enum GuiDefaultProperty
    @@ -23045,13 +20182,11 @@

    BACKGROUND_COLOR

    -
  • TEXT_LINE_SPACING

    -
    public static final int TEXT_LINE_SPACING
    enum GuiDefaultProperty
    @@ -23062,13 +20197,11 @@

    TEXT_LINE_SPACING

    -
  • TEXT_ALIGNMENT_VERTICAL

    -
    public static final int TEXT_ALIGNMENT_VERTICAL
    enum GuiDefaultProperty
    @@ -23079,13 +20212,11 @@

    TEXT_ALIGNMENT_VERTICAL

    -
  • TEXT_WRAP_MODE

    -
    public static final int TEXT_WRAP_MODE
    enum GuiDefaultProperty
    @@ -23096,13 +20227,11 @@

    TEXT_WRAP_MODE

    -
  • GROUP_PADDING

    -
    public static final int GROUP_PADDING
    enum GuiToggleProperty
    @@ -23113,13 +20242,11 @@

    GROUP_PADDING

    -
  • SLIDER_WIDTH

    -
    public static final int SLIDER_WIDTH
    enum GuiSliderProperty
    @@ -23130,13 +20257,11 @@

    SLIDER_WIDTH

    -
  • SLIDER_PADDING

    -
    public static final int SLIDER_PADDING
    enum GuiSliderProperty
    @@ -23147,13 +20272,11 @@

    SLIDER_PADDING

    -
  • PROGRESS_PADDING

    -
    public static final int PROGRESS_PADDING
    enum GuiProgressBarProperty
    @@ -23164,13 +20287,26 @@

    PROGRESS_PADDING

    -
    +
    +
  • +
  • +
    +

    PROGRESS_SIDE

    +
    public static final int PROGRESS_SIDE
    +
    enum GuiProgressBarProperty
    +
    +
    See Also:
    +
    + +
    +
  • ARROWS_SIZE

    -
    public static final int ARROWS_SIZE
    enum GuiScrollBarProperty
    @@ -23181,13 +20317,11 @@

    ARROWS_SIZE

    -
  • ARROWS_VISIBLE

    -
    public static final int ARROWS_VISIBLE
    enum GuiScrollBarProperty
    @@ -23198,13 +20332,11 @@

    ARROWS_VISIBLE

    -
  • SCROLL_SLIDER_PADDING

    -
    public static final int SCROLL_SLIDER_PADDING
    enum GuiScrollBarProperty
    @@ -23215,13 +20347,11 @@

    SCROLL_SLIDER_PADDING

    -
  • SCROLL_SLIDER_SIZE

    -
    public static final int SCROLL_SLIDER_SIZE
    enum GuiScrollBarProperty
    @@ -23232,13 +20362,11 @@

    SCROLL_SLIDER_SIZE

    -
  • SCROLL_PADDING

    -
    public static final int SCROLL_PADDING
    enum GuiScrollBarProperty
    @@ -23249,13 +20377,11 @@

    SCROLL_PADDING

    -
  • SCROLL_SPEED

    -
    public static final int SCROLL_SPEED
    enum GuiScrollBarProperty
    @@ -23266,13 +20392,11 @@

    SCROLL_SPEED

    -
  • CHECK_PADDING

    -
    public static final int CHECK_PADDING
    enum GuiCheckBoxProperty
    @@ -23283,13 +20407,11 @@

    CHECK_PADDING

    -
  • COMBO_BUTTON_WIDTH

    -
    public static final int COMBO_BUTTON_WIDTH
    enum GuiComboBoxProperty
    @@ -23300,13 +20422,11 @@

    COMBO_BUTTON_WIDTH

    -
  • COMBO_BUTTON_SPACING

    -
    public static final int COMBO_BUTTON_SPACING
    enum GuiComboBoxProperty
    @@ -23317,13 +20437,11 @@

    COMBO_BUTTON_SPACING

    -
  • ARROW_PADDING

    -
    public static final int ARROW_PADDING
    enum GuiDropdownBoxProperty
    @@ -23334,13 +20452,11 @@

    ARROW_PADDING

    -
  • TEXT_READONLY

    -
    public static final int TEXT_READONLY
    enum GuiTextBoxProperty
    @@ -23402,47 +20512,41 @@

    TEXT_READONLY

    -
  • -
    -

    SPIN_BUTTON_WIDTH

    -
    -
    public static final int SPIN_BUTTON_WIDTH
    -
    enum GuiSpinnerProperty
    +
    +

    SPINNER_BUTTON_WIDTH

    +
    public static final int SPINNER_BUTTON_WIDTH
    +
    enum GuiValueBoxProperty
    See Also:
    -
  • -
    -

    SPIN_BUTTON_SPACING

    -
    -
    public static final int SPIN_BUTTON_SPACING
    -
    enum GuiSpinnerProperty
    +
    +

    SPINNER_BUTTON_SPACING

    +
    public static final int SPINNER_BUTTON_SPACING
    +
    enum GuiValueBoxProperty
    See Also:
    -
  • LIST_ITEMS_HEIGHT

    -
    public static final int LIST_ITEMS_HEIGHT
    enum GuiListViewProperty
    @@ -23453,13 +20557,11 @@

    LIST_ITEMS_HEIGHT

    -
  • LIST_ITEMS_SPACING

    -
    public static final int LIST_ITEMS_SPACING
    enum GuiListViewProperty
    @@ -23470,13 +20572,11 @@

    LIST_ITEMS_SPACING

    -
  • SCROLLBAR_WIDTH

    -
    public static final int SCROLLBAR_WIDTH
    enum GuiListViewProperty
    @@ -23487,13 +20587,11 @@

    SCROLLBAR_WIDTH

    -
  • SCROLLBAR_SIDE

    -
    public static final int SCROLLBAR_SIDE
    enum GuiListViewProperty
    @@ -23504,13 +20602,26 @@

    SCROLLBAR_SIDE

    -
    +
    +
  • +
  • +
    +

    LIST_ITEMS_BORDER_NORMAL

    +
    public static final int LIST_ITEMS_BORDER_NORMAL
    +
    enum GuiListViewProperty
    +
    +
    See Also:
    +
    + +
    +
  • LIST_ITEMS_BORDER_WIDTH

    -
    public static final int LIST_ITEMS_BORDER_WIDTH
    enum GuiListViewProperty
    @@ -23521,13 +20632,11 @@

    LIST_ITEMS_BORDER_WIDTH

    -
  • COLOR_SELECTOR_SIZE

    -
    public static final int COLOR_SELECTOR_SIZE
    enum GuiColorPickerProperty
    @@ -23538,13 +20647,11 @@

    COLOR_SELECTOR_SIZE

    -
  • HUEBAR_WIDTH

    -
    public static final int HUEBAR_WIDTH
    enum GuiColorPickerProperty
    @@ -23555,13 +20662,11 @@

    HUEBAR_WIDTH

    -
  • HUEBAR_PADDING

    -
    public static final int HUEBAR_PADDING
    enum GuiColorPickerProperty
    @@ -23572,13 +20677,11 @@

    HUEBAR_PADDING

    -
  • HUEBAR_SELECTOR_HEIGHT

    -
    public static final int HUEBAR_SELECTOR_HEIGHT
    enum GuiColorPickerProperty
    @@ -23589,13 +20692,11 @@

    HUEBAR_SELECTOR_HEIGHT

    -
  • HUEBAR_SELECTOR_OVERFLOW

    -
    public static final int HUEBAR_SELECTOR_OVERFLOW
    enum GuiColorPickerProperty
    @@ -23606,13 +20707,11 @@

    HUEBAR_SELECTOR_OVERFLOW

    -
  • SCROLLBAR_LEFT_SIDE

    -
    public static final int SCROLLBAR_LEFT_SIDE
    See Also:
    @@ -23622,13 +20721,11 @@

    SCROLLBAR_LEFT_SIDE

    -
  • SCROLLBAR_RIGHT_SIDE

    -
    public static final int SCROLLBAR_RIGHT_SIDE
    See Also:
    @@ -23638,13 +20735,11 @@

    SCROLLBAR_RIGHT_SIDE

    -
  • ICON_NONE

    -
    public static final int ICON_NONE
    enum GuiIconName
    @@ -23655,13 +20750,11 @@

    ICON_NONE

    -
  • ICON_FOLDER_FILE_OPEN

    -
    public static final int ICON_FOLDER_FILE_OPEN
    enum GuiIconName
    @@ -23672,13 +20765,11 @@

    ICON_FOLDER_FILE_OPEN

    -
  • ICON_FILE_SAVE_CLASSIC

    -
    public static final int ICON_FILE_SAVE_CLASSIC
    enum GuiIconName
    @@ -23689,13 +20780,11 @@

    ICON_FILE_SAVE_CLASSIC

    -
  • ICON_FOLDER_OPEN

    -
    public static final int ICON_FOLDER_OPEN
    enum GuiIconName
    @@ -23706,13 +20795,11 @@

    ICON_FOLDER_OPEN

    -
  • ICON_FOLDER_SAVE

    -
    public static final int ICON_FOLDER_SAVE
    enum GuiIconName
    @@ -23723,13 +20810,11 @@

    ICON_FOLDER_SAVE

    -
  • ICON_FILE_OPEN

    -
    public static final int ICON_FILE_OPEN
    enum GuiIconName
    @@ -23740,13 +20825,11 @@

    ICON_FILE_OPEN

    -
  • ICON_FILE_SAVE

    -
    public static final int ICON_FILE_SAVE
    enum GuiIconName
    @@ -23757,13 +20840,11 @@

    ICON_FILE_SAVE

    -
  • ICON_FILE_EXPORT

    -
    public static final int ICON_FILE_EXPORT
    enum GuiIconName
    @@ -23774,13 +20855,11 @@

    ICON_FILE_EXPORT

    -
  • ICON_FILE_ADD

    -
    public static final int ICON_FILE_ADD
    enum GuiIconName
    @@ -23791,13 +20870,11 @@

    ICON_FILE_ADD

    -
  • ICON_FILE_DELETE

    -
    public static final int ICON_FILE_DELETE
    enum GuiIconName
    @@ -23808,13 +20885,11 @@

    ICON_FILE_DELETE

    -
  • ICON_FILETYPE_TEXT

    -
    public static final int ICON_FILETYPE_TEXT
    enum GuiIconName
    @@ -23825,13 +20900,11 @@

    ICON_FILETYPE_TEXT

    -
  • ICON_FILETYPE_AUDIO

    -
    public static final int ICON_FILETYPE_AUDIO
    enum GuiIconName
    @@ -23842,13 +20915,11 @@

    ICON_FILETYPE_AUDIO

    -
  • ICON_FILETYPE_IMAGE

    -
    public static final int ICON_FILETYPE_IMAGE
    enum GuiIconName
    @@ -23859,13 +20930,11 @@

    ICON_FILETYPE_IMAGE

    -
  • ICON_FILETYPE_PLAY

    -
    public static final int ICON_FILETYPE_PLAY
    enum GuiIconName
    @@ -23876,13 +20945,11 @@

    ICON_FILETYPE_PLAY

    -
  • ICON_FILETYPE_VIDEO

    -
    public static final int ICON_FILETYPE_VIDEO
    enum GuiIconName
    @@ -23893,13 +20960,11 @@

    ICON_FILETYPE_VIDEO

    -
  • ICON_FILETYPE_INFO

    -
    public static final int ICON_FILETYPE_INFO
    enum GuiIconName
    @@ -23910,13 +20975,11 @@

    ICON_FILETYPE_INFO

    -
  • ICON_FILE_COPY

    -
    public static final int ICON_FILE_COPY
    enum GuiIconName
    @@ -23927,13 +20990,11 @@

    ICON_FILE_COPY

    -
  • ICON_FILE_CUT

    -
    public static final int ICON_FILE_CUT
    enum GuiIconName
    @@ -23944,13 +21005,11 @@

    ICON_FILE_CUT

    -
  • ICON_FILE_PASTE

    -
    public static final int ICON_FILE_PASTE
    enum GuiIconName
    @@ -23961,13 +21020,11 @@

    ICON_FILE_PASTE

    -
  • ICON_CURSOR_HAND

    -
    public static final int ICON_CURSOR_HAND
    enum GuiIconName
    @@ -23978,13 +21035,11 @@

    ICON_CURSOR_HAND

    -
  • ICON_CURSOR_POINTER

    -
    public static final int ICON_CURSOR_POINTER
    enum GuiIconName
    @@ -23995,13 +21050,11 @@

    ICON_CURSOR_POINTER

    -
  • ICON_CURSOR_CLASSIC

    -
    public static final int ICON_CURSOR_CLASSIC
    enum GuiIconName
    @@ -24012,13 +21065,11 @@

    ICON_CURSOR_CLASSIC

    -
  • ICON_PENCIL

    -
    public static final int ICON_PENCIL
    enum GuiIconName
    @@ -24029,13 +21080,11 @@

    ICON_PENCIL

    -
  • ICON_PENCIL_BIG

    -
    public static final int ICON_PENCIL_BIG
    enum GuiIconName
    @@ -24046,13 +21095,11 @@

    ICON_PENCIL_BIG

    -
  • ICON_BRUSH_CLASSIC

    -
    public static final int ICON_BRUSH_CLASSIC
    enum GuiIconName
    @@ -24063,13 +21110,11 @@

    ICON_BRUSH_CLASSIC

    -
  • ICON_BRUSH_PAINTER

    -
    public static final int ICON_BRUSH_PAINTER
    enum GuiIconName
    @@ -24080,13 +21125,11 @@

    ICON_BRUSH_PAINTER

    -
  • ICON_WATER_DROP

    -
    public static final int ICON_WATER_DROP
    enum GuiIconName
    @@ -24097,13 +21140,11 @@

    ICON_WATER_DROP

    -
  • ICON_COLOR_PICKER

    -
    public static final int ICON_COLOR_PICKER
    enum GuiIconName
    @@ -24114,13 +21155,11 @@

    ICON_COLOR_PICKER

    -
  • ICON_RUBBER

    -
    public static final int ICON_RUBBER
    enum GuiIconName
    @@ -24131,13 +21170,11 @@

    ICON_RUBBER

    -
  • ICON_COLOR_BUCKET

    -
    public static final int ICON_COLOR_BUCKET
    enum GuiIconName
    @@ -24148,13 +21185,11 @@

    ICON_COLOR_BUCKET

    -
  • ICON_TEXT_T

    -
    public static final int ICON_TEXT_T
    enum GuiIconName
    @@ -24165,13 +21200,11 @@

    ICON_TEXT_T

    -
  • ICON_TEXT_A

    -
    public static final int ICON_TEXT_A
    enum GuiIconName
    @@ -24182,13 +21215,11 @@

    ICON_TEXT_A

    -
  • ICON_SCALE

    -
    public static final int ICON_SCALE
    enum GuiIconName
    @@ -24199,13 +21230,11 @@

    ICON_SCALE

    -
  • ICON_RESIZE

    -
    public static final int ICON_RESIZE
    enum GuiIconName
    @@ -24216,13 +21245,11 @@

    ICON_RESIZE

    -
  • ICON_FILTER_POINT

    -
    public static final int ICON_FILTER_POINT
    enum GuiIconName
    @@ -24233,13 +21260,11 @@

    ICON_FILTER_POINT

    -
  • ICON_FILTER_BILINEAR

    -
    public static final int ICON_FILTER_BILINEAR
    enum GuiIconName
    @@ -24250,13 +21275,11 @@

    ICON_FILTER_BILINEAR

    -
  • ICON_CROP

    -
    public static final int ICON_CROP
    enum GuiIconName
    @@ -24267,13 +21290,11 @@

    ICON_CROP

    -
  • ICON_CROP_ALPHA

    -
    public static final int ICON_CROP_ALPHA
    enum GuiIconName
    @@ -24284,13 +21305,11 @@

    ICON_CROP_ALPHA

    -
  • ICON_SQUARE_TOGGLE

    -
    public static final int ICON_SQUARE_TOGGLE
    enum GuiIconName
    @@ -24301,13 +21320,11 @@

    ICON_SQUARE_TOGGLE

    -
  • ICON_SYMMETRY

    -
    public static final int ICON_SYMMETRY
    enum GuiIconName
    @@ -24318,13 +21335,11 @@

    ICON_SYMMETRY

    -
  • ICON_SYMMETRY_HORIZONTAL

    -
    public static final int ICON_SYMMETRY_HORIZONTAL
    enum GuiIconName
    @@ -24335,13 +21350,11 @@

    ICON_SYMMETRY_HORIZONTAL

    -
  • ICON_SYMMETRY_VERTICAL

    -
    public static final int ICON_SYMMETRY_VERTICAL
    enum GuiIconName
    @@ -24352,13 +21365,11 @@

    ICON_SYMMETRY_VERTICAL

    -
  • ICON_LENS

    -
    public static final int ICON_LENS
    enum GuiIconName
    @@ -24369,13 +21380,11 @@

    ICON_LENS

    -
  • ICON_LENS_BIG

    -
    public static final int ICON_LENS_BIG
    enum GuiIconName
    @@ -24386,13 +21395,11 @@

    ICON_LENS_BIG

    -
  • ICON_EYE_ON

    -
    public static final int ICON_EYE_ON
    enum GuiIconName
    @@ -24403,13 +21410,11 @@

    ICON_EYE_ON

    -
  • ICON_EYE_OFF

    -
    public static final int ICON_EYE_OFF
    enum GuiIconName
    @@ -24420,13 +21425,11 @@

    ICON_EYE_OFF

    -
  • ICON_FILTER_TOP

    -
    public static final int ICON_FILTER_TOP
    enum GuiIconName
    @@ -24437,13 +21440,11 @@

    ICON_FILTER_TOP

    -
  • ICON_FILTER

    -
    public static final int ICON_FILTER
    enum GuiIconName
    @@ -24454,13 +21455,11 @@

    ICON_FILTER

    -
  • ICON_TARGET_POINT

    -
    public static final int ICON_TARGET_POINT
    enum GuiIconName
    @@ -24471,13 +21470,11 @@

    ICON_TARGET_POINT

    -
  • ICON_TARGET_SMALL

    -
    public static final int ICON_TARGET_SMALL
    enum GuiIconName
    @@ -24488,13 +21485,11 @@

    ICON_TARGET_SMALL

    -
  • ICON_TARGET_BIG

    -
    public static final int ICON_TARGET_BIG
    enum GuiIconName
    @@ -24505,13 +21500,11 @@

    ICON_TARGET_BIG

    -
  • ICON_TARGET_MOVE

    -
    public static final int ICON_TARGET_MOVE
    enum GuiIconName
    @@ -24522,13 +21515,11 @@

    ICON_TARGET_MOVE

    -
  • ICON_CURSOR_MOVE

    -
    public static final int ICON_CURSOR_MOVE
    enum GuiIconName
    @@ -24539,13 +21530,11 @@

    ICON_CURSOR_MOVE

    -
  • ICON_CURSOR_SCALE

    -
    public static final int ICON_CURSOR_SCALE
    enum GuiIconName
    @@ -24556,13 +21545,11 @@

    ICON_CURSOR_SCALE

    -
  • ICON_CURSOR_SCALE_RIGHT

    -
    public static final int ICON_CURSOR_SCALE_RIGHT
    enum GuiIconName
    @@ -24573,13 +21560,11 @@

    ICON_CURSOR_SCALE_RIGHT

    -
  • ICON_CURSOR_SCALE_LEFT

    -
    public static final int ICON_CURSOR_SCALE_LEFT
    enum GuiIconName
    @@ -24590,13 +21575,11 @@

    ICON_CURSOR_SCALE_LEFT

    -
  • ICON_UNDO

    -
    public static final int ICON_UNDO
    enum GuiIconName
    @@ -24607,13 +21590,11 @@

    ICON_UNDO

    -
  • ICON_REDO

    -
    public static final int ICON_REDO
    enum GuiIconName
    @@ -24624,13 +21605,11 @@

    ICON_REDO

    -
  • ICON_REREDO

    -
    public static final int ICON_REREDO
    enum GuiIconName
    @@ -24641,13 +21620,11 @@

    ICON_REREDO

    -
  • ICON_MUTATE

    -
    public static final int ICON_MUTATE
    enum GuiIconName
    @@ -24658,13 +21635,11 @@

    ICON_MUTATE

    -
  • ICON_ROTATE

    -
    public static final int ICON_ROTATE
    enum GuiIconName
    @@ -24675,13 +21650,11 @@

    ICON_ROTATE

    -
  • ICON_REPEAT

    -
    public static final int ICON_REPEAT
    enum GuiIconName
    @@ -24692,13 +21665,11 @@

    ICON_REPEAT

    -
  • ICON_SHUFFLE

    -
    public static final int ICON_SHUFFLE
    enum GuiIconName
    @@ -24709,13 +21680,11 @@

    ICON_SHUFFLE

    -
  • ICON_EMPTYBOX

    -
    public static final int ICON_EMPTYBOX
    enum GuiIconName
    @@ -24726,13 +21695,11 @@

    ICON_EMPTYBOX

    -
  • ICON_TARGET

    -
    public static final int ICON_TARGET
    enum GuiIconName
    @@ -24743,13 +21710,11 @@

    ICON_TARGET

    -
  • ICON_TARGET_SMALL_FILL

    -
    public static final int ICON_TARGET_SMALL_FILL
    enum GuiIconName
    @@ -24760,13 +21725,11 @@

    ICON_TARGET_SMALL_FILL

    -
  • ICON_TARGET_BIG_FILL

    -
    public static final int ICON_TARGET_BIG_FILL
    enum GuiIconName
    @@ -24777,13 +21740,11 @@

    ICON_TARGET_BIG_FILL

    -
  • ICON_TARGET_MOVE_FILL

    -
    public static final int ICON_TARGET_MOVE_FILL
    enum GuiIconName
    @@ -24794,13 +21755,11 @@

    ICON_TARGET_MOVE_FILL

    -
  • ICON_CURSOR_MOVE_FILL

    -
    public static final int ICON_CURSOR_MOVE_FILL
    enum GuiIconName
    @@ -24811,13 +21770,11 @@

    ICON_CURSOR_MOVE_FILL

    -
  • ICON_CURSOR_SCALE_FILL

    -
    public static final int ICON_CURSOR_SCALE_FILL
    enum GuiIconName
    @@ -24828,13 +21785,11 @@

    ICON_CURSOR_SCALE_FILL

    -
  • ICON_CURSOR_SCALE_RIGHT_FILL

    -
    public static final int ICON_CURSOR_SCALE_RIGHT_FILL
    enum GuiIconName
    @@ -24845,13 +21800,11 @@

    ICON_CURSOR_SCALE_RIGHT_FILL

    -
  • ICON_CURSOR_SCALE_LEFT_FILL

    -
    public static final int ICON_CURSOR_SCALE_LEFT_FILL
    enum GuiIconName
    @@ -24862,13 +21815,11 @@

    ICON_CURSOR_SCALE_LEFT_FILL

    -
  • ICON_UNDO_FILL

    -
    public static final int ICON_UNDO_FILL
    enum GuiIconName
    @@ -24879,13 +21830,11 @@

    ICON_UNDO_FILL

    -
  • ICON_REDO_FILL

    -
    public static final int ICON_REDO_FILL
    enum GuiIconName
    @@ -24896,13 +21845,11 @@

    ICON_REDO_FILL

    -
  • ICON_REREDO_FILL

    -
    public static final int ICON_REREDO_FILL
    enum GuiIconName
    @@ -24913,13 +21860,11 @@

    ICON_REREDO_FILL

    -
  • ICON_MUTATE_FILL

    -
    public static final int ICON_MUTATE_FILL
    enum GuiIconName
    @@ -24930,13 +21875,11 @@

    ICON_MUTATE_FILL

    -
  • ICON_ROTATE_FILL

    -
    public static final int ICON_ROTATE_FILL
    enum GuiIconName
    @@ -24947,13 +21890,11 @@

    ICON_ROTATE_FILL

    -
  • ICON_REPEAT_FILL

    -
    public static final int ICON_REPEAT_FILL
    enum GuiIconName
    @@ -24964,13 +21905,11 @@

    ICON_REPEAT_FILL

    -
  • ICON_SHUFFLE_FILL

    -
    public static final int ICON_SHUFFLE_FILL
    enum GuiIconName
    @@ -24981,13 +21920,11 @@

    ICON_SHUFFLE_FILL

    -
  • ICON_EMPTYBOX_SMALL

    -
    public static final int ICON_EMPTYBOX_SMALL
    enum GuiIconName
    @@ -24998,13 +21935,11 @@

    ICON_EMPTYBOX_SMALL

    -
  • ICON_BOX

    -
    public static final int ICON_BOX
    enum GuiIconName
    @@ -25015,13 +21950,11 @@

    ICON_BOX

    -
  • ICON_BOX_TOP

    -
    public static final int ICON_BOX_TOP
    enum GuiIconName
    @@ -25032,13 +21965,11 @@

    ICON_BOX_TOP

    -
  • ICON_BOX_TOP_RIGHT

    -
    public static final int ICON_BOX_TOP_RIGHT
    enum GuiIconName
    @@ -25049,13 +21980,11 @@

    ICON_BOX_TOP_RIGHT

    -
  • ICON_BOX_RIGHT

    -
    public static final int ICON_BOX_RIGHT
    enum GuiIconName
    @@ -25066,13 +21995,11 @@

    ICON_BOX_RIGHT

    -
  • ICON_BOX_BOTTOM_RIGHT

    -
    public static final int ICON_BOX_BOTTOM_RIGHT
    enum GuiIconName
    @@ -25083,13 +22010,11 @@

    ICON_BOX_BOTTOM_RIGHT

    -
  • ICON_BOX_BOTTOM

    -
    public static final int ICON_BOX_BOTTOM
    enum GuiIconName
    @@ -25100,13 +22025,11 @@

    ICON_BOX_BOTTOM

    -
  • ICON_BOX_BOTTOM_LEFT

    -
    public static final int ICON_BOX_BOTTOM_LEFT
    enum GuiIconName
    @@ -25117,13 +22040,11 @@

    ICON_BOX_BOTTOM_LEFT

    -
  • ICON_BOX_LEFT

    -
    public static final int ICON_BOX_LEFT
    enum GuiIconName
    @@ -25134,13 +22055,11 @@

    ICON_BOX_LEFT

    -
  • ICON_BOX_TOP_LEFT

    -
    public static final int ICON_BOX_TOP_LEFT
    enum GuiIconName
    @@ -25151,13 +22070,11 @@

    ICON_BOX_TOP_LEFT

    -
  • ICON_BOX_CENTER

    -
    public static final int ICON_BOX_CENTER
    enum GuiIconName
    @@ -25168,13 +22085,11 @@

    ICON_BOX_CENTER

    -
  • ICON_BOX_CIRCLE_MASK

    -
    public static final int ICON_BOX_CIRCLE_MASK
    enum GuiIconName
    @@ -25185,13 +22100,11 @@

    ICON_BOX_CIRCLE_MASK

    -
  • ICON_POT

    -
    public static final int ICON_POT
    enum GuiIconName
    @@ -25202,13 +22115,11 @@

    ICON_POT

    -
  • ICON_ALPHA_MULTIPLY

    -
    public static final int ICON_ALPHA_MULTIPLY
    enum GuiIconName
    @@ -25219,13 +22130,11 @@

    ICON_ALPHA_MULTIPLY

    -
  • ICON_ALPHA_CLEAR

    -
    public static final int ICON_ALPHA_CLEAR
    enum GuiIconName
    @@ -25236,13 +22145,11 @@

    ICON_ALPHA_CLEAR

    -
  • ICON_DITHERING

    -
    public static final int ICON_DITHERING
    enum GuiIconName
    @@ -25253,13 +22160,11 @@

    ICON_DITHERING

    -
  • ICON_MIPMAPS

    -
    public static final int ICON_MIPMAPS
    enum GuiIconName
    @@ -25270,13 +22175,11 @@

    ICON_MIPMAPS

    -
  • ICON_BOX_GRID

    -
    public static final int ICON_BOX_GRID
    enum GuiIconName
    @@ -25287,13 +22190,11 @@

    ICON_BOX_GRID

    -
  • ICON_GRID

    -
    public static final int ICON_GRID
    enum GuiIconName
    @@ -25304,13 +22205,11 @@

    ICON_GRID

    -
  • ICON_BOX_CORNERS_SMALL

    -
    public static final int ICON_BOX_CORNERS_SMALL
    enum GuiIconName
    @@ -25321,13 +22220,11 @@

    ICON_BOX_CORNERS_SMALL

    -
  • ICON_BOX_CORNERS_BIG

    -
    public static final int ICON_BOX_CORNERS_BIG
    enum GuiIconName
    @@ -25338,13 +22235,11 @@

    ICON_BOX_CORNERS_BIG

    -
  • ICON_FOUR_BOXES

    -
    public static final int ICON_FOUR_BOXES
    enum GuiIconName
    @@ -25355,13 +22250,11 @@

    ICON_FOUR_BOXES

    -
  • ICON_GRID_FILL

    -
    public static final int ICON_GRID_FILL
    enum GuiIconName
    @@ -25372,13 +22265,11 @@

    ICON_GRID_FILL

    -
  • ICON_BOX_MULTISIZE

    -
    public static final int ICON_BOX_MULTISIZE
    enum GuiIconName
    @@ -25389,13 +22280,11 @@

    ICON_BOX_MULTISIZE

    -
  • ICON_ZOOM_SMALL

    -
    public static final int ICON_ZOOM_SMALL
    enum GuiIconName
    @@ -25406,13 +22295,11 @@

    ICON_ZOOM_SMALL

    -
  • ICON_ZOOM_MEDIUM

    -
    public static final int ICON_ZOOM_MEDIUM
    enum GuiIconName
    @@ -25423,13 +22310,11 @@

    ICON_ZOOM_MEDIUM

    -
  • ICON_ZOOM_BIG

    -
    public static final int ICON_ZOOM_BIG
    enum GuiIconName
    @@ -25440,13 +22325,11 @@

    ICON_ZOOM_BIG

    -
  • ICON_ZOOM_ALL

    -
    public static final int ICON_ZOOM_ALL
    enum GuiIconName
    @@ -25457,13 +22340,11 @@

    ICON_ZOOM_ALL

    -
  • ICON_ZOOM_CENTER

    -
    public static final int ICON_ZOOM_CENTER
    enum GuiIconName
    @@ -25474,13 +22355,11 @@

    ICON_ZOOM_CENTER

    -
  • ICON_BOX_DOTS_SMALL

    -
    public static final int ICON_BOX_DOTS_SMALL
    enum GuiIconName
    @@ -25491,13 +22370,11 @@

    ICON_BOX_DOTS_SMALL

    -
  • ICON_BOX_DOTS_BIG

    -
    public static final int ICON_BOX_DOTS_BIG
    enum GuiIconName
    @@ -25508,13 +22385,11 @@

    ICON_BOX_DOTS_BIG

    -
  • ICON_BOX_CONCENTRIC

    -
    public static final int ICON_BOX_CONCENTRIC
    enum GuiIconName
    @@ -25525,13 +22400,11 @@

    ICON_BOX_CONCENTRIC

    -
  • ICON_BOX_GRID_BIG

    -
    public static final int ICON_BOX_GRID_BIG
    enum GuiIconName
    @@ -25542,13 +22415,11 @@

    ICON_BOX_GRID_BIG

    -
  • ICON_OK_TICK

    -
    public static final int ICON_OK_TICK
    enum GuiIconName
    @@ -25559,13 +22430,11 @@

    ICON_OK_TICK

    -
  • ICON_CROSS

    -
    public static final int ICON_CROSS
    enum GuiIconName
    @@ -25576,13 +22445,11 @@

    ICON_CROSS

    -
  • ICON_ARROW_LEFT

    -
    public static final int ICON_ARROW_LEFT
    enum GuiIconName
    @@ -25593,13 +22460,11 @@

    ICON_ARROW_LEFT

    -
  • ICON_ARROW_RIGHT

    -
    public static final int ICON_ARROW_RIGHT
    enum GuiIconName
    @@ -25610,13 +22475,11 @@

    ICON_ARROW_RIGHT

    -
  • ICON_ARROW_DOWN

    -
    public static final int ICON_ARROW_DOWN
    enum GuiIconName
    @@ -25627,13 +22490,11 @@

    ICON_ARROW_DOWN

    -
  • ICON_ARROW_UP

    -
    public static final int ICON_ARROW_UP
    enum GuiIconName
    @@ -25644,13 +22505,11 @@

    ICON_ARROW_UP

    -
  • ICON_ARROW_LEFT_FILL

    -
    public static final int ICON_ARROW_LEFT_FILL
    enum GuiIconName
    @@ -25661,13 +22520,11 @@

    ICON_ARROW_LEFT_FILL

    -
  • ICON_ARROW_RIGHT_FILL

    -
    public static final int ICON_ARROW_RIGHT_FILL
    enum GuiIconName
    @@ -25678,13 +22535,11 @@

    ICON_ARROW_RIGHT_FILL

    -
  • ICON_ARROW_DOWN_FILL

    -
    public static final int ICON_ARROW_DOWN_FILL
    enum GuiIconName
    @@ -25695,13 +22550,11 @@

    ICON_ARROW_DOWN_FILL

    -
  • ICON_ARROW_UP_FILL

    -
    public static final int ICON_ARROW_UP_FILL
    enum GuiIconName
    @@ -25712,13 +22565,11 @@

    ICON_ARROW_UP_FILL

    -
  • ICON_AUDIO

    -
    public static final int ICON_AUDIO
    enum GuiIconName
    @@ -25729,13 +22580,11 @@

    ICON_AUDIO

    -
  • ICON_FX

    -
    public static final int ICON_FX
    enum GuiIconName
    @@ -25746,13 +22595,11 @@

    ICON_FX

    -
  • ICON_WAVE

    -
    public static final int ICON_WAVE
    enum GuiIconName
    @@ -25763,13 +22610,11 @@

    ICON_WAVE

    -
  • ICON_WAVE_SINUS

    -
    public static final int ICON_WAVE_SINUS
    enum GuiIconName
    @@ -25780,13 +22625,11 @@

    ICON_WAVE_SINUS

    -
  • ICON_WAVE_SQUARE

    -
    public static final int ICON_WAVE_SQUARE
    enum GuiIconName
    @@ -25797,13 +22640,11 @@

    ICON_WAVE_SQUARE

    -
  • ICON_WAVE_TRIANGULAR

    -
    public static final int ICON_WAVE_TRIANGULAR
    enum GuiIconName
    @@ -25814,13 +22655,11 @@

    ICON_WAVE_TRIANGULAR

    -
  • ICON_CROSS_SMALL

    -
    public static final int ICON_CROSS_SMALL
    enum GuiIconName
    @@ -25831,13 +22670,11 @@

    ICON_CROSS_SMALL

    -
  • ICON_PLAYER_PREVIOUS

    -
    public static final int ICON_PLAYER_PREVIOUS
    enum GuiIconName
    @@ -25848,13 +22685,11 @@

    ICON_PLAYER_PREVIOUS

    -
  • ICON_PLAYER_PLAY_BACK

    -
    public static final int ICON_PLAYER_PLAY_BACK
    enum GuiIconName
    @@ -25865,13 +22700,11 @@

    ICON_PLAYER_PLAY_BACK

    -
  • ICON_PLAYER_PLAY

    -
    public static final int ICON_PLAYER_PLAY
    enum GuiIconName
    @@ -25882,13 +22715,11 @@

    ICON_PLAYER_PLAY

    -
  • ICON_PLAYER_PAUSE

    -
    public static final int ICON_PLAYER_PAUSE
    enum GuiIconName
    @@ -25899,13 +22730,11 @@

    ICON_PLAYER_PAUSE

    -
  • ICON_PLAYER_STOP

    -
    public static final int ICON_PLAYER_STOP
    enum GuiIconName
    @@ -25916,13 +22745,11 @@

    ICON_PLAYER_STOP

    -
  • ICON_PLAYER_NEXT

    -
    public static final int ICON_PLAYER_NEXT
    enum GuiIconName
    @@ -25933,13 +22760,11 @@

    ICON_PLAYER_NEXT

    -
  • ICON_PLAYER_RECORD

    -
    public static final int ICON_PLAYER_RECORD
    enum GuiIconName
    @@ -25950,13 +22775,11 @@

    ICON_PLAYER_RECORD

    -
  • ICON_MAGNET

    -
    public static final int ICON_MAGNET
    enum GuiIconName
    @@ -25967,13 +22790,11 @@

    ICON_MAGNET

    -
  • ICON_LOCK_CLOSE

    -
    public static final int ICON_LOCK_CLOSE
    enum GuiIconName
    @@ -25984,13 +22805,11 @@

    ICON_LOCK_CLOSE

    -
  • ICON_LOCK_OPEN

    -
    public static final int ICON_LOCK_OPEN
    enum GuiIconName
    @@ -26001,13 +22820,11 @@

    ICON_LOCK_OPEN

    -
  • ICON_CLOCK

    -
    public static final int ICON_CLOCK
    enum GuiIconName
    @@ -26018,13 +22835,11 @@

    ICON_CLOCK

    -
  • ICON_TOOLS

    -
    public static final int ICON_TOOLS
    enum GuiIconName
    @@ -26035,13 +22850,11 @@

    ICON_TOOLS

    -
  • ICON_GEAR

    -
    public static final int ICON_GEAR
    enum GuiIconName
    @@ -26052,13 +22865,11 @@

    ICON_GEAR

    -
  • ICON_GEAR_BIG

    -
    public static final int ICON_GEAR_BIG
    enum GuiIconName
    @@ -26069,13 +22880,11 @@

    ICON_GEAR_BIG

    -
  • ICON_BIN

    -
    public static final int ICON_BIN
    enum GuiIconName
    @@ -26086,13 +22895,11 @@

    ICON_BIN

    -
  • ICON_HAND_POINTER

    -
    public static final int ICON_HAND_POINTER
    enum GuiIconName
    @@ -26103,13 +22910,11 @@

    ICON_HAND_POINTER

    -
  • ICON_LASER

    -
    public static final int ICON_LASER
    enum GuiIconName
    @@ -26120,13 +22925,11 @@

    ICON_LASER

    -
  • ICON_COIN

    -
    public static final int ICON_COIN
    enum GuiIconName
    @@ -26137,13 +22940,11 @@

    ICON_COIN

    -
  • ICON_EXPLOSION

    -
    public static final int ICON_EXPLOSION
    enum GuiIconName
    @@ -26154,13 +22955,11 @@

    ICON_EXPLOSION

    -
  • ICON_1UP

    -
    public static final int ICON_1UP
    enum GuiIconName
    @@ -26171,13 +22970,11 @@

    ICON_1UP

    -
  • ICON_PLAYER

    -
    public static final int ICON_PLAYER
    enum GuiIconName
    @@ -26188,13 +22985,11 @@

    ICON_PLAYER

    -
  • ICON_PLAYER_JUMP

    -
    public static final int ICON_PLAYER_JUMP
    enum GuiIconName
    @@ -26205,13 +23000,11 @@

    ICON_PLAYER_JUMP

    -
  • ICON_KEY

    -
    public static final int ICON_KEY
    enum GuiIconName
    @@ -26222,13 +23015,11 @@

    ICON_KEY

    -
  • ICON_DEMON

    -
    public static final int ICON_DEMON
    enum GuiIconName
    @@ -26239,13 +23030,11 @@

    ICON_DEMON

    -
  • ICON_TEXT_POPUP

    -
    public static final int ICON_TEXT_POPUP
    enum GuiIconName
    @@ -26256,13 +23045,11 @@

    ICON_TEXT_POPUP

    -
  • ICON_GEAR_EX

    -
    public static final int ICON_GEAR_EX
    enum GuiIconName
    @@ -26273,13 +23060,11 @@

    ICON_GEAR_EX

    -
  • ICON_CRACK

    -
    public static final int ICON_CRACK
    enum GuiIconName
    @@ -26290,13 +23075,11 @@

    ICON_CRACK

    -
  • ICON_CRACK_POINTS

    -
    public static final int ICON_CRACK_POINTS
    enum GuiIconName
    @@ -26307,13 +23090,11 @@

    ICON_CRACK_POINTS

    -
  • ICON_STAR

    -
    public static final int ICON_STAR
    enum GuiIconName
    @@ -26324,13 +23105,11 @@

    ICON_STAR

    -
  • ICON_DOOR

    -
    public static final int ICON_DOOR
    enum GuiIconName
    @@ -26341,13 +23120,11 @@

    ICON_DOOR

    -
  • ICON_EXIT

    -
    public static final int ICON_EXIT
    enum GuiIconName
    @@ -26358,13 +23135,11 @@

    ICON_EXIT

    -
  • ICON_MODE_2D

    -
    public static final int ICON_MODE_2D
    enum GuiIconName
    @@ -26375,13 +23150,11 @@

    ICON_MODE_2D

    -
  • ICON_MODE_3D

    -
    public static final int ICON_MODE_3D
    enum GuiIconName
    @@ -26392,13 +23165,11 @@

    ICON_MODE_3D

    -
  • ICON_CUBE

    -
    public static final int ICON_CUBE
    enum GuiIconName
    @@ -26409,13 +23180,11 @@

    ICON_CUBE

    -
  • ICON_CUBE_FACE_TOP

    -
    public static final int ICON_CUBE_FACE_TOP
    enum GuiIconName
    @@ -26426,13 +23195,11 @@

    ICON_CUBE_FACE_TOP

    -
  • ICON_CUBE_FACE_LEFT

    -
    public static final int ICON_CUBE_FACE_LEFT
    enum GuiIconName
    @@ -26443,13 +23210,11 @@

    ICON_CUBE_FACE_LEFT

    -
  • ICON_CUBE_FACE_FRONT

    -
    public static final int ICON_CUBE_FACE_FRONT
    enum GuiIconName
    @@ -26460,13 +23225,11 @@

    ICON_CUBE_FACE_FRONT

    -
  • ICON_CUBE_FACE_BOTTOM

    -
    public static final int ICON_CUBE_FACE_BOTTOM
    enum GuiIconName
    @@ -26477,13 +23240,11 @@

    ICON_CUBE_FACE_BOTTOM

    -
  • ICON_CUBE_FACE_RIGHT

    -
    public static final int ICON_CUBE_FACE_RIGHT
    enum GuiIconName
    @@ -26494,13 +23255,11 @@

    ICON_CUBE_FACE_RIGHT

    -
  • ICON_CUBE_FACE_BACK

    -
    public static final int ICON_CUBE_FACE_BACK
    enum GuiIconName
    @@ -26511,13 +23270,11 @@

    ICON_CUBE_FACE_BACK

    -
  • ICON_CAMERA

    -
    public static final int ICON_CAMERA
    enum GuiIconName
    @@ -26528,13 +23285,11 @@

    ICON_CAMERA

    -
  • ICON_SPECIAL

    -
    public static final int ICON_SPECIAL
    enum GuiIconName
    @@ -26545,13 +23300,11 @@

    ICON_SPECIAL

    -
  • ICON_TEXT_NOTES

    -
    public static final int ICON_TEXT_NOTES
    enum GuiIconName
    @@ -26647,13 +23390,11 @@

    ICON_TEXT_NOTES

    -
  • ICON_NOTEBOOK

    -
    public static final int ICON_NOTEBOOK
    enum GuiIconName
    @@ -26664,13 +23405,11 @@

    ICON_NOTEBOOK

    -
  • ICON_SUITCASE

    -
    public static final int ICON_SUITCASE
    enum GuiIconName
    @@ -26681,13 +23420,11 @@

    ICON_SUITCASE

    -
  • ICON_SUITCASE_ZIP

    -
    public static final int ICON_SUITCASE_ZIP
    enum GuiIconName
    @@ -26698,13 +23435,11 @@

    ICON_SUITCASE_ZIP

    -
  • ICON_MAILBOX

    -
    public static final int ICON_MAILBOX
    enum GuiIconName
    @@ -26715,13 +23450,11 @@

    ICON_MAILBOX

    -
  • ICON_MONITOR

    -
    public static final int ICON_MONITOR
    enum GuiIconName
    @@ -26732,13 +23465,11 @@

    ICON_MONITOR

    -
  • ICON_PRINTER

    -
    public static final int ICON_PRINTER
    enum GuiIconName
    @@ -26749,13 +23480,11 @@

    ICON_PRINTER

    -
  • ICON_PHOTO_CAMERA

    -
    public static final int ICON_PHOTO_CAMERA
    enum GuiIconName
    @@ -26766,13 +23495,11 @@

    ICON_PHOTO_CAMERA

    -
  • ICON_PHOTO_CAMERA_FLASH

    -
    public static final int ICON_PHOTO_CAMERA_FLASH
    enum GuiIconName
    @@ -26783,13 +23510,11 @@

    ICON_PHOTO_CAMERA_FLASH

    -
  • ICON_HOUSE

    -
    public static final int ICON_HOUSE
    enum GuiIconName
    @@ -26800,13 +23525,11 @@

    ICON_HOUSE

    -
  • ICON_HEART

    -
    public static final int ICON_HEART
    enum GuiIconName
    @@ -26817,13 +23540,11 @@

    ICON_HEART

    -
  • ICON_CORNER

    -
    public static final int ICON_CORNER
    enum GuiIconName
    @@ -26834,13 +23555,11 @@

    ICON_CORNER

    -
  • ICON_VERTICAL_BARS

    -
    public static final int ICON_VERTICAL_BARS
    enum GuiIconName
    @@ -26851,13 +23570,11 @@

    ICON_VERTICAL_BARS

    -
  • ICON_VERTICAL_BARS_FILL

    -
    public static final int ICON_VERTICAL_BARS_FILL
    enum GuiIconName
    @@ -26868,13 +23585,11 @@

    ICON_VERTICAL_BARS_FILL

    -
  • ICON_LIFE_BARS

    -
    public static final int ICON_LIFE_BARS
    enum GuiIconName
    @@ -26885,13 +23600,11 @@

    ICON_LIFE_BARS

    -
  • ICON_INFO

    -
    public static final int ICON_INFO
    enum GuiIconName
    @@ -26902,13 +23615,11 @@

    ICON_INFO

    -
  • ICON_CROSSLINE

    -
    public static final int ICON_CROSSLINE
    enum GuiIconName
    @@ -26919,13 +23630,11 @@

    ICON_CROSSLINE

    -
  • ICON_HELP

    -
    public static final int ICON_HELP
    enum GuiIconName
    @@ -26936,13 +23645,11 @@

    ICON_HELP

    -
  • ICON_FILETYPE_ALPHA

    -
    public static final int ICON_FILETYPE_ALPHA
    enum GuiIconName
    @@ -26953,13 +23660,11 @@

    ICON_FILETYPE_ALPHA

    -
  • ICON_FILETYPE_HOME

    -
    public static final int ICON_FILETYPE_HOME
    enum GuiIconName
    @@ -26970,13 +23675,11 @@

    ICON_FILETYPE_HOME

    -
  • ICON_LAYERS_VISIBLE

    -
    public static final int ICON_LAYERS_VISIBLE
    enum GuiIconName
    @@ -26987,13 +23690,11 @@

    ICON_LAYERS_VISIBLE

    -
  • ICON_LAYERS

    -
    public static final int ICON_LAYERS
    enum GuiIconName
    @@ -27004,13 +23705,11 @@

    ICON_LAYERS

    -
  • ICON_WINDOW

    -
    public static final int ICON_WINDOW
    enum GuiIconName
    @@ -27021,13 +23720,11 @@

    ICON_WINDOW

    -
  • ICON_HIDPI

    -
    public static final int ICON_HIDPI
    enum GuiIconName
    @@ -27038,13 +23735,11 @@

    ICON_HIDPI

    -
  • ICON_FILETYPE_BINARY

    -
    public static final int ICON_FILETYPE_BINARY
    enum GuiIconName
    @@ -27055,13 +23750,11 @@

    ICON_FILETYPE_BINARY

    -
  • ICON_HEX

    -
    public static final int ICON_HEX
    enum GuiIconName
    @@ -27072,13 +23765,11 @@

    ICON_HEX

    -
  • ICON_SHIELD

    -
    public static final int ICON_SHIELD
    enum GuiIconName
    @@ -27089,13 +23780,11 @@

    ICON_SHIELD

    -
  • ICON_FILE_NEW

    -
    public static final int ICON_FILE_NEW
    enum GuiIconName
    @@ -27106,13 +23795,11 @@

    ICON_FILE_NEW

    -
  • ICON_FOLDER_ADD

    -
    public static final int ICON_FOLDER_ADD
    enum GuiIconName
    @@ -27123,13 +23810,11 @@

    ICON_FOLDER_ADD

    -
  • ICON_ALARM

    -
    public static final int ICON_ALARM
    enum GuiIconName
    @@ -27140,13 +23825,11 @@

    ICON_ALARM

    -
  • ICON_CPU

    -
    public static final int ICON_CPU
    enum GuiIconName
    @@ -27157,13 +23840,11 @@

    ICON_CPU

    -
  • ICON_ROM

    -
    public static final int ICON_ROM
    enum GuiIconName
    @@ -27174,13 +23855,11 @@

    ICON_ROM

    -
  • ICON_STEP_OVER

    -
    public static final int ICON_STEP_OVER
    enum GuiIconName
    @@ -27191,13 +23870,11 @@

    ICON_STEP_OVER

    -
  • ICON_STEP_INTO

    -
    public static final int ICON_STEP_INTO
    enum GuiIconName
    @@ -27208,13 +23885,11 @@

    ICON_STEP_INTO

    -
  • ICON_STEP_OUT

    -
    public static final int ICON_STEP_OUT
    enum GuiIconName
    @@ -27225,13 +23900,11 @@

    ICON_STEP_OUT

    -
  • ICON_RESTART

    -
    public static final int ICON_RESTART
    enum GuiIconName
    @@ -27242,13 +23915,11 @@

    ICON_RESTART

    -
  • ICON_BREAKPOINT_ON

    -
    public static final int ICON_BREAKPOINT_ON
    enum GuiIconName
    @@ -27259,13 +23930,11 @@

    ICON_BREAKPOINT_ON

    -
  • ICON_BREAKPOINT_OFF

    -
    public static final int ICON_BREAKPOINT_OFF
    enum GuiIconName
    @@ -27276,13 +23945,11 @@

    ICON_BREAKPOINT_OFF

    -
  • ICON_BURGER_MENU

    -
    public static final int ICON_BURGER_MENU
    enum GuiIconName
    @@ -27293,13 +23960,11 @@

    ICON_BURGER_MENU

    -
  • ICON_CASE_SENSITIVE

    -
    public static final int ICON_CASE_SENSITIVE
    enum GuiIconName
    @@ -27310,13 +23975,11 @@

    ICON_CASE_SENSITIVE

    -
  • ICON_REG_EXP

    -
    public static final int ICON_REG_EXP
    enum GuiIconName
    @@ -27327,13 +23990,11 @@

    ICON_REG_EXP

    -
  • ICON_FOLDER

    -
    public static final int ICON_FOLDER
    enum GuiIconName
    @@ -27344,13 +24005,11 @@

    ICON_FOLDER

    -
  • ICON_FILE

    -
    public static final int ICON_FILE
    enum GuiIconName
    @@ -27361,13 +24020,11 @@

    ICON_FILE

    -
  • ICON_SAND_TIMER

    -
    public static final int ICON_SAND_TIMER
    enum GuiIconName
    @@ -27378,13 +24035,11 @@

    ICON_SAND_TIMER

    -
  • ICON_WARNING

    -
    public static final int ICON_WARNING
    enum GuiIconName
    @@ -27395,13 +24050,11 @@

    ICON_WARNING

    -
  • ICON_HELP_BOX

    -
    public static final int ICON_HELP_BOX
    enum GuiIconName
    @@ -27412,13 +24065,11 @@

    ICON_HELP_BOX

    -
  • ICON_INFO_BOX

    -
    public static final int ICON_INFO_BOX
    enum GuiIconName
    @@ -27429,13 +24080,11 @@

    ICON_INFO_BOX

    -
  • ICON_PRIORITY

    -
    public static final int ICON_PRIORITY
    enum GuiIconName
    @@ -27446,13 +24095,11 @@

    ICON_PRIORITY

    -
  • ICON_LAYERS_ISO

    -
    public static final int ICON_LAYERS_ISO
    enum GuiIconName
    @@ -27463,13 +24110,11 @@

    ICON_LAYERS_ISO

    -
  • ICON_LAYERS2

    -
    public static final int ICON_LAYERS2
    enum GuiIconName
    @@ -27480,13 +24125,11 @@

    ICON_LAYERS2

    -
  • ICON_MLAYERS

    -
    public static final int ICON_MLAYERS
    enum GuiIconName
    @@ -27497,13 +24140,11 @@

    ICON_MLAYERS

    -
  • ICON_MAPS

    -
    public static final int ICON_MAPS
    enum GuiIconName
    @@ -27514,13 +24155,11 @@

    ICON_MAPS

    -
  • ICON_HOT

    -
    public static final int ICON_HOT
    enum GuiIconName
    @@ -27531,370 +24170,326 @@

    ICON_HOT

    -
  • -
    -

    ICON_229

    -
    -
    public static final int ICON_229
    +
    +

    ICON_LABEL

    +
    public static final int ICON_LABEL
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_230

    -
    -
    public static final int ICON_230
    +
    +

    ICON_NAME_ID

    +
    public static final int ICON_NAME_ID
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_231

    -
    -
    public static final int ICON_231
    +
    +

    ICON_SLICING

    +
    public static final int ICON_SLICING
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_232

    -
    -
    public static final int ICON_232
    +
    +

    ICON_MANUAL_CONTROL

    +
    public static final int ICON_MANUAL_CONTROL
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_233

    -
    -
    public static final int ICON_233
    +
    +

    ICON_COLLISION

    +
    public static final int ICON_COLLISION
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_234

    -
    -
    public static final int ICON_234
    +
    +

    ICON_CIRCLE_ADD

    +
    public static final int ICON_CIRCLE_ADD
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_235

    -
    -
    public static final int ICON_235
    +
    +

    ICON_CIRCLE_ADD_FILL

    +
    public static final int ICON_CIRCLE_ADD_FILL
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_236

    -
    -
    public static final int ICON_236
    +
    +

    ICON_CIRCLE_WARNING

    +
    public static final int ICON_CIRCLE_WARNING
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_237

    -
    -
    public static final int ICON_237
    +
    +

    ICON_CIRCLE_WARNING_FILL

    +
    public static final int ICON_CIRCLE_WARNING_FILL
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_238

    -
    -
    public static final int ICON_238
    +
    +

    ICON_BOX_MORE

    +
    public static final int ICON_BOX_MORE
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_239

    -
    -
    public static final int ICON_239
    +
    +

    ICON_BOX_MORE_FILL

    +
    public static final int ICON_BOX_MORE_FILL
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_240

    -
    -
    public static final int ICON_240
    +
    +

    ICON_BOX_MINUS

    +
    public static final int ICON_BOX_MINUS
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_241

    -
    -
    public static final int ICON_241
    +
    +

    ICON_BOX_MINUS_FILL

    +
    public static final int ICON_BOX_MINUS_FILL
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_242

    -
    -
    public static final int ICON_242
    +
    +

    ICON_UNION

    +
    public static final int ICON_UNION
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_243

    -
    -
    public static final int ICON_243
    +
    +

    ICON_INTERSECTION

    +
    public static final int ICON_INTERSECTION
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_244

    -
    -
    public static final int ICON_244
    +
    +

    ICON_DIFFERENCE

    +
    public static final int ICON_DIFFERENCE
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_245

    -
    -
    public static final int ICON_245
    +
    +

    ICON_SPHERE

    +
    public static final int ICON_SPHERE
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_246

    -
    -
    public static final int ICON_246
    +
    +

    ICON_CYLINDER

    +
    public static final int ICON_CYLINDER
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_247

    -
    -
    public static final int ICON_247
    +
    +

    ICON_CONE

    +
    public static final int ICON_CONE
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_248

    -
    -
    public static final int ICON_248
    +
    +

    ICON_ELLIPSOID

    +
    public static final int ICON_ELLIPSOID
    enum GuiIconName
    See Also:
    -
  • -
    -

    ICON_249

    -
    -
    public static final int ICON_249
    +
    +

    ICON_CAPSULE

    +
    public static final int ICON_CAPSULE
    enum GuiIconName
    See Also:
    -
  • ICON_250

    -
    public static final int ICON_250
    enum GuiIconName
    @@ -27905,13 +24500,11 @@

    ICON_250

    -
  • ICON_251

    -
    public static final int ICON_251
    enum GuiIconName
    @@ -27922,13 +24515,11 @@

    ICON_251

    -
  • ICON_252

    -
    public static final int ICON_252
    enum GuiIconName
    @@ -27939,13 +24530,11 @@

    ICON_252

    -
  • ICON_253

    -
    public static final int ICON_253
    enum GuiIconName
    @@ -27956,13 +24545,11 @@

    ICON_253

    -
  • ICON_254

    -
    public static final int ICON_254
    enum GuiIconName
    @@ -27973,13 +24560,11 @@

    ICON_254

    -
  • ICON_255

    -
    public static final int ICON_255
    enum GuiIconName
    @@ -27990,7 +24575,6 @@

    ICON_255

    -
  • @@ -28004,9 +24588,7 @@

    Constructor Details

  • Raylib

    -
    public Raylib()
    -
  • @@ -28020,777 +24602,602 @@

    Method Details

  • InitWindow

    -
    public static void InitWindow(int width, int height, @Cast("const char*") org.bytedeco.javacpp.BytePointer title)
    -
  • InitWindow

    -
    public static void InitWindow(int width, int height, - String title)
    -
    + String title)
  • CloseWindow

    -
    public static void CloseWindow()
    -
  • WindowShouldClose

    -
    @Cast("bool") public static boolean WindowShouldClose()
    -
  • IsWindowReady

    -
    @Cast("bool") public static boolean IsWindowReady()
    -
  • IsWindowFullscreen

    -
    @Cast("bool") public static boolean IsWindowFullscreen()
    -
  • IsWindowHidden

    -
    @Cast("bool") public static boolean IsWindowHidden()
    -
  • IsWindowMinimized

    -
    @Cast("bool") public static boolean IsWindowMinimized()
    -
  • IsWindowMaximized

    -
    @Cast("bool") public static boolean IsWindowMaximized()
    -
  • IsWindowFocused

    -
    @Cast("bool") public static boolean IsWindowFocused()
    -
  • IsWindowResized

    -
    @Cast("bool") public static boolean IsWindowResized()
    -
  • IsWindowState

    -
    @Cast("bool") public static boolean IsWindowState(@Cast("unsigned int") int flag)
    -
  • SetWindowState

    -
    public static void SetWindowState(@Cast("unsigned int") int flags)
    -
  • ClearWindowState

    -
    public static void ClearWindowState(@Cast("unsigned int") int flags)
    -
  • ToggleFullscreen

    -
    public static void ToggleFullscreen()
    -
  • ToggleBorderlessWindowed

    -
    public static void ToggleBorderlessWindowed()
    -
  • MaximizeWindow

    -
    public static void MaximizeWindow()
    -
  • MinimizeWindow

    -
    public static void MinimizeWindow()
    -
  • RestoreWindow

    -
    public static void RestoreWindow()
    -
  • SetWindowIcon

    -
    public static void SetWindowIcon(@ByVal Raylib.Image image)
    -
  • SetWindowIcons

    -
    public static void SetWindowIcons(Raylib.Image images, int count)
    -
  • SetWindowTitle

    -
    public static void SetWindowTitle(@Cast("const char*") org.bytedeco.javacpp.BytePointer title)
    -
  • SetWindowTitle

    -
    -
    public static void SetWindowTitle(String title)
    -
    +
    public static void SetWindowTitle(String title)
  • SetWindowPosition

    -
    public static void SetWindowPosition(int x, int y)
    -
  • SetWindowMonitor

    -
    public static void SetWindowMonitor(int monitor)
    -
  • SetWindowMinSize

    -
    public static void SetWindowMinSize(int width, int height)
    -
  • SetWindowMaxSize

    -
    public static void SetWindowMaxSize(int width, int height)
    -
  • SetWindowSize

    -
    public static void SetWindowSize(int width, int height)
    -
  • SetWindowOpacity

    -
    public static void SetWindowOpacity(float opacity)
    -
  • SetWindowFocused

    -
    public static void SetWindowFocused()
    -
  • GetWindowHandle

    -
    public static org.bytedeco.javacpp.Pointer GetWindowHandle()
    -
  • GetScreenWidth

    -
    public static int GetScreenWidth()
    -
  • GetScreenHeight

    -
    public static int GetScreenHeight()
    -
  • GetRenderWidth

    -
    public static int GetRenderWidth()
    -
  • GetRenderHeight

    -
    public static int GetRenderHeight()
    -
  • GetMonitorCount

    -
    public static int GetMonitorCount()
    -
  • GetCurrentMonitor

    -
    public static int GetCurrentMonitor()
    -
  • GetMonitorPosition

    -
    @ByVal public static Raylib.Vector2 GetMonitorPosition(int monitor)
    -
  • GetMonitorWidth

    -
    public static int GetMonitorWidth(int monitor)
    -
  • GetMonitorHeight

    -
    public static int GetMonitorHeight(int monitor)
    -
  • GetMonitorPhysicalWidth

    -
    public static int GetMonitorPhysicalWidth(int monitor)
    -
  • GetMonitorPhysicalHeight

    -
    public static int GetMonitorPhysicalHeight(int monitor)
    -
  • GetMonitorRefreshRate

    -
    public static int GetMonitorRefreshRate(int monitor)
    -
  • GetWindowPosition

    -
    @ByVal public static Raylib.Vector2 GetWindowPosition()
    -
  • GetWindowScaleDPI

    -
    @ByVal public static Raylib.Vector2 GetWindowScaleDPI()
    -
  • GetMonitorName

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetMonitorName(int monitor)
    -
  • SetClipboardText

    -
    public static void SetClipboardText(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • SetClipboardText

    -
    -
    public static void SetClipboardText(String text)
    -
    +
    public static void SetClipboardText(String text)
  • GetClipboardText

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetClipboardText()
    -
  • GetClipboardImage

    -
    @ByVal public static Raylib.Image GetClipboardImage()
    -
  • EnableEventWaiting

    -
    public static void EnableEventWaiting()
    -
  • DisableEventWaiting

    -
    public static void DisableEventWaiting()
    -
  • ShowCursor

    -
    public static void ShowCursor()
    -
  • HideCursor

    -
    public static void HideCursor()
    -
  • IsCursorHidden

    -
    @Cast("bool") public static boolean IsCursorHidden()
    -
  • EnableCursor

    -
    public static void EnableCursor()
    -
  • DisableCursor

    -
    public static void DisableCursor()
    -
  • IsCursorOnScreen

    -
    @Cast("bool") public static boolean IsCursorOnScreen()
    -
  • ClearBackground

    -
    public static void ClearBackground(@ByVal Raylib.Color color)
    -
  • BeginDrawing

    -
    public static void BeginDrawing()
    -
  • EndDrawing

    -
    public static void EndDrawing()
    -
  • BeginMode2D

    -
    public static void BeginMode2D(@ByVal Raylib.Camera2D camera)
    -
  • EndMode2D

    -
    public static void EndMode2D()
    -
  • BeginMode3D

    -
    public static void BeginMode3D(@ByVal Raylib.Camera3D camera)
    -
  • EndMode3D

    -
    public static void EndMode3D()
    -
  • BeginTextureMode

    -
    public static void BeginTextureMode(@ByVal @Cast("RenderTexture2D*") Raylib.RenderTexture target)
    -
  • EndTextureMode

    -
    public static void EndTextureMode()
    -
  • BeginShaderMode

    -
    public static void BeginShaderMode(@ByVal Raylib.Shader shader)
    -
  • EndShaderMode

    -
    public static void EndShaderMode()
    -
  • BeginBlendMode

    -
    public static void BeginBlendMode(int mode)
    -
  • EndBlendMode

    -
    public static void EndBlendMode()
    -
  • BeginScissorMode

    -
    public static void BeginScissorMode(int x, int y, int width, int height)
    -
  • EndScissorMode

    -
    public static void EndScissorMode()
    -
  • BeginVrStereoMode

    -
    public static void BeginVrStereoMode(@ByVal Raylib.VrStereoConfig config)
    -
  • EndVrStereoMode

    -
    public static void EndVrStereoMode()
    -
  • LoadVrStereoConfig

    -
    @ByVal public static Raylib.VrStereoConfig LoadVrStereoConfig(@ByVal Raylib.VrDeviceInfo device)
    -
  • UnloadVrStereoConfig

    -
    public static void UnloadVrStereoConfig(@ByVal Raylib.VrStereoConfig config)
    -
  • LoadShader

    -
    @ByVal public static Raylib.Shader LoadShader(@Cast("const char*") org.bytedeco.javacpp.BytePointer vsFileName, @Cast("const char*") org.bytedeco.javacpp.BytePointer fsFileName)
    -
  • LoadShader

    -
    @ByVal -public static Raylib.Shader LoadShader(String vsFileName, - String fsFileName)
    -
    +public static Raylib.Shader LoadShader(String vsFileName, + String fsFileName)
  • LoadShaderFromMemory

    -
    @ByVal public static Raylib.Shader LoadShaderFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer vsCode, @Cast("const char*") org.bytedeco.javacpp.BytePointer fsCode)
    -
  • LoadShaderFromMemory

    -
    @ByVal -public static Raylib.Shader LoadShaderFromMemory(String vsCode, - String fsCode)
    -
    +public static Raylib.Shader LoadShaderFromMemory(String vsCode, + String fsCode)
  • IsShaderValid

    -
    @Cast("bool") public static boolean IsShaderValid(@ByVal Raylib.Shader shader)
    -
  • GetShaderLocation

    -
    public static int GetShaderLocation(@ByVal Raylib.Shader shader, @Cast("const char*") org.bytedeco.javacpp.BytePointer uniformName)
    -
  • GetShaderLocation

    -
    public static int GetShaderLocation(@ByVal Raylib.Shader shader, - String uniformName)
    -
    + String uniformName)
  • GetShaderLocationAttrib

    -
    public static int GetShaderLocationAttrib(@ByVal Raylib.Shader shader, @Cast("const char*") org.bytedeco.javacpp.BytePointer attribName)
    -
  • GetShaderLocationAttrib

    -
    public static int GetShaderLocationAttrib(@ByVal Raylib.Shader shader, - String attribName)
    -
    + String attribName)
  • SetShaderValue

    -
    public static void SetShaderValue(@ByVal Raylib.Shader shader, int locIndex, @Const org.bytedeco.javacpp.Pointer value, int uniformType)
    -
  • SetShaderValueV

    -
    public static void SetShaderValueV(@ByVal Raylib.Shader shader, int locIndex, @@ -28798,58 +25205,48 @@

    SetShaderValueV

    org.bytedeco.javacpp.Pointer value, int uniformType, int count)
    -
  • SetShaderValueMatrix

    -
    public static void SetShaderValueMatrix(@ByVal Raylib.Shader shader, int locIndex, @ByVal Raylib.Matrix mat)
    -
  • SetShaderValueTexture

    -
    public static void SetShaderValueTexture(@ByVal Raylib.Shader shader, int locIndex, @ByVal @Cast("Texture2D*") Raylib.Texture texture)
    -
  • UnloadShader

    -
    public static void UnloadShader(@ByVal Raylib.Shader shader)
    -
  • GetScreenToWorldRay

    -
    @ByVal public static Raylib.Ray GetScreenToWorldRay(@ByVal Raylib.Vector2 _position, @ByVal @Cast("Camera*") Raylib.Camera3D camera)
    -
  • GetScreenToWorldRayEx

    -
    @ByVal public static Raylib.Ray GetScreenToWorldRayEx(@ByVal Raylib.Vector2 _position, @@ -28857,25 +25254,21 @@

    GetScreenToWorldRayEx

    Raylib.Camera3D camera, int width, int height)
    -
  • GetWorldToScreen

    -
    @ByVal public static Raylib.Vector2 GetWorldToScreen(@ByVal Raylib.Vector3 _position, @ByVal @Cast("Camera*") Raylib.Camera3D camera)
    -
  • GetWorldToScreenEx

    -
    @ByVal public static Raylib.Vector2 GetWorldToScreenEx(@ByVal Raylib.Vector3 _position, @@ -28883,876 +25276,764 @@

    GetWorldToScreenEx

    Raylib.Camera3D camera, int width, int height)
    -
  • GetWorldToScreen2D

    -
    @ByVal public static Raylib.Vector2 GetWorldToScreen2D(@ByVal Raylib.Vector2 _position, @ByVal Raylib.Camera2D camera)
    -
  • GetScreenToWorld2D

    -
    @ByVal public static Raylib.Vector2 GetScreenToWorld2D(@ByVal Raylib.Vector2 _position, @ByVal Raylib.Camera2D camera)
    -
  • GetCameraMatrix

    -
    @ByVal public static Raylib.Matrix GetCameraMatrix(@ByVal @Cast("Camera*") Raylib.Camera3D camera)
    -
  • GetCameraMatrix2D

    -
    @ByVal public static Raylib.Matrix GetCameraMatrix2D(@ByVal Raylib.Camera2D camera)
    -
  • SetTargetFPS

    -
    public static void SetTargetFPS(int fps)
    -
  • GetFrameTime

    -
    public static float GetFrameTime()
    -
  • GetTime

    -
    public static double GetTime()
    -
  • GetFPS

    -
    public static int GetFPS()
    -
  • SwapScreenBuffer

    -
    public static void SwapScreenBuffer()
    -
  • PollInputEvents

    -
    public static void PollInputEvents()
    -
  • WaitTime

    -
    public static void WaitTime(double seconds)
    -
  • SetRandomSeed

    -
    public static void SetRandomSeed(@Cast("unsigned int") int seed)
    -
  • GetRandomValue

    -
    public static int GetRandomValue(int min, int max)
    -
  • LoadRandomSequence

    -
    public static org.bytedeco.javacpp.IntPointer LoadRandomSequence(@Cast("unsigned int") int count, int min, int max)
    -
  • UnloadRandomSequence

    -
    public static void UnloadRandomSequence(org.bytedeco.javacpp.IntPointer sequence)
    -
  • UnloadRandomSequence

    -
    -
    public static void UnloadRandomSequence(IntBuffer sequence)
    -
    +
    public static void UnloadRandomSequence(IntBuffer sequence)
  • UnloadRandomSequence

    -
    public static void UnloadRandomSequence(int[] sequence)
    -
  • TakeScreenshot

    -
    public static void TakeScreenshot(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • TakeScreenshot

    -
    -
    public static void TakeScreenshot(String fileName)
    -
    +
    public static void TakeScreenshot(String fileName)
  • SetConfigFlags

    -
    public static void SetConfigFlags(@Cast("unsigned int") int flags)
    -
  • OpenURL

    -
    public static void OpenURL(@Cast("const char*") org.bytedeco.javacpp.BytePointer url)
    -
  • OpenURL

    -
    -
    public static void OpenURL(String url)
    -
    +
    public static void OpenURL(String url)
    +
    +
  • +
  • +
    +

    SetTraceLogLevel

    +
    public static void SetTraceLogLevel(int logLevel)
  • TraceLog

    -
    public static void TraceLog(int logLevel, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TraceLog

    -
    public static void TraceLog(int logLevel, - String text)
    -
    + String text)
  • -
  • -
    -

    SetTraceLogLevel

    -
    -
    public static void SetTraceLogLevel(int logLevel)
    -
    +
  • +
    +

    SetTraceLogCallback

    +
    public static void SetTraceLogCallback(Raylib.TraceLogCallback callback)
  • MemAlloc

    -
    public static org.bytedeco.javacpp.Pointer MemAlloc(@Cast("unsigned int") int size)
    -
  • MemRealloc

    -
    public static org.bytedeco.javacpp.Pointer MemRealloc(org.bytedeco.javacpp.Pointer ptr, @Cast("unsigned int") int size)
    -
  • MemFree

    -
    public static void MemFree(org.bytedeco.javacpp.Pointer ptr)
    -
    -
    -
  • -
  • -
    -

    SetTraceLogCallback

    -
    -
    public static void SetTraceLogCallback(Raylib.TraceLogCallback callback)
    -
    -
    -
  • -
  • -
    -

    SetLoadFileDataCallback

    -
    -
    public static void SetLoadFileDataCallback(Raylib.LoadFileDataCallback callback)
    -
    -
    -
  • -
  • -
    -

    SetSaveFileDataCallback

    -
    -
    public static void SetSaveFileDataCallback(Raylib.SaveFileDataCallback callback)
    -
    -
    -
  • -
  • -
    -

    SetLoadFileTextCallback

    -
    -
    public static void SetLoadFileTextCallback(Raylib.LoadFileTextCallback callback)
    -
    -
    -
  • -
  • -
    -

    SetSaveFileTextCallback

    -
    -
    public static void SetSaveFileTextCallback(Raylib.SaveFileTextCallback callback)
    -
  • LoadFileData

    -
    @Cast("unsigned char*") public static org.bytedeco.javacpp.BytePointer LoadFileData(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.IntPointer dataSize)
    -
  • LoadFileData

    -
    @Cast("unsigned char*") -public static ByteBuffer LoadFileData(String fileName, - IntBuffer dataSize)
    -
    +public static ByteBuffer LoadFileData(String fileName, + IntBuffer dataSize)
  • LoadFileData

    -
    @Cast("unsigned char*") public static byte[] LoadFileData(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, int[] dataSize)
    -
  • LoadFileData

    -
    @Cast("unsigned char*") -public static org.bytedeco.javacpp.BytePointer LoadFileData(String fileName, +public static org.bytedeco.javacpp.BytePointer LoadFileData(String fileName, org.bytedeco.javacpp.IntPointer dataSize)
    -
  • LoadFileData

    -
    @Cast("unsigned char*") -public static ByteBuffer LoadFileData(@Cast("const char*") +public static ByteBuffer LoadFileData(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - IntBuffer dataSize)
    -
    + IntBuffer dataSize)
  • LoadFileData

    -
    @Cast("unsigned char*") -public static byte[] LoadFileData(String fileName, +public static byte[] LoadFileData(String fileName, int[] dataSize)
    -
  • UnloadFileData

    -
    public static void UnloadFileData(@Cast("unsigned char*") org.bytedeco.javacpp.BytePointer data)
    -
  • UnloadFileData

    -
    public static void UnloadFileData(@Cast("unsigned char*") - ByteBuffer data)
    -
    + ByteBuffer data)
  • UnloadFileData

    -
    public static void UnloadFileData(@Cast("unsigned char*") byte[] data)
    -
  • SaveFileData

    -
    @Cast("bool") public static boolean SaveFileData(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.Pointer data, int dataSize)
    -
  • SaveFileData

    -
    @Cast("bool") -public static boolean SaveFileData(String fileName, +public static boolean SaveFileData(String fileName, org.bytedeco.javacpp.Pointer data, int dataSize)
    -
  • ExportDataAsCode

    -
    @Cast("bool") public static boolean ExportDataAsCode(@Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportDataAsCode

    -
    @Cast("bool") public static boolean ExportDataAsCode(@Cast("const unsigned char*") - ByteBuffer data, + ByteBuffer data, int dataSize, - String fileName)
    -
    + String fileName)
  • ExportDataAsCode

    -
    @Cast("bool") public static boolean ExportDataAsCode(@Cast("const unsigned char*") byte[] data, int dataSize, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportDataAsCode

    -
    @Cast("bool") public static boolean ExportDataAsCode(@Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize, - String fileName)
    -
    + String fileName)
  • ExportDataAsCode

    -
    @Cast("bool") public static boolean ExportDataAsCode(@Cast("const unsigned char*") - ByteBuffer data, + ByteBuffer data, int dataSize, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportDataAsCode

    -
    @Cast("bool") public static boolean ExportDataAsCode(@Cast("const unsigned char*") byte[] data, int dataSize, - String fileName)
    -
    + String fileName)
  • LoadFileText

    -
    -
    @Deprecated -public static String LoadFileText(String fileName)
    +
    @Deprecated +public static String LoadFileText(String fileName)
    Deprecated.
    Better to use Java libraries for text
    -
  • UnloadFileText

    -
    public static void UnloadFileText(@Cast("char*") org.bytedeco.javacpp.BytePointer text)
    -
  • UnloadFileText

    -
    public static void UnloadFileText(@Cast("char*") - ByteBuffer text)
    -
    + ByteBuffer text)
  • UnloadFileText

    -
    public static void UnloadFileText(@Cast("char*") byte[] text)
    -
  • SaveFileText

    -
    @Cast("bool") public static boolean SaveFileText(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - @Cast("char*") + @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • -
    +

    SaveFileText

    -
    @Cast("bool") -public static boolean SaveFileText(String fileName, - @Cast("char*") - ByteBuffer text)
    -
    +public static boolean SaveFileText(String fileName, + String text)
  • -
    -

    SaveFileText

    -
    -
    @Cast("bool") -public static boolean SaveFileText(@Cast("const char*") +
    +

    SetLoadFileDataCallback

    +
    public static void SetLoadFileDataCallback(Raylib.LoadFileDataCallback callback)
    +
    +
  • +
  • +
    +

    SetSaveFileDataCallback

    +
    public static void SetSaveFileDataCallback(Raylib.SaveFileDataCallback callback)
    +
    +
  • +
  • +
    +

    SetLoadFileTextCallback

    +
    public static void SetLoadFileTextCallback(Raylib.LoadFileTextCallback callback)
    +
    +
  • +
  • +
    +

    SetSaveFileTextCallback

    +
    public static void SetSaveFileTextCallback(Raylib.SaveFileTextCallback callback)
    +
    +
  • +
  • +
    +

    FileRename

    +
    public static int FileRename(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - @Cast("char*") - byte[] text)
    -
  • + @Cast("const char*") + org.bytedeco.javacpp.BytePointer fileRename)
  • -
    -

    SaveFileText

    -
    -
    @Cast("bool") -public static boolean SaveFileText(String fileName, - @Cast("char*") - org.bytedeco.javacpp.BytePointer text)
    -
    +
    +

    FileRename

    +
    public static int FileRename(String fileName, + String fileRename)
  • -
    -

    SaveFileText

    -
    -
    @Cast("bool") -public static boolean SaveFileText(@Cast("const char*") +
    +

    FileRemove

    +
    public static int FileRemove(@Cast("const char*") + org.bytedeco.javacpp.BytePointer fileName)
    +
    +
  • +
  • +
    +

    FileRemove

    +
    public static int FileRemove(String fileName)
    +
    +
  • +
  • +
    +

    FileCopy

    +
    public static int FileCopy(@Cast("const char*") + org.bytedeco.javacpp.BytePointer srcPath, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer dstPath)
    +
    +
  • +
  • +
    +

    FileCopy

    +
    public static int FileCopy(String srcPath, + String dstPath)
    +
    +
  • +
  • +
    +

    FileMove

    +
    public static int FileMove(@Cast("const char*") + org.bytedeco.javacpp.BytePointer srcPath, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer dstPath)
    +
    +
  • +
  • +
    +

    FileMove

    +
    public static int FileMove(String srcPath, + String dstPath)
    +
    +
  • +
  • +
    +

    FileTextReplace

    +
    public static int FileTextReplace(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - @Cast("char*") - ByteBuffer text)
    -
  • + @Cast("const char*") + org.bytedeco.javacpp.BytePointer search, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer replacement)
  • -
    -

    SaveFileText

    -
    -
    @Cast("bool") -public static boolean SaveFileText(String fileName, - @Cast("char*") - byte[] text)
    -
    +
    +

    FileTextReplace

    +
    public static int FileTextReplace(String fileName, + String search, + String replacement)
    +
    +
  • +
  • +
    +

    FileTextFindIndex

    +
    public static int FileTextFindIndex(@Cast("const char*") + org.bytedeco.javacpp.BytePointer fileName, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer search)
    +
    +
  • +
  • +
    +

    FileTextFindIndex

    +
    public static int FileTextFindIndex(String fileName, + String search)
  • FileExists

    -
    @Cast("bool") public static boolean FileExists(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • FileExists

    -
    @Cast("bool") -public static boolean FileExists(String fileName)
    -
    +public static boolean FileExists(String fileName)
  • DirectoryExists

    -
    @Cast("bool") public static boolean DirectoryExists(@Cast("const char*") org.bytedeco.javacpp.BytePointer dirPath)
    -
  • DirectoryExists

    -
    @Cast("bool") -public static boolean DirectoryExists(String dirPath)
    -
    +public static boolean DirectoryExists(String dirPath)
  • IsFileExtension

    -
    @Cast("bool") public static boolean IsFileExtension(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, @Cast("const char*") org.bytedeco.javacpp.BytePointer ext)
    -
  • IsFileExtension

    -
    @Cast("bool") -public static boolean IsFileExtension(String fileName, - String ext)
    -
    +public static boolean IsFileExtension(String fileName, + String ext)
  • GetFileLength

    -
    public static int GetFileLength(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • GetFileLength

    -
    -
    public static int GetFileLength(String fileName)
    -
    +
    public static int GetFileLength(String fileName)
    +
    +
  • +
  • +
    +

    GetFileModTime

    +
    public static long GetFileModTime(@Cast("const char*") + org.bytedeco.javacpp.BytePointer fileName)
    +
    +
  • +
  • +
    +

    GetFileModTime

    +
    public static long GetFileModTime(String fileName)
  • GetFileExtension

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetFileExtension(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • GetFileExtension

    -
    -
    public static String GetFileExtension(String fileName)
    -
    +
    public static String GetFileExtension(String fileName)
  • GetFileName

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetFileName(@Cast("const char*") org.bytedeco.javacpp.BytePointer filePath)
    -
  • GetFileName

    -
    -
    public static String GetFileName(String filePath)
    -
    +
    public static String GetFileName(String filePath)
  • GetFileNameWithoutExt

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetFileNameWithoutExt(@Cast("const char*") org.bytedeco.javacpp.BytePointer filePath)
    -
  • GetFileNameWithoutExt

    -
    -
    public static String GetFileNameWithoutExt(String filePath)
    -
    +
    public static String GetFileNameWithoutExt(String filePath)
  • GetDirectoryPath

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetDirectoryPath(@Cast("const char*") org.bytedeco.javacpp.BytePointer filePath)
    -
  • GetDirectoryPath

    -
    -
    public static String GetDirectoryPath(String filePath)
    -
    +
    public static String GetDirectoryPath(String filePath)
  • GetPrevDirectoryPath

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetPrevDirectoryPath(@Cast("const char*") org.bytedeco.javacpp.BytePointer dirPath)
    -
  • GetPrevDirectoryPath

    -
    -
    public static String GetPrevDirectoryPath(String dirPath)
    -
    +
    public static String GetPrevDirectoryPath(String dirPath)
  • GetWorkingDirectory

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetWorkingDirectory()
    -
  • GetApplicationDirectory

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetApplicationDirectory()
    -
  • MakeDirectory

    -
    public static int MakeDirectory(@Cast("const char*") org.bytedeco.javacpp.BytePointer dirPath)
    -
  • MakeDirectory

    -
    -
    public static int MakeDirectory(String dirPath)
    -
    +
    public static int MakeDirectory(String dirPath)
  • ChangeDirectory

    -
    @Cast("bool") public static boolean ChangeDirectory(@Cast("const char*") - org.bytedeco.javacpp.BytePointer dir)
    -
    + org.bytedeco.javacpp.BytePointer dirPath)
  • ChangeDirectory

    -
    @Cast("bool") -public static boolean ChangeDirectory(String dir)
    -
    +public static boolean ChangeDirectory(String dirPath)
  • IsPathFile

    -
    @Cast("bool") public static boolean IsPathFile(@Cast("const char*") org.bytedeco.javacpp.BytePointer path)
    -
  • IsPathFile

    -
    @Cast("bool") -public static boolean IsPathFile(String path)
    -
    +public static boolean IsPathFile(String path)
  • IsFileNameValid

    -
    @Cast("bool") public static boolean IsFileNameValid(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • IsFileNameValid

    -
    @Cast("bool") -public static boolean IsFileNameValid(String fileName)
    -
    +public static boolean IsFileNameValid(String fileName)
  • LoadDirectoryFiles

    -
    @ByVal public static Raylib.FilePathList LoadDirectoryFiles(@Cast("const char*") org.bytedeco.javacpp.BytePointer dirPath)
    -
  • LoadDirectoryFiles

    -
    @ByVal -public static Raylib.FilePathList LoadDirectoryFiles(String dirPath)
    -
    +public static Raylib.FilePathList LoadDirectoryFiles(String dirPath)
  • LoadDirectoryFilesEx

    -
    @ByVal public static Raylib.FilePathList LoadDirectoryFilesEx(@Cast("const char*") org.bytedeco.javacpp.BytePointer basePath, @@ -29760,841 +26041,740 @@

    LoadDirectoryFilesEx

    org.bytedeco.javacpp.BytePointer filter, @Cast("bool") boolean scanSubdirs)
    -
  • LoadDirectoryFilesEx

    -
    @ByVal -public static Raylib.FilePathList LoadDirectoryFilesEx(String basePath, - String filter, +public static Raylib.FilePathList LoadDirectoryFilesEx(String basePath, + String filter, @Cast("bool") boolean scanSubdirs)
    -
  • UnloadDirectoryFiles

    -
    public static void UnloadDirectoryFiles(@ByVal Raylib.FilePathList files)
    -
  • IsFileDropped

    -
    @Cast("bool") public static boolean IsFileDropped()
    -
  • LoadDroppedFiles

    -
    @ByVal public static Raylib.FilePathList LoadDroppedFiles()
    -
  • UnloadDroppedFiles

    -
    public static void UnloadDroppedFiles(@ByVal Raylib.FilePathList files)
    -
  • -
    -

    GetFileModTime

    -
    -
    public static long GetFileModTime(@Cast("const char*") - org.bytedeco.javacpp.BytePointer fileName)
    -
    +
    +

    GetDirectoryFileCount

    +
    @Cast("unsigned int") +public static int GetDirectoryFileCount(@Cast("const char*") + org.bytedeco.javacpp.BytePointer dirPath)
  • -
    -

    GetFileModTime

    -
    -
    public static long GetFileModTime(String fileName)
    -
    +
    +

    GetDirectoryFileCount

    +
    @Cast("unsigned int") +public static int GetDirectoryFileCount(String dirPath)
    +
    +
  • +
  • +
    +

    GetDirectoryFileCountEx

    +
    @Cast("unsigned int") +public static int GetDirectoryFileCountEx(@Cast("const char*") + org.bytedeco.javacpp.BytePointer basePath, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer filter, + @Cast("bool") + boolean scanSubdirs)
    +
    +
  • +
  • +
    +

    GetDirectoryFileCountEx

    +
    @Cast("unsigned int") +public static int GetDirectoryFileCountEx(String basePath, + String filter, + @Cast("bool") + boolean scanSubdirs)
  • CompressData

    -
    @Cast("unsigned char*") public static org.bytedeco.javacpp.BytePointer CompressData(@Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize, org.bytedeco.javacpp.IntPointer compDataSize)
    -
  • CompressData

    -
    @Cast("unsigned char*") -public static ByteBuffer CompressData(@Cast("const unsigned char*") - ByteBuffer data, +public static ByteBuffer CompressData(@Cast("const unsigned char*") + ByteBuffer data, int dataSize, - IntBuffer compDataSize)
    -
    + IntBuffer compDataSize)
  • CompressData

    -
    @Cast("unsigned char*") public static byte[] CompressData(@Cast("const unsigned char*") byte[] data, int dataSize, int[] compDataSize)
    -
  • DecompressData

    -
    @Cast("unsigned char*") public static org.bytedeco.javacpp.BytePointer DecompressData(@Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer compData, int compDataSize, org.bytedeco.javacpp.IntPointer dataSize)
    -
  • DecompressData

    -
    @Cast("unsigned char*") -public static ByteBuffer DecompressData(@Cast("const unsigned char*") - ByteBuffer compData, +public static ByteBuffer DecompressData(@Cast("const unsigned char*") + ByteBuffer compData, int compDataSize, - IntBuffer dataSize)
    -
    + IntBuffer dataSize)
  • DecompressData

    -
    @Cast("unsigned char*") public static byte[] DecompressData(@Cast("const unsigned char*") byte[] compData, int compDataSize, int[] dataSize)
    -
  • EncodeDataBase64

    -
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer EncodeDataBase64(@Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize, org.bytedeco.javacpp.IntPointer outputSize)
    -
  • EncodeDataBase64

    -
    @Cast("char*") -public static ByteBuffer EncodeDataBase64(@Cast("const unsigned char*") - ByteBuffer data, +public static ByteBuffer EncodeDataBase64(@Cast("const unsigned char*") + ByteBuffer data, int dataSize, - IntBuffer outputSize)
    -
    + IntBuffer outputSize)
  • EncodeDataBase64

    -
    @Cast("char*") public static byte[] EncodeDataBase64(@Cast("const unsigned char*") byte[] data, int dataSize, int[] outputSize)
    -
  • DecodeDataBase64

    -
    @Cast("unsigned char*") -public static org.bytedeco.javacpp.BytePointer DecodeDataBase64(@Cast("const unsigned char*") - org.bytedeco.javacpp.BytePointer data, +public static org.bytedeco.javacpp.BytePointer DecodeDataBase64(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer outputSize)
    -
  • -
    +

    DecodeDataBase64

    -
    @Cast("unsigned char*") -public static ByteBuffer DecodeDataBase64(@Cast("const unsigned char*") - ByteBuffer data, - IntBuffer outputSize)
    -
    +public static ByteBuffer DecodeDataBase64(String text, + IntBuffer outputSize)
  • -
    +

    DecodeDataBase64

    -
    @Cast("unsigned char*") -public static byte[] DecodeDataBase64(@Cast("const unsigned char*") - byte[] data, +public static byte[] DecodeDataBase64(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + int[] outputSize)
    +
    +
  • +
  • +
    +

    DecodeDataBase64

    +
    @Cast("unsigned char*") +public static org.bytedeco.javacpp.BytePointer DecodeDataBase64(String text, + org.bytedeco.javacpp.IntPointer outputSize)
    +
    +
  • +
  • +
    +

    DecodeDataBase64

    +
    @Cast("unsigned char*") +public static ByteBuffer DecodeDataBase64(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + IntBuffer outputSize)
    +
    +
  • +
  • +
    +

    DecodeDataBase64

    +
    @Cast("unsigned char*") +public static byte[] DecodeDataBase64(String text, int[] outputSize)
    -
  • ComputeCRC32

    -
    @Cast("unsigned int") public static int ComputeCRC32(@Cast("unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize)
    -
  • ComputeCRC32

    -
    @Cast("unsigned int") public static int ComputeCRC32(@Cast("unsigned char*") - ByteBuffer data, + ByteBuffer data, int dataSize)
    -
  • ComputeCRC32

    -
    @Cast("unsigned int") public static int ComputeCRC32(@Cast("unsigned char*") byte[] data, int dataSize)
    -
  • ComputeMD5

    -
    @Cast("unsigned int*") public static org.bytedeco.javacpp.IntPointer ComputeMD5(@Cast("unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize)
    -
  • ComputeMD5

    -
    @Cast("unsigned int*") -public static IntBuffer ComputeMD5(@Cast("unsigned char*") - ByteBuffer data, +public static IntBuffer ComputeMD5(@Cast("unsigned char*") + ByteBuffer data, int dataSize)
    -
  • ComputeMD5

    -
    @Cast("unsigned int*") public static int[] ComputeMD5(@Cast("unsigned char*") byte[] data, int dataSize)
    -
  • ComputeSHA1

    -
    @Cast("unsigned int*") public static org.bytedeco.javacpp.IntPointer ComputeSHA1(@Cast("unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize)
    -
  • ComputeSHA1

    -
    @Cast("unsigned int*") -public static IntBuffer ComputeSHA1(@Cast("unsigned char*") - ByteBuffer data, +public static IntBuffer ComputeSHA1(@Cast("unsigned char*") + ByteBuffer data, int dataSize)
    -
  • ComputeSHA1

    -
    @Cast("unsigned int*") public static int[] ComputeSHA1(@Cast("unsigned char*") byte[] data, int dataSize)
    -
    +
    +
  • +
  • +
    +

    ComputeSHA256

    +
    @Cast("unsigned int*") +public static org.bytedeco.javacpp.IntPointer ComputeSHA256(@Cast("unsigned char*") + org.bytedeco.javacpp.BytePointer data, + int dataSize)
    +
    +
  • +
  • +
    +

    ComputeSHA256

    +
    @Cast("unsigned int*") +public static IntBuffer ComputeSHA256(@Cast("unsigned char*") + ByteBuffer data, + int dataSize)
    +
    +
  • +
  • +
    +

    ComputeSHA256

    +
    @Cast("unsigned int*") +public static int[] ComputeSHA256(@Cast("unsigned char*") + byte[] data, + int dataSize)
  • LoadAutomationEventList

    -
    @ByVal public static Raylib.AutomationEventList LoadAutomationEventList(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadAutomationEventList

    -
    @ByVal -public static Raylib.AutomationEventList LoadAutomationEventList(String fileName)
    -
    +public static Raylib.AutomationEventList LoadAutomationEventList(String fileName)
  • UnloadAutomationEventList

    -
    public static void UnloadAutomationEventList(@ByVal Raylib.AutomationEventList list)
    -
  • ExportAutomationEventList

    -
    @Cast("bool") public static boolean ExportAutomationEventList(@ByVal Raylib.AutomationEventList list, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportAutomationEventList

    -
    @Cast("bool") public static boolean ExportAutomationEventList(@ByVal Raylib.AutomationEventList list, - String fileName)
    -
    + String fileName)
  • SetAutomationEventList

    -
    public static void SetAutomationEventList(Raylib.AutomationEventList list)
    -
  • SetAutomationEventBaseFrame

    -
    public static void SetAutomationEventBaseFrame(int frame)
    -
  • StartAutomationEventRecording

    -
    public static void StartAutomationEventRecording()
    -
  • StopAutomationEventRecording

    -
    public static void StopAutomationEventRecording()
    -
  • PlayAutomationEvent

    -
    public static void PlayAutomationEvent(@ByVal Raylib.AutomationEvent event)
    -
  • IsKeyPressed

    -
    @Cast("bool") public static boolean IsKeyPressed(int key)
    -
  • IsKeyPressedRepeat

    -
    @Cast("bool") public static boolean IsKeyPressedRepeat(int key)
    -
  • IsKeyDown

    -
    @Cast("bool") public static boolean IsKeyDown(int key)
    -
  • IsKeyReleased

    -
    @Cast("bool") public static boolean IsKeyReleased(int key)
    -
  • IsKeyUp

    -
    @Cast("bool") public static boolean IsKeyUp(int key)
    -
  • GetKeyPressed

    -
    public static int GetKeyPressed()
    -
  • GetCharPressed

    -
    public static int GetCharPressed()
    -
    -
    -
  • -
  • -
    -

    SetExitKey

    -
    -
    public static void SetExitKey(int key)
    -
  • GetKeyName

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetKeyName(int key)
    -
    +
    +
  • +
  • +
    +

    SetExitKey

    +
    public static void SetExitKey(int key)
  • IsGamepadAvailable

    -
    @Cast("bool") public static boolean IsGamepadAvailable(int gamepad)
    -
  • GetGamepadName

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GetGamepadName(int gamepad)
    -
  • IsGamepadButtonPressed

    -
    @Cast("bool") public static boolean IsGamepadButtonPressed(int gamepad, int button)
    -
  • IsGamepadButtonDown

    -
    @Cast("bool") public static boolean IsGamepadButtonDown(int gamepad, int button)
    -
  • IsGamepadButtonReleased

    -
    @Cast("bool") public static boolean IsGamepadButtonReleased(int gamepad, int button)
    -
  • IsGamepadButtonUp

    -
    @Cast("bool") public static boolean IsGamepadButtonUp(int gamepad, int button)
    -
  • GetGamepadButtonPressed

    -
    public static int GetGamepadButtonPressed()
    -
  • GetGamepadAxisCount

    -
    public static int GetGamepadAxisCount(int gamepad)
    -
  • GetGamepadAxisMovement

    -
    public static float GetGamepadAxisMovement(int gamepad, int axis)
    -
  • SetGamepadMappings

    -
    public static int SetGamepadMappings(@Cast("const char*") org.bytedeco.javacpp.BytePointer mappings)
    -
  • SetGamepadMappings

    -
    -
    public static int SetGamepadMappings(String mappings)
    -
    +
    public static int SetGamepadMappings(String mappings)
  • SetGamepadVibration

    -
    public static void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
    -
  • IsMouseButtonPressed

    -
    @Cast("bool") public static boolean IsMouseButtonPressed(int button)
    -
  • IsMouseButtonDown

    -
    @Cast("bool") public static boolean IsMouseButtonDown(int button)
    -
  • IsMouseButtonReleased

    -
    @Cast("bool") public static boolean IsMouseButtonReleased(int button)
    -
  • IsMouseButtonUp

    -
    @Cast("bool") public static boolean IsMouseButtonUp(int button)
    -
  • GetMouseX

    -
    public static int GetMouseX()
    -
  • GetMouseY

    -
    public static int GetMouseY()
    -
  • GetMousePosition

    -
    @ByVal public static Raylib.Vector2 GetMousePosition()
    -
  • GetMouseDelta

    -
    @ByVal public static Raylib.Vector2 GetMouseDelta()
    -
  • SetMousePosition

    -
    public static void SetMousePosition(int x, int y)
    -
  • SetMouseOffset

    -
    public static void SetMouseOffset(int offsetX, int offsetY)
    -
  • SetMouseScale

    -
    public static void SetMouseScale(float scaleX, float scaleY)
    -
  • GetMouseWheelMove

    -
    public static float GetMouseWheelMove()
    -
  • GetMouseWheelMoveV

    -
    @ByVal public static Raylib.Vector2 GetMouseWheelMoveV()
    -
  • SetMouseCursor

    -
    public static void SetMouseCursor(int cursor)
    -
  • GetTouchX

    -
    public static int GetTouchX()
    -
  • GetTouchY

    -
    public static int GetTouchY()
    -
  • GetTouchPosition

    -
    @ByVal public static Raylib.Vector2 GetTouchPosition(int index)
    -
  • GetTouchPointId

    -
    public static int GetTouchPointId(int index)
    -
  • GetTouchPointCount

    -
    public static int GetTouchPointCount()
    -
  • SetGesturesEnabled

    -
    public static void SetGesturesEnabled(@Cast("unsigned int") int flags)
    -
  • IsGestureDetected

    -
    @Cast("bool") public static boolean IsGestureDetected(@Cast("unsigned int") int gesture)
    -
  • GetGestureDetected

    -
    public static int GetGestureDetected()
    -
  • GetGestureHoldDuration

    -
    public static float GetGestureHoldDuration()
    -
  • GetGestureDragVector

    -
    @ByVal public static Raylib.Vector2 GetGestureDragVector()
    -
  • GetGestureDragAngle

    -
    public static float GetGestureDragAngle()
    -
  • GetGesturePinchVector

    -
    @ByVal public static Raylib.Vector2 GetGesturePinchVector()
    -
  • GetGesturePinchAngle

    -
    public static float GetGesturePinchAngle()
    -
  • UpdateCamera

    -
    public static void UpdateCamera(@Cast("Camera*") Raylib.Camera3D camera, int mode)
    -
  • UpdateCameraPro

    -
    public static void UpdateCameraPro(@Cast("Camera*") Raylib.Camera3D camera, @ByVal @@ -30602,91 +26782,75 @@

    UpdateCameraPro

    @ByVal Raylib.Vector3 rotation, float zoom)
    -
  • SetShapesTexture

    -
    public static void SetShapesTexture(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @ByVal Raylib.Rectangle source)
    -
  • GetShapesTexture

    -
    @ByVal @Cast("Texture2D*") public static Raylib.Texture GetShapesTexture()
    -
  • GetShapesTextureRectangle

    -
    @ByVal public static Raylib.Rectangle GetShapesTextureRectangle()
    -
  • DrawPixel

    -
    public static void DrawPixel(int posX, int posY, @ByVal Raylib.Color color)
    -
  • DrawPixelV

    -
    public static void DrawPixelV(@ByVal Raylib.Vector2 _position, @ByVal Raylib.Color color)
    -
  • DrawLine

    -
    public static void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, @ByVal Raylib.Color color)
    -
  • DrawLineV

    -
    public static void DrawLineV(@ByVal Raylib.Vector2 startPos, @ByVal Raylib.Vector2 endPos, @ByVal Raylib.Color color)
    -
  • DrawLineEx

    -
    public static void DrawLineEx(@ByVal Raylib.Vector2 startPos, @ByVal @@ -30694,25 +26858,21 @@

    DrawLineEx

    float thick, @ByVal Raylib.Color color)
    -
  • DrawLineStrip

    -
    public static void DrawLineStrip(@Const Raylib.Vector2 points, int pointCount, @ByVal Raylib.Color color)
    -
  • DrawLineBezier

    -
    public static void DrawLineBezier(@ByVal Raylib.Vector2 startPos, @ByVal @@ -30720,25 +26880,56 @@

    DrawLineBezier

    float thick, @ByVal Raylib.Color color)
    -
    +
    +
  • +
  • +
    +

    DrawLineDashed

    +
    public static void DrawLineDashed(@ByVal + Raylib.Vector2 startPos, + @ByVal + Raylib.Vector2 endPos, + int dashSize, + int spaceSize, + @ByVal + Raylib.Color color)
  • DrawCircle

    -
    public static void DrawCircle(int centerX, int centerY, float radius, @ByVal Raylib.Color color)
    -
    +
    +
  • +
  • +
    +

    DrawCircleV

    +
    public static void DrawCircleV(@ByVal + Raylib.Vector2 center, + float radius, + @ByVal + Raylib.Color color)
    +
    +
  • +
  • +
    +

    DrawCircleGradient

    +
    public static void DrawCircleGradient(@ByVal + Raylib.Vector2 center, + float radius, + @ByVal + Raylib.Color inner, + @ByVal + Raylib.Color outer)
  • DrawCircleSector

    -
    public static void DrawCircleSector(@ByVal Raylib.Vector2 center, float radius, @@ -30747,13 +26938,11 @@

    DrawCircleSector

    int segments, @ByVal Raylib.Color color)
    -
  • DrawCircleSectorLines

    -
    public static void DrawCircleSectorLines(@ByVal Raylib.Vector2 center, float radius, @@ -30762,89 +26951,75 @@

    DrawCircleSectorLines

    int segments, @ByVal Raylib.Color color)
    -
    -
    -
  • -
  • -
    -

    DrawCircleGradient

    -
    -
    public static void DrawCircleGradient(int centerX, - int centerY, - float radius, - @ByVal - Raylib.Color inner, - @ByVal - Raylib.Color outer)
    -
    -
    -
  • -
  • -
    -

    DrawCircleV

    -
    -
    public static void DrawCircleV(@ByVal - Raylib.Vector2 center, - float radius, - @ByVal - Raylib.Color color)
    -
  • DrawCircleLines

    -
    public static void DrawCircleLines(int centerX, int centerY, float radius, @ByVal Raylib.Color color)
    -
  • DrawCircleLinesV

    -
    public static void DrawCircleLinesV(@ByVal Raylib.Vector2 center, float radius, @ByVal Raylib.Color color)
    -
  • DrawEllipse

    -
    public static void DrawEllipse(int centerX, int centerY, float radiusH, float radiusV, @ByVal Raylib.Color color)
    -
    +
    +
  • +
  • +
    +

    DrawEllipseV

    +
    public static void DrawEllipseV(@ByVal + Raylib.Vector2 center, + float radiusH, + float radiusV, + @ByVal + Raylib.Color color)
  • DrawEllipseLines

    -
    public static void DrawEllipseLines(int centerX, int centerY, float radiusH, float radiusV, @ByVal Raylib.Color color)
    -
    +
    +
  • +
  • +
    +

    DrawEllipseLinesV

    +
    public static void DrawEllipseLinesV(@ByVal + Raylib.Vector2 center, + float radiusH, + float radiusV, + @ByVal + Raylib.Color color)
  • DrawRing

    -
    public static void DrawRing(@ByVal Raylib.Vector2 center, float innerRadius, @@ -30854,13 +27029,11 @@

    DrawRing

    int segments, @ByVal Raylib.Color color)
    -
  • DrawRingLines

    -
    public static void DrawRingLines(@ByVal Raylib.Vector2 center, float innerRadius, @@ -30870,50 +27043,42 @@

    DrawRingLines

    int segments, @ByVal Raylib.Color color)
    -
  • DrawRectangle

    -
    public static void DrawRectangle(int posX, int posY, int width, int height, @ByVal Raylib.Color color)
    -
  • DrawRectangleV

    -
    public static void DrawRectangleV(@ByVal Raylib.Vector2 _position, @ByVal Raylib.Vector2 size, @ByVal Raylib.Color color)
    -
  • DrawRectangleRec

    -
    public static void DrawRectangleRec(@ByVal Raylib.Rectangle rec, @ByVal Raylib.Color color)
    -
  • DrawRectanglePro

    -
    public static void DrawRectanglePro(@ByVal Raylib.Rectangle rec, @ByVal @@ -30921,13 +27086,11 @@

    DrawRectanglePro

    float rotation, @ByVal Raylib.Color color)
    -
  • DrawRectangleGradientV

    -
    public static void DrawRectangleGradientV(int posX, int posY, int width, @@ -30936,13 +27099,11 @@

    DrawRectangleGradientV

    Raylib.Color top, @ByVal Raylib.Color bottom)
    -
  • DrawRectangleGradientH

    -
    public static void DrawRectangleGradientH(int posX, int posY, int width, @@ -30951,13 +27112,11 @@

    DrawRectangleGradientH

    Raylib.Color left, @ByVal Raylib.Color right)
    -
  • DrawRectangleGradientEx

    -
    public static void DrawRectangleGradientEx(@ByVal Raylib.Rectangle rec, @ByVal @@ -30965,67 +27124,57 @@

    DrawRectangleGradientEx

    @ByVal Raylib.Color bottomLeft, @ByVal - Raylib.Color topRight, + Raylib.Color bottomRight, @ByVal - Raylib.Color bottomRight)
    -
    + Raylib.Color topRight)
  • DrawRectangleLines

    -
    public static void DrawRectangleLines(int posX, int posY, int width, int height, @ByVal Raylib.Color color)
    -
  • DrawRectangleLinesEx

    -
    public static void DrawRectangleLinesEx(@ByVal Raylib.Rectangle rec, float lineThick, @ByVal Raylib.Color color)
    -
  • DrawRectangleRounded

    -
    public static void DrawRectangleRounded(@ByVal Raylib.Rectangle rec, float roundness, int segments, @ByVal Raylib.Color color)
    -
  • DrawRectangleRoundedLines

    -
    public static void DrawRectangleRoundedLines(@ByVal Raylib.Rectangle rec, float roundness, int segments, @ByVal Raylib.Color color)
    -
  • DrawRectangleRoundedLinesEx

    -
    public static void DrawRectangleRoundedLinesEx(@ByVal Raylib.Rectangle rec, float roundness, @@ -31033,13 +27182,11 @@

    DrawRectangleRoundedLinesEx

    float lineThick, @ByVal Raylib.Color color)
    -
  • DrawTriangle

    -
    public static void DrawTriangle(@ByVal Raylib.Vector2 v1, @ByVal @@ -31048,13 +27195,11 @@

    DrawTriangle

    Raylib.Vector2 v3, @ByVal Raylib.Color color)
    -
  • DrawTriangleLines

    -
    public static void DrawTriangleLines(@ByVal Raylib.Vector2 v1, @ByVal @@ -31063,37 +27208,31 @@

    DrawTriangleLines

    Raylib.Vector2 v3, @ByVal Raylib.Color color)
    -
  • DrawTriangleFan

    -
    public static void DrawTriangleFan(@Const Raylib.Vector2 points, int pointCount, @ByVal Raylib.Color color)
    -
  • DrawTriangleStrip

    -
    public static void DrawTriangleStrip(@Const Raylib.Vector2 points, int pointCount, @ByVal Raylib.Color color)
    -
  • DrawPoly

    -
    public static void DrawPoly(@ByVal Raylib.Vector2 center, int sides, @@ -31101,13 +27240,11 @@

    DrawPoly

    float rotation, @ByVal Raylib.Color color)
    -
  • DrawPolyLines

    -
    public static void DrawPolyLines(@ByVal Raylib.Vector2 center, int sides, @@ -31115,13 +27252,11 @@

    DrawPolyLines

    float rotation, @ByVal Raylib.Color color)
    -
  • DrawPolyLinesEx

    -
    public static void DrawPolyLinesEx(@ByVal Raylib.Vector2 center, int sides, @@ -31130,78 +27265,66 @@

    DrawPolyLinesEx

    float lineThick, @ByVal Raylib.Color color)
    -
  • DrawSplineLinear

    -
    public static void DrawSplineLinear(@Const Raylib.Vector2 points, int pointCount, float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineBasis

    -
    public static void DrawSplineBasis(@Const Raylib.Vector2 points, int pointCount, float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineCatmullRom

    -
    public static void DrawSplineCatmullRom(@Const Raylib.Vector2 points, int pointCount, float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineBezierQuadratic

    -
    public static void DrawSplineBezierQuadratic(@Const Raylib.Vector2 points, int pointCount, float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineBezierCubic

    -
    public static void DrawSplineBezierCubic(@Const Raylib.Vector2 points, int pointCount, float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineSegmentLinear

    -
    public static void DrawSplineSegmentLinear(@ByVal Raylib.Vector2 p1, @ByVal @@ -31209,13 +27332,11 @@

    DrawSplineSegmentLinear

    float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineSegmentBasis

    -
    public static void DrawSplineSegmentBasis(@ByVal Raylib.Vector2 p1, @ByVal @@ -31227,13 +27348,11 @@

    DrawSplineSegmentBasis

    float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineSegmentCatmullRom

    -
    public static void DrawSplineSegmentCatmullRom(@ByVal Raylib.Vector2 p1, @ByVal @@ -31245,13 +27364,11 @@

    DrawSplineSegmentCatmullRom

    float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineSegmentBezierQuadratic

    -
    public static void DrawSplineSegmentBezierQuadratic(@ByVal Raylib.Vector2 p1, @ByVal @@ -31261,13 +27378,11 @@

    DrawSplineSegmentBezierQuadratic

    float thick, @ByVal Raylib.Color color)
    -
  • DrawSplineSegmentBezierCubic

    -
    public static void DrawSplineSegmentBezierCubic(@ByVal Raylib.Vector2 p1, @ByVal @@ -31279,26 +27394,22 @@

    DrawSplineSegmentBezierCubic

    float thick, @ByVal Raylib.Color color)
    -
  • GetSplinePointLinear

    -
    @ByVal public static Raylib.Vector2 GetSplinePointLinear(@ByVal Raylib.Vector2 startPos, @ByVal Raylib.Vector2 endPos, float t)
    -
  • GetSplinePointBasis

    -
    @ByVal public static Raylib.Vector2 GetSplinePointBasis(@ByVal Raylib.Vector2 p1, @@ -31309,13 +27420,11 @@

    GetSplinePointBasis

    @ByVal Raylib.Vector2 p4, float t)
    -
  • GetSplinePointCatmullRom

    -
    @ByVal public static Raylib.Vector2 GetSplinePointCatmullRom(@ByVal Raylib.Vector2 p1, @@ -31326,13 +27435,11 @@

    GetSplinePointCatmullRom

    @ByVal Raylib.Vector2 p4, float t)
    -
  • GetSplinePointBezierQuad

    -
    @ByVal public static Raylib.Vector2 GetSplinePointBezierQuad(@ByVal Raylib.Vector2 p1, @@ -31341,13 +27448,11 @@

    GetSplinePointBezierQuad

    @ByVal Raylib.Vector2 p3, float t)
    -
  • GetSplinePointBezierCubic

    -
    @ByVal public static Raylib.Vector2 GetSplinePointBezierCubic(@ByVal Raylib.Vector2 p1, @@ -31358,25 +27463,21 @@

    GetSplinePointBezierCubic

    @ByVal Raylib.Vector2 p4, float t)
    -
  • CheckCollisionRecs

    -
    @Cast("bool") public static boolean CheckCollisionRecs(@ByVal Raylib.Rectangle rec1, @ByVal Raylib.Rectangle rec2)
    -
  • CheckCollisionCircles

    -
    @Cast("bool") public static boolean CheckCollisionCircles(@ByVal Raylib.Vector2 center1, @@ -31384,26 +27485,22 @@

    CheckCollisionCircles

    @ByVal Raylib.Vector2 center2, float radius2)
    -
  • CheckCollisionCircleRec

    -
    @Cast("bool") public static boolean CheckCollisionCircleRec(@ByVal Raylib.Vector2 center, float radius, @ByVal Raylib.Rectangle rec)
    -
  • CheckCollisionCircleLine

    -
    @Cast("bool") public static boolean CheckCollisionCircleLine(@ByVal Raylib.Vector2 center, @@ -31412,38 +27509,32 @@

    CheckCollisionCircleLine

    Raylib.Vector2 p1, @ByVal Raylib.Vector2 p2)
    -
  • CheckCollisionPointRec

    -
    @Cast("bool") public static boolean CheckCollisionPointRec(@ByVal Raylib.Vector2 point, @ByVal Raylib.Rectangle rec)
    -
  • CheckCollisionPointCircle

    -
    @Cast("bool") public static boolean CheckCollisionPointCircle(@ByVal Raylib.Vector2 point, @ByVal Raylib.Vector2 center, float radius)
    -
  • CheckCollisionPointTriangle

    -
    @Cast("bool") public static boolean CheckCollisionPointTriangle(@ByVal Raylib.Vector2 point, @@ -31453,13 +27544,11 @@

    CheckCollisionPointTriangle

    Raylib.Vector2 p2, @ByVal Raylib.Vector2 p3)
    -
  • CheckCollisionPointLine

    -
    @Cast("bool") public static boolean CheckCollisionPointLine(@ByVal Raylib.Vector2 point, @@ -31468,26 +27557,22 @@

    CheckCollisionPointLine

    @ByVal Raylib.Vector2 p2, int threshold)
    -
  • CheckCollisionPointPoly

    -
    @Cast("bool") public static boolean CheckCollisionPointPoly(@ByVal Raylib.Vector2 point, @Const Raylib.Vector2 points, int pointCount)
    -
  • CheckCollisionLines

    -
    @Cast("bool") public static boolean CheckCollisionLines(@ByVal Raylib.Vector2 startPos1, @@ -31498,44 +27583,36 @@

    CheckCollisionLines

    @ByVal Raylib.Vector2 endPos2, Raylib.Vector2 collisionPoint)
    -
  • GetCollisionRec

    -
    @ByVal public static Raylib.Rectangle GetCollisionRec(@ByVal Raylib.Rectangle rec1, @ByVal Raylib.Rectangle rec2)
    -
  • LoadImage

    -
    @ByVal public static Raylib.Image LoadImage(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadImage

    -
    @ByVal -public static Raylib.Image LoadImage(String fileName)
    -
    +public static Raylib.Image LoadImage(String fileName)
  • LoadImageRaw

    -
    @ByVal public static Raylib.Image LoadImageRaw(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, @@ -31543,89 +27620,73 @@

    LoadImageRaw

    int height, int format, int headerSize)
    -
  • LoadImageRaw

    -
    @ByVal -public static Raylib.Image LoadImageRaw(String fileName, +public static Raylib.Image LoadImageRaw(String fileName, int width, int height, int format, int headerSize)
    -
  • LoadImageAnim

    -
    @ByVal public static Raylib.Image LoadImageAnim(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.IntPointer frames)
    -
  • LoadImageAnim

    -
    @ByVal -public static Raylib.Image LoadImageAnim(String fileName, - IntBuffer frames)
    -
    +public static Raylib.Image LoadImageAnim(String fileName, + IntBuffer frames)
  • LoadImageAnim

    -
    @ByVal public static Raylib.Image LoadImageAnim(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, int[] frames)
    -
  • LoadImageAnim

    -
    @ByVal -public static Raylib.Image LoadImageAnim(String fileName, +public static Raylib.Image LoadImageAnim(String fileName, org.bytedeco.javacpp.IntPointer frames)
    -
  • LoadImageAnim

    -
    @ByVal public static Raylib.Image LoadImageAnim(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - IntBuffer frames)
    -
    + IntBuffer frames)
  • LoadImageAnim

    -
    @ByVal -public static Raylib.Image LoadImageAnim(String fileName, +public static Raylib.Image LoadImageAnim(String fileName, int[] frames)
    -
  • LoadImageAnimFromMemory

    -
    @ByVal public static Raylib.Image LoadImageAnimFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @@ -31633,26 +27694,22 @@

    LoadImageAnimFromMemory

    org.bytedeco.javacpp.BytePointer fileData, int dataSize, org.bytedeco.javacpp.IntPointer frames)
    -
  • LoadImageAnimFromMemory

    -
    @ByVal -public static Raylib.Image LoadImageAnimFromMemory(String fileType, +public static Raylib.Image LoadImageAnimFromMemory(String fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize, - IntBuffer frames)
    -
    + IntBuffer frames)
  • LoadImageAnimFromMemory

    -
    @ByVal public static Raylib.Image LoadImageAnimFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @@ -31660,299 +27717,249 @@

    LoadImageAnimFromMemory

    byte[] fileData, int dataSize, int[] frames)
    -
  • LoadImageAnimFromMemory

    -
    @ByVal -public static Raylib.Image LoadImageAnimFromMemory(String fileType, +public static Raylib.Image LoadImageAnimFromMemory(String fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer fileData, int dataSize, org.bytedeco.javacpp.IntPointer frames)
    -
  • LoadImageAnimFromMemory

    -
    @ByVal public static Raylib.Image LoadImageAnimFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize, - IntBuffer frames)
    -
    + IntBuffer frames)
  • LoadImageAnimFromMemory

    -
    @ByVal -public static Raylib.Image LoadImageAnimFromMemory(String fileType, +public static Raylib.Image LoadImageAnimFromMemory(String fileType, @Cast("const unsigned char*") byte[] fileData, int dataSize, int[] frames)
    -
  • LoadImageFromMemory

    -
    @ByVal public static Raylib.Image LoadImageFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer fileData, int dataSize)
    -
  • LoadImageFromMemory

    -
    @ByVal -public static Raylib.Image LoadImageFromMemory(String fileType, +public static Raylib.Image LoadImageFromMemory(String fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize)
    -
  • LoadImageFromMemory

    -
    @ByVal public static Raylib.Image LoadImageFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") byte[] fileData, int dataSize)
    -
  • LoadImageFromMemory

    -
    @ByVal -public static Raylib.Image LoadImageFromMemory(String fileType, +public static Raylib.Image LoadImageFromMemory(String fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer fileData, int dataSize)
    -
  • LoadImageFromMemory

    -
    @ByVal public static Raylib.Image LoadImageFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize)
    -
  • LoadImageFromMemory

    -
    @ByVal -public static Raylib.Image LoadImageFromMemory(String fileType, +public static Raylib.Image LoadImageFromMemory(String fileType, @Cast("const unsigned char*") byte[] fileData, int dataSize)
    -
  • LoadImageFromTexture

    -
    @ByVal public static Raylib.Image LoadImageFromTexture(@ByVal @Cast("Texture2D*") Raylib.Texture texture)
    -
  • LoadImageFromScreen

    -
    @ByVal public static Raylib.Image LoadImageFromScreen()
    -
  • IsImageValid

    -
    @Cast("bool") public static boolean IsImageValid(@ByVal Raylib.Image image)
    -
  • UnloadImage

    -
    public static void UnloadImage(@ByVal Raylib.Image image)
    -
  • ExportImage

    -
    @Cast("bool") public static boolean ExportImage(@ByVal Raylib.Image image, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportImage

    -
    @Cast("bool") public static boolean ExportImage(@ByVal Raylib.Image image, - String fileName)
    -
    + String fileName)
  • ExportImageToMemory

    -
    @Cast("unsigned char*") public static org.bytedeco.javacpp.BytePointer ExportImageToMemory(@ByVal Raylib.Image image, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, org.bytedeco.javacpp.IntPointer fileSize)
    -
  • ExportImageToMemory

    -
    @Cast("unsigned char*") -public static ByteBuffer ExportImageToMemory(@ByVal +public static ByteBuffer ExportImageToMemory(@ByVal Raylib.Image image, - String fileType, - IntBuffer fileSize)
    -
    + String fileType, + IntBuffer fileSize)
  • ExportImageToMemory

    -
    @Cast("unsigned char*") public static byte[] ExportImageToMemory(@ByVal Raylib.Image image, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, int[] fileSize)
    -
  • ExportImageToMemory

    -
    @Cast("unsigned char*") public static org.bytedeco.javacpp.BytePointer ExportImageToMemory(@ByVal Raylib.Image image, - String fileType, + String fileType, org.bytedeco.javacpp.IntPointer fileSize)
    -
  • ExportImageToMemory

    -
    @Cast("unsigned char*") -public static ByteBuffer ExportImageToMemory(@ByVal +public static ByteBuffer ExportImageToMemory(@ByVal Raylib.Image image, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, - IntBuffer fileSize)
    -
    + IntBuffer fileSize)
  • ExportImageToMemory

    -
    @Cast("unsigned char*") public static byte[] ExportImageToMemory(@ByVal Raylib.Image image, - String fileType, + String fileType, int[] fileSize)
    -
  • ExportImageAsCode

    -
    @Cast("bool") public static boolean ExportImageAsCode(@ByVal Raylib.Image image, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportImageAsCode

    -
    @Cast("bool") public static boolean ExportImageAsCode(@ByVal Raylib.Image image, - String fileName)
    -
    + String fileName)
  • GenImageColor

    -
    @ByVal public static Raylib.Image GenImageColor(int width, int height, @ByVal Raylib.Color color)
    -
  • GenImageGradientLinear

    -
    @ByVal public static Raylib.Image GenImageGradientLinear(int width, int height, @@ -31961,13 +27968,11 @@

    GenImageGradientLinear

    Raylib.Color start, @ByVal Raylib.Color end)
    -
  • GenImageGradientRadial

    -
    @ByVal public static Raylib.Image GenImageGradientRadial(int width, int height, @@ -31976,13 +27981,11 @@

    GenImageGradientRadial

    Raylib.Color inner, @ByVal Raylib.Color outer)
    -
  • GenImageGradientSquare

    -
    @ByVal public static Raylib.Image GenImageGradientSquare(int width, int height, @@ -31991,13 +27994,11 @@

    GenImageGradientSquare

    Raylib.Color inner, @ByVal Raylib.Color outer)
    -
  • GenImageChecked

    -
    @ByVal public static Raylib.Image GenImageChecked(int width, int height, @@ -32007,129 +28008,107 @@

    GenImageChecked

    Raylib.Color col1, @ByVal Raylib.Color col2)
    -
  • GenImageWhiteNoise

    -
    @ByVal public static Raylib.Image GenImageWhiteNoise(int width, int height, float factor)
    -
  • GenImagePerlinNoise

    -
    @ByVal public static Raylib.Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale)
    -
  • GenImageCellular

    -
    @ByVal public static Raylib.Image GenImageCellular(int width, int height, int tileSize)
    -
  • GenImageText

    -
    @ByVal public static Raylib.Image GenImageText(int width, int height, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GenImageText

    -
    @ByVal public static Raylib.Image GenImageText(int width, int height, - String text)
    -
    + String text)
  • ImageCopy

    -
    @ByVal public static Raylib.Image ImageCopy(@ByVal Raylib.Image image)
    -
  • ImageFromImage

    -
    @ByVal public static Raylib.Image ImageFromImage(@ByVal Raylib.Image image, @ByVal Raylib.Rectangle rec)
    -
  • ImageFromChannel

    -
    @ByVal public static Raylib.Image ImageFromChannel(@ByVal Raylib.Image image, int selectedChannel)
    -
  • ImageText

    -
    @ByVal public static Raylib.Image ImageText(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int fontSize, @ByVal Raylib.Color color)
    -
  • ImageText

    -
    @ByVal -public static Raylib.Image ImageText(String text, +public static Raylib.Image ImageText(String text, int fontSize, @ByVal Raylib.Color color)
    -
  • ImageTextEx

    -
    @ByVal public static Raylib.Image ImageTextEx(@ByVal Raylib.Font font, @@ -32139,157 +28118,127 @@

    ImageTextEx

    float spacing, @ByVal Raylib.Color tint)
    -
  • ImageTextEx

    -
    @ByVal public static Raylib.Image ImageTextEx(@ByVal Raylib.Font font, - String text, + String text, float fontSize, float spacing, @ByVal Raylib.Color tint)
    -
  • ImageFormat

    -
    public static void ImageFormat(Raylib.Image image, int newFormat)
    -
  • ImageToPOT

    -
    public static void ImageToPOT(Raylib.Image image, @ByVal Raylib.Color _fill)
    -
  • ImageCrop

    -
    public static void ImageCrop(Raylib.Image image, @ByVal Raylib.Rectangle crop)
    -
  • ImageAlphaCrop

    -
    public static void ImageAlphaCrop(Raylib.Image image, float threshold)
    -
  • ImageAlphaClear

    -
    public static void ImageAlphaClear(Raylib.Image image, @ByVal Raylib.Color color, float threshold)
    -
  • ImageAlphaMask

    -
    public static void ImageAlphaMask(Raylib.Image image, @ByVal Raylib.Image alphaMask)
    -
  • ImageAlphaPremultiply

    -
    public static void ImageAlphaPremultiply(Raylib.Image image)
    -
  • ImageBlurGaussian

    -
    public static void ImageBlurGaussian(Raylib.Image image, int blurSize)
    -
  • ImageKernelConvolution

    -
    public static void ImageKernelConvolution(Raylib.Image image, @Const org.bytedeco.javacpp.FloatPointer kernel, int kernelSize)
    -
  • ImageKernelConvolution

    -
    public static void ImageKernelConvolution(Raylib.Image image, @Const - FloatBuffer kernel, + FloatBuffer kernel, int kernelSize)
    -
  • ImageKernelConvolution

    -
    public static void ImageKernelConvolution(Raylib.Image image, @Const float[] kernel, int kernelSize)
    -
  • ImageResize

    -
    public static void ImageResize(Raylib.Image image, int newWidth, int newHeight)
    -
  • ImageResizeNN

    -
    public static void ImageResizeNN(Raylib.Image image, int newWidth, int newHeight)
    -
  • ImageResizeCanvas

    -
    public static void ImageResizeCanvas(Raylib.Image image, int newWidth, int newHeight, @@ -32297,245 +28246,195 @@

    ImageResizeCanvas

    int offsetY, @ByVal Raylib.Color _fill)
    -
  • ImageMipmaps

    -
    public static void ImageMipmaps(Raylib.Image image)
    -
  • ImageDither

    -
    public static void ImageDither(Raylib.Image image, int rBpp, int gBpp, int bBpp, int aBpp)
    -
  • ImageFlipVertical

    -
    public static void ImageFlipVertical(Raylib.Image image)
    -
  • ImageFlipHorizontal

    -
    public static void ImageFlipHorizontal(Raylib.Image image)
    -
  • ImageRotate

    -
    public static void ImageRotate(Raylib.Image image, int degrees)
    -
  • ImageRotateCW

    -
    public static void ImageRotateCW(Raylib.Image image)
    -
  • ImageRotateCCW

    -
    public static void ImageRotateCCW(Raylib.Image image)
    -
  • ImageColorTint

    -
    public static void ImageColorTint(Raylib.Image image, @ByVal Raylib.Color color)
    -
  • ImageColorInvert

    -
    public static void ImageColorInvert(Raylib.Image image)
    -
  • ImageColorGrayscale

    -
    public static void ImageColorGrayscale(Raylib.Image image)
    -
  • ImageColorContrast

    -
    public static void ImageColorContrast(Raylib.Image image, float contrast)
    -
  • ImageColorBrightness

    -
    public static void ImageColorBrightness(Raylib.Image image, int brightness)
    -
  • ImageColorReplace

    -
    public static void ImageColorReplace(Raylib.Image image, @ByVal Raylib.Color color, @ByVal Raylib.Color replace)
    -
  • LoadImageColors

    -
    public static Raylib.Color LoadImageColors(@ByVal Raylib.Image image)
    -
  • LoadImagePalette

    -
    public static Raylib.Color LoadImagePalette(@ByVal Raylib.Image image, int maxPaletteSize, org.bytedeco.javacpp.IntPointer colorCount)
    -
  • LoadImagePalette

    -
    public static Raylib.Color LoadImagePalette(@ByVal Raylib.Image image, int maxPaletteSize, - IntBuffer colorCount)
    -
    + IntBuffer colorCount)
  • LoadImagePalette

    -
    public static Raylib.Color LoadImagePalette(@ByVal Raylib.Image image, int maxPaletteSize, int[] colorCount)
    -
  • UnloadImageColors

    -
    public static void UnloadImageColors(Raylib.Color colors)
    -
  • UnloadImagePalette

    -
    public static void UnloadImagePalette(Raylib.Color colors)
    -
  • GetImageAlphaBorder

    -
    @ByVal public static Raylib.Rectangle GetImageAlphaBorder(@ByVal Raylib.Image image, float threshold)
    -
  • GetImageColor

    -
    @ByVal public static Raylib.Color GetImageColor(@ByVal Raylib.Image image, int x, int y)
    -
  • ImageClearBackground

    -
    public static void ImageClearBackground(Raylib.Image dst, @ByVal Raylib.Color color)
    -
  • ImageDrawPixel

    -
    public static void ImageDrawPixel(Raylib.Image dst, int posX, int posY, @ByVal Raylib.Color color)
    -
  • ImageDrawPixelV

    -
    public static void ImageDrawPixelV(Raylib.Image dst, @ByVal Raylib.Vector2 _position, @ByVal Raylib.Color color)
    -
  • ImageDrawLine

    -
    public static void ImageDrawLine(Raylib.Image dst, int startPosX, int startPosY, @@ -32543,13 +28442,11 @@

    ImageDrawLine

    int endPosY, @ByVal Raylib.Color color)
    -
  • ImageDrawLineV

    -
    public static void ImageDrawLineV(Raylib.Image dst, @ByVal Raylib.Vector2 start, @@ -32557,13 +28454,11 @@

    ImageDrawLineV

    Raylib.Vector2 end, @ByVal Raylib.Color color)
    -
  • ImageDrawLineEx

    -
    public static void ImageDrawLineEx(Raylib.Image dst, @ByVal Raylib.Vector2 start, @@ -32572,65 +28467,55 @@

    ImageDrawLineEx

    int thick, @ByVal Raylib.Color color)
    -
  • ImageDrawCircle

    -
    public static void ImageDrawCircle(Raylib.Image dst, int centerX, int centerY, int radius, @ByVal Raylib.Color color)
    -
  • ImageDrawCircleV

    -
    public static void ImageDrawCircleV(Raylib.Image dst, @ByVal Raylib.Vector2 center, int radius, @ByVal Raylib.Color color)
    -
  • ImageDrawCircleLines

    -
    public static void ImageDrawCircleLines(Raylib.Image dst, int centerX, int centerY, int radius, @ByVal Raylib.Color color)
    -
  • ImageDrawCircleLinesV

    -
    public static void ImageDrawCircleLinesV(Raylib.Image dst, @ByVal Raylib.Vector2 center, int radius, @ByVal Raylib.Color color)
    -
  • ImageDrawRectangle

    -
    public static void ImageDrawRectangle(Raylib.Image dst, int posX, int posY, @@ -32638,13 +28523,11 @@

    ImageDrawRectangle

    int height, @ByVal Raylib.Color color)
    -
  • ImageDrawRectangleV

    -
    public static void ImageDrawRectangleV(Raylib.Image dst, @ByVal Raylib.Vector2 _position, @@ -32652,38 +28535,32 @@

    ImageDrawRectangleV

    Raylib.Vector2 size, @ByVal Raylib.Color color)
    -
  • ImageDrawRectangleRec

    -
    public static void ImageDrawRectangleRec(Raylib.Image dst, @ByVal Raylib.Rectangle rec, @ByVal Raylib.Color color)
    -
  • ImageDrawRectangleLines

    -
    public static void ImageDrawRectangleLines(Raylib.Image dst, @ByVal Raylib.Rectangle rec, int thick, @ByVal Raylib.Color color)
    -
  • ImageDrawTriangle

    -
    public static void ImageDrawTriangle(Raylib.Image dst, @ByVal Raylib.Vector2 v1, @@ -32693,13 +28570,11 @@

    ImageDrawTriangle

    Raylib.Vector2 v3, @ByVal Raylib.Color color)
    -
  • ImageDrawTriangleEx

    -
    public static void ImageDrawTriangleEx(Raylib.Image dst, @ByVal Raylib.Vector2 v1, @@ -32713,13 +28588,11 @@

    ImageDrawTriangleEx

    Raylib.Color c2, @ByVal Raylib.Color c3)
    -
  • ImageDrawTriangleLines

    -
    public static void ImageDrawTriangleLines(Raylib.Image dst, @ByVal Raylib.Vector2 v1, @@ -32729,37 +28602,33 @@

    ImageDrawTriangleLines

    Raylib.Vector2 v3, @ByVal Raylib.Color color)
    -
  • ImageDrawTriangleFan

    -
    public static void ImageDrawTriangleFan(Raylib.Image dst, + @Const Raylib.Vector2 points, int pointCount, @ByVal Raylib.Color color)
    -
  • ImageDrawTriangleStrip

    -
    public static void ImageDrawTriangleStrip(Raylib.Image dst, + @Const Raylib.Vector2 points, int pointCount, @ByVal Raylib.Color color)
    -
  • ImageDraw

    -
    public static void ImageDraw(Raylib.Image dst, @ByVal Raylib.Image src, @@ -32769,13 +28638,11 @@

    ImageDraw

    Raylib.Rectangle dstRec, @ByVal Raylib.Color tint)
    -
  • ImageDrawText

    -
    public static void ImageDrawText(Raylib.Image dst, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, @@ -32784,27 +28651,23 @@

    ImageDrawText

    int fontSize, @ByVal Raylib.Color color)
    -
  • ImageDrawText

    -
    public static void ImageDrawText(Raylib.Image dst, - String text, + String text, int posX, int posY, int fontSize, @ByVal Raylib.Color color)
    -
  • ImageDrawTextEx

    -
    public static void ImageDrawTextEx(Raylib.Image dst, @ByVal Raylib.Font font, @@ -32816,202 +28679,166 @@

    ImageDrawTextEx

    float spacing, @ByVal Raylib.Color tint)
    -
  • ImageDrawTextEx

    -
    public static void ImageDrawTextEx(Raylib.Image dst, @ByVal Raylib.Font font, - String text, + String text, @ByVal Raylib.Vector2 _position, float fontSize, float spacing, @ByVal Raylib.Color tint)
    -
  • LoadTexture

    -
    @ByVal @Cast("Texture2D*") public static Raylib.Texture LoadTexture(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadTexture

    -
    @ByVal @Cast("Texture2D*") -public static Raylib.Texture LoadTexture(String fileName)
    -
    +public static Raylib.Texture LoadTexture(String fileName)
  • LoadTextureFromImage

    -
    @ByVal @Cast("Texture2D*") public static Raylib.Texture LoadTextureFromImage(@ByVal Raylib.Image image)
    -
  • LoadTextureCubemap

    -
    @ByVal @Cast("TextureCubemap*") public static Raylib.Texture LoadTextureCubemap(@ByVal Raylib.Image image, int layout)
    -
  • LoadRenderTexture

    -
    @ByVal @Cast("RenderTexture2D*") public static Raylib.RenderTexture LoadRenderTexture(int width, int height)
    -
  • IsTextureValid

    -
    @Cast("bool") public static boolean IsTextureValid(@ByVal @Cast("Texture2D*") Raylib.Texture texture)
    -
  • UnloadTexture

    -
    public static void UnloadTexture(@ByVal @Cast("Texture2D*") Raylib.Texture texture)
    -
  • IsRenderTextureValid

    -
    @Cast("bool") public static boolean IsRenderTextureValid(@ByVal @Cast("RenderTexture2D*") Raylib.RenderTexture target)
    -
  • UnloadRenderTexture

    -
    public static void UnloadRenderTexture(@ByVal @Cast("RenderTexture2D*") Raylib.RenderTexture target)
    -
  • UpdateTexture

    -
    public static void UpdateTexture(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @Const org.bytedeco.javacpp.Pointer pixels)
    -
  • UpdateTextureRec

    -
    public static void UpdateTextureRec(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @ByVal Raylib.Rectangle rec, @Const org.bytedeco.javacpp.Pointer pixels)
    -
  • GenTextureMipmaps

    -
    public static void GenTextureMipmaps(@Cast("Texture2D*") Raylib.Texture texture)
    -
  • SetTextureFilter

    -
    public static void SetTextureFilter(@ByVal @Cast("Texture2D*") Raylib.Texture texture, int filter)
    -
  • SetTextureWrap

    -
    public static void SetTextureWrap(@ByVal @Cast("Texture2D*") Raylib.Texture texture, int wrap)
    -
  • DrawTexture

    -
    public static void DrawTexture(@ByVal @Cast("Texture2D*") Raylib.Texture texture, int posX, int posY, @ByVal Raylib.Color tint)
    -
  • DrawTextureV

    -
    public static void DrawTextureV(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @ByVal Raylib.Vector2 _position, @ByVal Raylib.Color tint)
    -
  • DrawTextureEx

    -
    public static void DrawTextureEx(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @ByVal @@ -33020,13 +28847,11 @@

    DrawTextureEx

    float scale, @ByVal Raylib.Color tint)
    -
  • DrawTextureRec

    -
    public static void DrawTextureRec(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @ByVal @@ -33035,13 +28860,11 @@

    DrawTextureRec

    Raylib.Vector2 _position, @ByVal Raylib.Color tint)
    -
  • DrawTexturePro

    -
    public static void DrawTexturePro(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @ByVal @@ -33053,13 +28876,11 @@

    DrawTexturePro

    float rotation, @ByVal Raylib.Color tint)
    -
  • DrawTextureNPatch

    -
    public static void DrawTextureNPatch(@ByVal @Cast("Texture2D*") Raylib.Texture texture, @ByVal @@ -33071,131 +28892,107 @@

    DrawTextureNPatch

    float rotation, @ByVal Raylib.Color tint)
    -
  • ColorIsEqual

    -
    @Cast("bool") public static boolean ColorIsEqual(@ByVal Raylib.Color col1, @ByVal Raylib.Color col2)
    -
  • Fade

    -
    @ByVal public static Raylib.Color Fade(@ByVal Raylib.Color color, float alpha)
    -
  • ColorToInt

    -
    public static int ColorToInt(@ByVal Raylib.Color color)
    -
  • ColorNormalize

    -
    @ByVal public static Raylib.Vector4 ColorNormalize(@ByVal Raylib.Color color)
    -
  • ColorFromNormalized

    -
    @ByVal public static Raylib.Color ColorFromNormalized(@ByVal Raylib.Vector4 normalized)
    -
  • ColorToHSV

    -
    @ByVal public static Raylib.Vector3 ColorToHSV(@ByVal Raylib.Color color)
    -
  • ColorFromHSV

    -
    @ByVal public static Raylib.Color ColorFromHSV(float hue, float saturation, float value)
    -
  • ColorTint

    -
    @ByVal public static Raylib.Color ColorTint(@ByVal Raylib.Color color, @ByVal Raylib.Color tint)
    -
  • ColorBrightness

    -
    @ByVal public static Raylib.Color ColorBrightness(@ByVal Raylib.Color color, float factor)
    -
  • ColorContrast

    -
    @ByVal public static Raylib.Color ColorContrast(@ByVal Raylib.Color color, float contrast)
    -
  • ColorAlpha

    -
    @ByVal public static Raylib.Color ColorAlpha(@ByVal Raylib.Color color, float alpha)
    -
  • ColorAlphaBlend

    -
    @ByVal public static Raylib.Color ColorAlphaBlend(@ByVal Raylib.Color dst, @@ -33203,183 +29000,157 @@

    ColorAlphaBlend

    Raylib.Color src, @ByVal Raylib.Color tint)
    -
  • ColorLerp

    -
    @ByVal public static Raylib.Color ColorLerp(@ByVal Raylib.Color color1, @ByVal Raylib.Color color2, float factor)
    -
  • GetColor

    -
    @ByVal public static Raylib.Color GetColor(@Cast("unsigned int") int hexValue)
    -
  • GetPixelColor

    -
    @ByVal public static Raylib.Color GetPixelColor(org.bytedeco.javacpp.Pointer srcPtr, int format)
    -
  • SetPixelColor

    -
    public static void SetPixelColor(org.bytedeco.javacpp.Pointer dstPtr, @ByVal Raylib.Color color, int format)
    -
  • GetPixelDataSize

    -
    public static int GetPixelDataSize(int width, int height, int format)
    -
  • GetFontDefault

    -
    @ByVal public static Raylib.Font GetFontDefault()
    -
  • LoadFont

    -
    @ByVal public static Raylib.Font LoadFont(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadFont

    -
    @ByVal -public static Raylib.Font LoadFont(String fileName)
    -
    +public static Raylib.Font LoadFont(String fileName)
  • LoadFontEx

    -
    @ByVal public static Raylib.Font LoadFontEx(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, int fontSize, + @Const org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
    -
  • LoadFontEx

    -
    @ByVal -public static Raylib.Font LoadFontEx(String fileName, +public static Raylib.Font LoadFontEx(String fileName, int fontSize, - IntBuffer codepoints, + @Const + IntBuffer codepoints, int codepointCount)
    -
  • LoadFontEx

    -
    @ByVal public static Raylib.Font LoadFontEx(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, int fontSize, + @Const int[] codepoints, int codepointCount)
    -
  • LoadFontEx

    -
    @ByVal -public static Raylib.Font LoadFontEx(String fileName, +public static Raylib.Font LoadFontEx(String fileName, int fontSize, + @Const org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
    -
  • LoadFontEx

    -
    @ByVal public static Raylib.Font LoadFontEx(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, int fontSize, - IntBuffer codepoints, + @Const + IntBuffer codepoints, int codepointCount)
    -
  • LoadFontEx

    -
    @ByVal -public static Raylib.Font LoadFontEx(String fileName, +public static Raylib.Font LoadFontEx(String fileName, int fontSize, + @Const int[] codepoints, int codepointCount)
    -
  • LoadFontFromImage

    -
    @ByVal public static Raylib.Font LoadFontFromImage(@ByVal Raylib.Image image, @ByVal Raylib.Color key, int firstChar)
    -
  • LoadFontFromMemory

    -
    @ByVal public static Raylib.Font LoadFontFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @@ -33387,30 +29158,28 @@

    LoadFontFromMemory

    org.bytedeco.javacpp.BytePointer fileData, int dataSize, int fontSize, + @Const org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
    -
  • LoadFontFromMemory

    -
    @ByVal -public static Raylib.Font LoadFontFromMemory(String fileType, +public static Raylib.Font LoadFontFromMemory(String fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize, int fontSize, - IntBuffer codepoints, + @Const + IntBuffer codepoints, int codepointCount)
    -
  • LoadFontFromMemory

    -
    @ByVal public static Raylib.Font LoadFontFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @@ -33418,113 +29187,107 @@

    LoadFontFromMemory

    byte[] fileData, int dataSize, int fontSize, + @Const int[] codepoints, int codepointCount)
    -
  • LoadFontFromMemory

    -
    @ByVal -public static Raylib.Font LoadFontFromMemory(String fileType, +public static Raylib.Font LoadFontFromMemory(String fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer fileData, int dataSize, int fontSize, + @Const org.bytedeco.javacpp.IntPointer codepoints, int codepointCount)
    -
  • LoadFontFromMemory

    -
    @ByVal public static Raylib.Font LoadFontFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize, int fontSize, - IntBuffer codepoints, + @Const + IntBuffer codepoints, int codepointCount)
    -
  • LoadFontFromMemory

    -
    @ByVal -public static Raylib.Font LoadFontFromMemory(String fileType, +public static Raylib.Font LoadFontFromMemory(String fileType, @Cast("const unsigned char*") byte[] fileData, int dataSize, int fontSize, + @Const int[] codepoints, int codepointCount)
    -
  • IsFontValid

    -
    @Cast("bool") public static boolean IsFontValid(@ByVal Raylib.Font font)
    -
  • -
    +

    LoadFontData

    -
    public static Raylib.GlyphInfo LoadFontData(@Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer fileData, int dataSize, int fontSize, + @Const org.bytedeco.javacpp.IntPointer codepoints, int codepointCount, - int type)
    -
    + int type, + org.bytedeco.javacpp.IntPointer glyphCount)
  • -
    +

    LoadFontData

    -
    public static Raylib.GlyphInfo LoadFontData(@Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize, int fontSize, - IntBuffer codepoints, + @Const + IntBuffer codepoints, int codepointCount, - int type)
    -
    + int type, + IntBuffer glyphCount)
  • -
    +

    LoadFontData

    -
    public static Raylib.GlyphInfo LoadFontData(@Cast("const unsigned char*") byte[] fileData, int dataSize, int fontSize, + @Const int[] codepoints, int codepointCount, - int type)
    -
    + int type, + int[] glyphCount)
  • GenImageFontAtlas

    -
    @ByVal public static Raylib.Image GenImageFontAtlas(@Const Raylib.GlyphInfo glyphs, @@ -33534,13 +29297,11 @@

    GenImageFontAtlas

    int fontSize, int padding, int packMethod)
    -
  • GenImageFontAtlas

    -
    @ByVal public static Raylib.Image GenImageFontAtlas(@Const Raylib.GlyphInfo glyphs, @@ -33550,63 +29311,51 @@

    GenImageFontAtlas

    int fontSize, int padding, int packMethod)
    -
  • UnloadFontData

    -
    public static void UnloadFontData(Raylib.GlyphInfo glyphs, int glyphCount)
    -
  • UnloadFont

    -
    public static void UnloadFont(@ByVal Raylib.Font font)
    -
  • ExportFontAsCode

    -
    @Cast("bool") public static boolean ExportFontAsCode(@ByVal Raylib.Font font, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportFontAsCode

    -
    @Cast("bool") public static boolean ExportFontAsCode(@ByVal Raylib.Font font, - String fileName)
    -
    + String fileName)
  • DrawFPS

    -
    public static void DrawFPS(int posX, int posY)
    -
  • DrawText

    -
    public static void DrawText(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int posX, @@ -33614,26 +29363,22 @@

    DrawText

    int fontSize, @ByVal Raylib.Color color)
    -
  • DrawText

    -
    -
    public static void DrawText(String text, +
    public static void DrawText(String text, int posX, int posY, int fontSize, @ByVal Raylib.Color color)
    -
  • DrawTextEx

    -
    public static void DrawTextEx(@ByVal Raylib.Font font, @Cast("const char*") @@ -33644,29 +29389,25 @@

    DrawTextEx

    float spacing, @ByVal Raylib.Color tint)
    -
  • DrawTextEx

    -
    public static void DrawTextEx(@ByVal Raylib.Font font, - String text, + String text, @ByVal Raylib.Vector2 _position, float fontSize, float spacing, @ByVal Raylib.Color tint)
    -
  • DrawTextPro

    -
    public static void DrawTextPro(@ByVal Raylib.Font font, @Cast("const char*") @@ -33680,16 +29421,14 @@

    DrawTextPro

    float spacing, @ByVal Raylib.Color tint)
    -
  • DrawTextPro

    -
    public static void DrawTextPro(@ByVal Raylib.Font font, - String text, + String text, @ByVal Raylib.Vector2 _position, @ByVal @@ -33699,13 +29438,11 @@

    DrawTextPro

    float spacing, @ByVal Raylib.Color tint)
    -
  • DrawTextCodepoint

    -
    public static void DrawTextCodepoint(@ByVal Raylib.Font font, int codepoint, @@ -33714,13 +29451,11 @@

    DrawTextCodepoint

    float fontSize, @ByVal Raylib.Color tint)
    -
  • DrawTextCodepoints

    -
    public static void DrawTextCodepoints(@ByVal Raylib.Font font, @Const @@ -33732,17 +29467,15 @@

    DrawTextCodepoints

    float spacing, @ByVal Raylib.Color tint)
    -
  • DrawTextCodepoints

    -
    public static void DrawTextCodepoints(@ByVal Raylib.Font font, @Const - IntBuffer codepoints, + IntBuffer codepoints, int codepointCount, @ByVal Raylib.Vector2 _position, @@ -33750,13 +29483,11 @@

    DrawTextCodepoints

    float spacing, @ByVal Raylib.Color tint)
    -
  • DrawTextCodepoints

    -
    public static void DrawTextCodepoints(@ByVal Raylib.Font font, @Const @@ -33768,40 +29499,32 @@

    DrawTextCodepoints

    float spacing, @ByVal Raylib.Color tint)
    -
  • SetTextLineSpacing

    -
    public static void SetTextLineSpacing(int spacing)
    -
  • MeasureText

    -
    public static int MeasureText(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int fontSize)
    -
  • MeasureText

    -
    -
    public static int MeasureText(String text, +
    public static int MeasureText(String text, int fontSize)
    -
  • MeasureTextEx

    -
    @ByVal public static Raylib.Vector2 MeasureTextEx(@ByVal Raylib.Font font, @@ -33809,1011 +29532,1074 @@

    MeasureTextEx

    org.bytedeco.javacpp.BytePointer text, float fontSize, float spacing)
    -
  • MeasureTextEx

    -
    @ByVal public static Raylib.Vector2 MeasureTextEx(@ByVal Raylib.Font font, - String text, + String text, + float fontSize, + float spacing)
    +
    +
  • +
  • +
    +

    MeasureTextCodepoints

    +
    @ByVal +public static Raylib.Vector2 MeasureTextCodepoints(@ByVal + Raylib.Font font, + @Const + org.bytedeco.javacpp.IntPointer codepoints, + int length, + float fontSize, + float spacing)
    +
    +
  • +
  • +
    +

    MeasureTextCodepoints

    +
    @ByVal +public static Raylib.Vector2 MeasureTextCodepoints(@ByVal + Raylib.Font font, + @Const + IntBuffer codepoints, + int length, + float fontSize, + float spacing)
    +
    +
  • +
  • +
    +

    MeasureTextCodepoints

    +
    @ByVal +public static Raylib.Vector2 MeasureTextCodepoints(@ByVal + Raylib.Font font, + @Const + int[] codepoints, + int length, float fontSize, float spacing)
    -
  • GetGlyphIndex

    -
    public static int GetGlyphIndex(@ByVal Raylib.Font font, int codepoint)
    -
  • GetGlyphInfo

    -
    @ByVal public static Raylib.GlyphInfo GetGlyphInfo(@ByVal Raylib.Font font, int codepoint)
    -
  • GetGlyphAtlasRec

    -
    @ByVal public static Raylib.Rectangle GetGlyphAtlasRec(@ByVal Raylib.Font font, int codepoint)
    -
  • LoadUTF8

    -
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer LoadUTF8(@Const org.bytedeco.javacpp.IntPointer codepoints, int length)
    -
  • LoadUTF8

    -
    @Cast("char*") -public static ByteBuffer LoadUTF8(@Const - IntBuffer codepoints, +public static ByteBuffer LoadUTF8(@Const + IntBuffer codepoints, int length)
    -
  • LoadUTF8

    -
    @Cast("char*") public static byte[] LoadUTF8(@Const int[] codepoints, int length)
    -
  • UnloadUTF8

    -
    public static void UnloadUTF8(@Cast("char*") org.bytedeco.javacpp.BytePointer text)
    -
  • UnloadUTF8

    -
    public static void UnloadUTF8(@Cast("char*") - ByteBuffer text)
    -
    + ByteBuffer text)
  • UnloadUTF8

    -
    public static void UnloadUTF8(@Cast("char*") byte[] text)
    -
  • LoadCodepoints

    -
    public static org.bytedeco.javacpp.IntPointer LoadCodepoints(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer count)
    -
  • LoadCodepoints

    -
    -
    public static IntBuffer LoadCodepoints(String text, - IntBuffer count)
    -
    +
    public static IntBuffer LoadCodepoints(String text, + IntBuffer count)
  • LoadCodepoints

    -
    public static int[] LoadCodepoints(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] count)
    -
  • LoadCodepoints

    -
    -
    public static org.bytedeco.javacpp.IntPointer LoadCodepoints(String text, +
    public static org.bytedeco.javacpp.IntPointer LoadCodepoints(String text, org.bytedeco.javacpp.IntPointer count)
    -
  • LoadCodepoints

    -
    -
    public static IntBuffer LoadCodepoints(@Cast("const char*") +
    public static IntBuffer LoadCodepoints(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer count)
    -
    + IntBuffer count)
  • LoadCodepoints

    -
    -
    public static int[] LoadCodepoints(String text, +
    public static int[] LoadCodepoints(String text, int[] count)
    -
  • UnloadCodepoints

    -
    public static void UnloadCodepoints(org.bytedeco.javacpp.IntPointer codepoints)
    -
  • UnloadCodepoints

    -
    -
    public static void UnloadCodepoints(IntBuffer codepoints)
    -
    +
    public static void UnloadCodepoints(IntBuffer codepoints)
  • UnloadCodepoints

    -
    public static void UnloadCodepoints(int[] codepoints)
    -
  • GetCodepointCount

    -
    public static int GetCodepointCount(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GetCodepointCount

    -
    -
    public static int GetCodepointCount(String text)
    -
    +
    public static int GetCodepointCount(String text)
  • GetCodepoint

    -
    public static int GetCodepoint(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer codepointSize)
    -
  • GetCodepoint

    -
    -
    public static int GetCodepoint(String text, - IntBuffer codepointSize)
    -
    +
    public static int GetCodepoint(String text, + IntBuffer codepointSize)
  • GetCodepoint

    -
    public static int GetCodepoint(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] codepointSize)
    -
  • GetCodepoint

    -
    -
    public static int GetCodepoint(String text, +
    public static int GetCodepoint(String text, org.bytedeco.javacpp.IntPointer codepointSize)
    -
  • GetCodepoint

    -
    public static int GetCodepoint(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer codepointSize)
    -
    + IntBuffer codepointSize)
  • GetCodepoint

    -
    -
    public static int GetCodepoint(String text, +
    public static int GetCodepoint(String text, int[] codepointSize)
    -
  • GetCodepointNext

    -
    public static int GetCodepointNext(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer codepointSize)
    -
  • GetCodepointNext

    -
    -
    public static int GetCodepointNext(String text, - IntBuffer codepointSize)
    -
    +
    public static int GetCodepointNext(String text, + IntBuffer codepointSize)
  • GetCodepointNext

    -
    public static int GetCodepointNext(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] codepointSize)
    -
  • GetCodepointNext

    -
    -
    public static int GetCodepointNext(String text, +
    public static int GetCodepointNext(String text, org.bytedeco.javacpp.IntPointer codepointSize)
    -
  • GetCodepointNext

    -
    public static int GetCodepointNext(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer codepointSize)
    -
    + IntBuffer codepointSize)
  • GetCodepointNext

    -
    -
    public static int GetCodepointNext(String text, +
    public static int GetCodepointNext(String text, int[] codepointSize)
    -
  • GetCodepointPrevious

    -
    public static int GetCodepointPrevious(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer codepointSize)
    -
  • GetCodepointPrevious

    -
    -
    public static int GetCodepointPrevious(String text, - IntBuffer codepointSize)
    -
    +
    public static int GetCodepointPrevious(String text, + IntBuffer codepointSize)
  • GetCodepointPrevious

    -
    public static int GetCodepointPrevious(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] codepointSize)
    -
  • GetCodepointPrevious

    -
    -
    public static int GetCodepointPrevious(String text, +
    public static int GetCodepointPrevious(String text, org.bytedeco.javacpp.IntPointer codepointSize)
    -
  • GetCodepointPrevious

    -
    public static int GetCodepointPrevious(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer codepointSize)
    -
    + IntBuffer codepointSize)
  • GetCodepointPrevious

    -
    -
    public static int GetCodepointPrevious(String text, +
    public static int GetCodepointPrevious(String text, int[] codepointSize)
    -
  • CodepointToUTF8

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer CodepointToUTF8(int codepoint, org.bytedeco.javacpp.IntPointer utf8Size)
    -
  • CodepointToUTF8

    -
    -
    public static String CodepointToUTF8(int codepoint, - IntBuffer utf8Size)
    -
    +
    public static String CodepointToUTF8(int codepoint, + IntBuffer utf8Size)
  • CodepointToUTF8

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer CodepointToUTF8(int codepoint, int[] utf8Size)
    -
    +
    +
  • +
  • +
    +

    LoadTextLines

    +
    @Cast("char**") +public static org.bytedeco.javacpp.PointerPointer LoadTextLines(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + org.bytedeco.javacpp.IntPointer count)
    +
    +
  • +
  • +
    +

    LoadTextLines

    +
    @Cast("char**") +@ByPtrPtr +public static ByteBuffer LoadTextLines(String text, + IntBuffer count)
    +
    +
  • +
  • +
    +

    LoadTextLines

    +
    @Cast("char**") +@ByPtrPtr +public static byte[] LoadTextLines(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + int[] count)
    +
    +
  • +
  • +
    +

    LoadTextLines

    +
    @Cast("char**") +@ByPtrPtr +public static org.bytedeco.javacpp.BytePointer LoadTextLines(String text, + org.bytedeco.javacpp.IntPointer count)
    +
    +
  • +
  • +
    +

    LoadTextLines

    +
    @Cast("char**") +@ByPtrPtr +public static ByteBuffer LoadTextLines(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + IntBuffer count)
    +
    +
  • +
  • +
    +

    LoadTextLines

    +
    @Cast("char**") +@ByPtrPtr +public static byte[] LoadTextLines(String text, + int[] count)
    +
    +
  • +
  • +
    +

    UnloadTextLines

    +
    public static void UnloadTextLines(@Cast("char**") + org.bytedeco.javacpp.PointerPointer text, + int lineCount)
    +
    +
  • +
  • +
    +

    UnloadTextLines

    +
    public static void UnloadTextLines(@Cast("char**") @ByPtrPtr + org.bytedeco.javacpp.BytePointer text, + int lineCount)
    +
    +
  • +
  • +
    +

    UnloadTextLines

    +
    public static void UnloadTextLines(@Cast("char**") @ByPtrPtr + ByteBuffer text, + int lineCount)
    +
    +
  • +
  • +
    +

    UnloadTextLines

    +
    public static void UnloadTextLines(@Cast("char**") @ByPtrPtr + byte[] text, + int lineCount)
  • TextCopy

    -
    public static int TextCopy(@Cast("char*") org.bytedeco.javacpp.BytePointer dst, @Cast("const char*") org.bytedeco.javacpp.BytePointer src)
    -
  • TextCopy

    -
    public static int TextCopy(@Cast("char*") - ByteBuffer dst, - String src)
    -
    + ByteBuffer dst, + String src)
  • TextCopy

    -
    public static int TextCopy(@Cast("char*") byte[] dst, @Cast("const char*") org.bytedeco.javacpp.BytePointer src)
    -
  • TextCopy

    -
    public static int TextCopy(@Cast("char*") org.bytedeco.javacpp.BytePointer dst, - String src)
    -
    + String src)
  • TextCopy

    -
    public static int TextCopy(@Cast("char*") - ByteBuffer dst, + ByteBuffer dst, @Cast("const char*") org.bytedeco.javacpp.BytePointer src)
    -
  • TextCopy

    -
    public static int TextCopy(@Cast("char*") byte[] dst, - String src)
    -
    + String src)
  • TextIsEqual

    -
    @Cast("bool") public static boolean TextIsEqual(@Cast("const char*") org.bytedeco.javacpp.BytePointer text1, @Cast("const char*") org.bytedeco.javacpp.BytePointer text2)
    -
  • TextIsEqual

    -
    @Cast("bool") -public static boolean TextIsEqual(String text1, - String text2)
    -
    +public static boolean TextIsEqual(String text1, + String text2)
  • TextLength

    -
    @Cast("unsigned int") public static int TextLength(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextLength

    -
    @Cast("unsigned int") -public static int TextLength(String text)
    -
    +public static int TextLength(String text)
  • TextFormat

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer TextFormat(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextFormat

    -
    -
    public static String TextFormat(String text)
    -
    +
    public static String TextFormat(String text)
  • TextSubtext

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer TextSubtext(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, int _position, int length)
    -
  • TextSubtext

    -
    -
    public static String TextSubtext(String text, +
    public static String TextSubtext(String text, int _position, int length)
    -
    +
    +
  • +
  • +
    +

    TextRemoveSpaces

    +
    @Cast("const char*") +public static org.bytedeco.javacpp.BytePointer TextRemoveSpaces(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text)
    +
    +
  • +
  • +
    +

    TextRemoveSpaces

    +
    public static String TextRemoveSpaces(String text)
    +
    +
  • +
  • +
    +

    GetTextBetween

    +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer GetTextBetween(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer begin, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer end)
    +
    +
  • +
  • +
    +

    GetTextBetween

    +
    @Cast("char*") +public static ByteBuffer GetTextBetween(String text, + String begin, + String end)
  • TextReplace

    -
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer TextReplace(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("const char*") - org.bytedeco.javacpp.BytePointer replace, + org.bytedeco.javacpp.BytePointer search, @Cast("const char*") - org.bytedeco.javacpp.BytePointer by)
    -
    + org.bytedeco.javacpp.BytePointer replacement)
  • TextReplace

    -
    @Cast("char*") -public static ByteBuffer TextReplace(String text, - String replace, - String by)
    -
    +public static ByteBuffer TextReplace(String text, + String search, + String replacement)
  • + + +
  • +
    +

    TextReplaceAlloc

    +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer TextReplaceAlloc(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer search, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer replacement)
    +
    +
  • +
  • +
    +

    TextReplaceAlloc

    +
    @Cast("char*") +public static ByteBuffer TextReplaceAlloc(String text, + String search, + String replacement)
    +
    +
  • +
  • +
    +

    TextReplaceBetween

    +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer TextReplaceBetween(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer begin, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer end, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer replacement)
    +
    +
  • +
  • +
    +

    TextReplaceBetween

    +
    @Cast("char*") +public static ByteBuffer TextReplaceBetween(String text, + String begin, + String end, + String replacement)
    +
    +
  • +
  • +
    +

    TextReplaceBetweenAlloc

    +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer TextReplaceBetweenAlloc(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer begin, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer end, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer replacement)
    +
    +
  • +
  • +
    +

    TextReplaceBetweenAlloc

    +
    @Cast("char*") +public static ByteBuffer TextReplaceBetweenAlloc(String text, + String begin, + String end, + String replacement)
  • TextInsert

    -
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer TextInsert(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("const char*") org.bytedeco.javacpp.BytePointer insert, int _position)
    -
  • TextInsert

    -
    @Cast("char*") -public static ByteBuffer TextInsert(String text, - String insert, +public static ByteBuffer TextInsert(String text, + String insert, + int _position)
    +
    +
  • +
  • +
    +

    TextInsertAlloc

    +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer TextInsertAlloc(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer insert, + int _position)
    +
    +
  • +
  • +
    +

    TextInsertAlloc

    +
    @Cast("char*") +public static ByteBuffer TextInsertAlloc(String text, + String insert, int _position)
    -
  • TextJoin

    -
    -
    @Cast("const char*") -public static org.bytedeco.javacpp.BytePointer TextJoin(@Cast("const char**") +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer TextJoin(@Cast("char**") org.bytedeco.javacpp.PointerPointer textList, int count, @Cast("const char*") org.bytedeco.javacpp.BytePointer delimiter)
    -
  • TextJoin

    -
    -
    @Cast("const char*") -public static org.bytedeco.javacpp.BytePointer TextJoin(@Cast("const char**") @ByPtrPtr +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer TextJoin(@Cast("char**") @ByPtrPtr org.bytedeco.javacpp.BytePointer textList, int count, @Cast("const char*") org.bytedeco.javacpp.BytePointer delimiter)
    -
  • TextJoin

    -
    -
    public static String TextJoin(@Cast("const char**") @ByPtrPtr - ByteBuffer textList, +
    @Cast("char*") +public static ByteBuffer TextJoin(@Cast("char**") @ByPtrPtr + ByteBuffer textList, int count, - String delimiter)
    -
    + String delimiter)
  • TextJoin

    -
    -
    @Cast("const char*") -public static org.bytedeco.javacpp.BytePointer TextJoin(@Cast("const char**") @ByPtrPtr +
    @Cast("char*") +public static byte[] TextJoin(@Cast("char**") @ByPtrPtr byte[] textList, int count, @Cast("const char*") org.bytedeco.javacpp.BytePointer delimiter)
    -
  • TextJoin

    -
    -
    public static String TextJoin(@Cast("const char**") @ByPtrPtr +
    @Cast("char*") +public static org.bytedeco.javacpp.BytePointer TextJoin(@Cast("char**") @ByPtrPtr org.bytedeco.javacpp.BytePointer textList, int count, - String delimiter)
    -
    + String delimiter)
  • TextJoin

    -
    -
    @Cast("const char*") -public static org.bytedeco.javacpp.BytePointer TextJoin(@Cast("const char**") @ByPtrPtr - ByteBuffer textList, +
    @Cast("char*") +public static ByteBuffer TextJoin(@Cast("char**") @ByPtrPtr + ByteBuffer textList, int count, @Cast("const char*") org.bytedeco.javacpp.BytePointer delimiter)
    -
  • TextJoin

    -
    -
    public static String TextJoin(@Cast("const char**") @ByPtrPtr +
    @Cast("char*") +public static byte[] TextJoin(@Cast("char**") @ByPtrPtr byte[] textList, int count, - String delimiter)
    -
    + String delimiter)
  • TextSplit

    -
    -
    @Cast("const char**") +
    @Cast("char**") public static org.bytedeco.javacpp.PointerPointer TextSplit(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("char") byte delimiter, org.bytedeco.javacpp.IntPointer count)
    -
  • TextSplit

    -
    -
    @Cast("const char**") +
    @Cast("char**") @ByPtrPtr -public static ByteBuffer TextSplit(String text, +public static ByteBuffer TextSplit(String text, @Cast("char") byte delimiter, - IntBuffer count)
    -
    + IntBuffer count)
  • TextSplit

    -
    -
    @Cast("const char**") +
    @Cast("char**") @ByPtrPtr public static byte[] TextSplit(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("char") byte delimiter, int[] count)
    -
  • TextSplit

    -
    -
    @Cast("const char**") +
    @Cast("char**") @ByPtrPtr -public static org.bytedeco.javacpp.BytePointer TextSplit(String text, +public static org.bytedeco.javacpp.BytePointer TextSplit(String text, @Cast("char") byte delimiter, org.bytedeco.javacpp.IntPointer count)
    -
  • TextSplit

    -
    -
    @Cast("const char**") +
    @Cast("char**") @ByPtrPtr -public static ByteBuffer TextSplit(@Cast("const char*") +public static ByteBuffer TextSplit(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("char") byte delimiter, - IntBuffer count)
    -
    + IntBuffer count)
  • TextSplit

    -
    -
    @Cast("const char**") +
    @Cast("char**") @ByPtrPtr -public static byte[] TextSplit(String text, +public static byte[] TextSplit(String text, @Cast("char") byte delimiter, int[] count)
    -
  • TextAppend

    -
    public static void TextAppend(@Cast("char*") org.bytedeco.javacpp.BytePointer text, @Cast("const char*") org.bytedeco.javacpp.BytePointer append, org.bytedeco.javacpp.IntPointer _position)
    -
  • TextAppend

    -
    public static void TextAppend(@Cast("char*") - ByteBuffer text, - String append, - IntBuffer _position)
    -
    + ByteBuffer text, + String append, + IntBuffer _position)
  • TextAppend

    -
    public static void TextAppend(@Cast("char*") byte[] text, @Cast("const char*") org.bytedeco.javacpp.BytePointer append, int[] _position)
    -
  • TextAppend

    -
    public static void TextAppend(@Cast("char*") org.bytedeco.javacpp.BytePointer text, - String append, + String append, org.bytedeco.javacpp.IntPointer _position)
    -
  • TextAppend

    -
    public static void TextAppend(@Cast("char*") - ByteBuffer text, + ByteBuffer text, @Cast("const char*") org.bytedeco.javacpp.BytePointer append, - IntBuffer _position)
    -
    + IntBuffer _position)
  • TextAppend

    -
    public static void TextAppend(@Cast("char*") byte[] text, - String append, + String append, int[] _position)
    -
  • TextFindIndex

    -
    public static int TextFindIndex(@Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("const char*") - org.bytedeco.javacpp.BytePointer find)
    -
    + org.bytedeco.javacpp.BytePointer search)
  • TextFindIndex

    -
    -
    public static int TextFindIndex(String text, - String find)
    -
    +
    public static int TextFindIndex(String text, + String search)
  • TextToUpper

    -
    -
    @Cast("const char*") +
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer TextToUpper(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextToUpper

    -
    -
    public static String TextToUpper(String text)
    -
    +
    @Cast("char*") +public static ByteBuffer TextToUpper(String text)
  • TextToLower

    -
    -
    @Cast("const char*") +
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer TextToLower(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextToLower

    -
    -
    public static String TextToLower(String text)
    -
    +
    @Cast("char*") +public static ByteBuffer TextToLower(String text)
  • TextToPascal

    -
    -
    @Cast("const char*") +
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer TextToPascal(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextToPascal

    -
    -
    public static String TextToPascal(String text)
    -
    +
    @Cast("char*") +public static ByteBuffer TextToPascal(String text)
  • TextToSnake

    -
    -
    @Cast("const char*") +
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer TextToSnake(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextToSnake

    -
    -
    public static String TextToSnake(String text)
    -
    +
    @Cast("char*") +public static ByteBuffer TextToSnake(String text)
  • TextToCamel

    -
    -
    @Cast("const char*") +
    @Cast("char*") public static org.bytedeco.javacpp.BytePointer TextToCamel(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextToCamel

    -
    -
    public static String TextToCamel(String text)
    -
    +
    @Cast("char*") +public static ByteBuffer TextToCamel(String text)
  • TextToInteger

    -
    public static int TextToInteger(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextToInteger

    -
    -
    public static int TextToInteger(String text)
    -
    +
    public static int TextToInteger(String text)
  • TextToFloat

    -
    public static float TextToFloat(@Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • TextToFloat

    -
    -
    public static float TextToFloat(String text)
    -
    +
    public static float TextToFloat(String text)
  • DrawLine3D

    -
    public static void DrawLine3D(@ByVal Raylib.Vector3 startPos, @ByVal Raylib.Vector3 endPos, @ByVal Raylib.Color color)
    -
  • DrawPoint3D

    -
    public static void DrawPoint3D(@ByVal Raylib.Vector3 _position, @ByVal Raylib.Color color)
    -
  • DrawCircle3D

    -
    public static void DrawCircle3D(@ByVal Raylib.Vector3 center, float radius, @@ -34822,13 +30608,11 @@

    DrawCircle3D

    float rotationAngle, @ByVal Raylib.Color color)
    -
  • DrawTriangle3D

    -
    public static void DrawTriangle3D(@ByVal Raylib.Vector3 v1, @ByVal @@ -34837,25 +30621,21 @@

    DrawTriangle3D

    Raylib.Vector3 v3, @ByVal Raylib.Color color)
    -
  • DrawTriangleStrip3D

    -
    public static void DrawTriangleStrip3D(@Const Raylib.Vector3 points, int pointCount, @ByVal Raylib.Color color)
    -
  • DrawCube

    -
    public static void DrawCube(@ByVal Raylib.Vector3 _position, float width, @@ -34863,26 +30643,22 @@

    DrawCube

    float length, @ByVal Raylib.Color color)
    -
  • DrawCubeV

    -
    public static void DrawCubeV(@ByVal Raylib.Vector3 _position, @ByVal Raylib.Vector3 size, @ByVal Raylib.Color color)
    -
  • DrawCubeWires

    -
    public static void DrawCubeWires(@ByVal Raylib.Vector3 _position, float width, @@ -34890,38 +30666,32 @@

    DrawCubeWires

    float length, @ByVal Raylib.Color color)
    -
  • DrawCubeWiresV

    -
    public static void DrawCubeWiresV(@ByVal Raylib.Vector3 _position, @ByVal Raylib.Vector3 size, @ByVal Raylib.Color color)
    -
  • DrawSphere

    -
    public static void DrawSphere(@ByVal Raylib.Vector3 centerPos, float radius, @ByVal Raylib.Color color)
    -
  • DrawSphereEx

    -
    public static void DrawSphereEx(@ByVal Raylib.Vector3 centerPos, float radius, @@ -34929,13 +30699,11 @@

    DrawSphereEx

    int slices, @ByVal Raylib.Color color)
    -
  • DrawSphereWires

    -
    public static void DrawSphereWires(@ByVal Raylib.Vector3 centerPos, float radius, @@ -34943,13 +30711,11 @@

    DrawSphereWires

    int slices, @ByVal Raylib.Color color)
    -
  • DrawCylinder

    -
    public static void DrawCylinder(@ByVal Raylib.Vector3 _position, float radiusTop, @@ -34958,13 +30724,11 @@

    DrawCylinder

    int slices, @ByVal Raylib.Color color)
    -
  • DrawCylinderEx

    -
    public static void DrawCylinderEx(@ByVal Raylib.Vector3 startPos, @ByVal @@ -34974,13 +30738,11 @@

    DrawCylinderEx

    int sides, @ByVal Raylib.Color color)
    -
  • DrawCylinderWires

    -
    public static void DrawCylinderWires(@ByVal Raylib.Vector3 _position, float radiusTop, @@ -34989,13 +30751,11 @@

    DrawCylinderWires

    int slices, @ByVal Raylib.Color color)
    -
  • DrawCylinderWiresEx

    -
    public static void DrawCylinderWiresEx(@ByVal Raylib.Vector3 startPos, @ByVal @@ -35005,13 +30765,11 @@

    DrawCylinderWiresEx

    int sides, @ByVal Raylib.Color color)
    -
  • DrawCapsule

    -
    public static void DrawCapsule(@ByVal Raylib.Vector3 startPos, @ByVal @@ -35021,13 +30779,11 @@

    DrawCapsule

    int rings, @ByVal Raylib.Color color)
    -
  • DrawCapsuleWires

    -
    public static void DrawCapsuleWires(@ByVal Raylib.Vector3 startPos, @ByVal @@ -35037,104 +30793,84 @@

    DrawCapsuleWires

    int rings, @ByVal Raylib.Color color)
    -
  • DrawPlane

    -
    public static void DrawPlane(@ByVal Raylib.Vector3 centerPos, @ByVal Raylib.Vector2 size, @ByVal Raylib.Color color)
    -
  • DrawRay

    -
    public static void DrawRay(@ByVal Raylib.Ray ray, @ByVal Raylib.Color color)
    -
  • DrawGrid

    -
    public static void DrawGrid(int slices, float spacing)
    -
  • LoadModel

    -
    @ByVal public static Raylib.Model LoadModel(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadModel

    -
    @ByVal -public static Raylib.Model LoadModel(String fileName)
    -
    +public static Raylib.Model LoadModel(String fileName)
  • LoadModelFromMesh

    -
    @ByVal public static Raylib.Model LoadModelFromMesh(@ByVal Raylib.Mesh mesh)
    -
  • IsModelValid

    -
    @Cast("bool") public static boolean IsModelValid(@ByVal Raylib.Model model)
    -
  • UnloadModel

    -
    public static void UnloadModel(@ByVal Raylib.Model model)
    -
  • GetModelBoundingBox

    -
    @ByVal public static Raylib.BoundingBox GetModelBoundingBox(@ByVal Raylib.Model model)
    -
  • DrawModel

    -
    public static void DrawModel(@ByVal Raylib.Model model, @ByVal @@ -35142,13 +30878,11 @@

    DrawModel

    float scale, @ByVal Raylib.Color tint)
    -
  • DrawModelEx

    -
    public static void DrawModelEx(@ByVal Raylib.Model model, @ByVal @@ -35160,13 +30894,11 @@

    DrawModelEx

    Raylib.Vector3 scale, @ByVal Raylib.Color tint)
    -
  • DrawModelWires

    -
    public static void DrawModelWires(@ByVal Raylib.Model model, @ByVal @@ -35174,13 +30906,11 @@

    DrawModelWires

    float scale, @ByVal Raylib.Color tint)
    -
  • DrawModelWiresEx

    -
    public static void DrawModelWiresEx(@ByVal Raylib.Model model, @ByVal @@ -35192,56 +30922,20 @@

    DrawModelWiresEx

    Raylib.Vector3 scale, @ByVal Raylib.Color tint)
    -
    -
    -
  • -
  • -
    -

    DrawModelPoints

    -
    -
    public static void DrawModelPoints(@ByVal - Raylib.Model model, - @ByVal - Raylib.Vector3 _position, - float scale, - @ByVal - Raylib.Color tint)
    -
    -
    -
  • -
  • -
    -

    DrawModelPointsEx

    -
    -
    public static void DrawModelPointsEx(@ByVal - Raylib.Model model, - @ByVal - Raylib.Vector3 _position, - @ByVal - Raylib.Vector3 rotationAxis, - float rotationAngle, - @ByVal - Raylib.Vector3 scale, - @ByVal - Raylib.Color tint)
    -
  • DrawBoundingBox

    -
    public static void DrawBoundingBox(@ByVal Raylib.BoundingBox box, @ByVal Raylib.Color color)
    -
  • DrawBillboard

    -
    public static void DrawBillboard(@ByVal @Cast("Camera*") Raylib.Camera3D camera, @ByVal @Cast("Texture2D*") @@ -35251,13 +30945,11 @@

    DrawBillboard

    float scale, @ByVal Raylib.Color tint)
    -
  • DrawBillboardRec

    -
    public static void DrawBillboardRec(@ByVal @Cast("Camera*") Raylib.Camera3D camera, @ByVal @Cast("Texture2D*") @@ -35270,13 +30962,11 @@

    DrawBillboardRec

    Raylib.Vector2 size, @ByVal Raylib.Color tint)
    -
  • DrawBillboardPro

    -
    public static void DrawBillboardPro(@ByVal @Cast("Camera*") Raylib.Camera3D camera, @ByVal @Cast("Texture2D*") @@ -35294,23 +30984,19 @@

    DrawBillboardPro

    float rotation, @ByVal Raylib.Color tint)
    -
  • UploadMesh

    -
    public static void UploadMesh(Raylib.Mesh mesh, @Cast("bool") boolean dynamic)
    -
  • UpdateMeshBuffer

    -
    public static void UpdateMeshBuffer(@ByVal Raylib.Mesh mesh, int index, @@ -35318,35 +31004,29 @@

    UpdateMeshBuffer

    org.bytedeco.javacpp.Pointer data, int dataSize, int offset)
    -
  • UnloadMesh

    -
    public static void UnloadMesh(@ByVal Raylib.Mesh mesh)
    -
  • DrawMesh

    -
    public static void DrawMesh(@ByVal Raylib.Mesh mesh, @ByVal Raylib.Material material, @ByVal Raylib.Matrix transform)
    -
  • DrawMeshInstanced

    -
    public static void DrawMeshInstanced(@ByVal Raylib.Mesh mesh, @ByVal @@ -35354,419 +31034,336 @@

    DrawMeshInstanced

    @Const Raylib.Matrix transforms, int instances)
    -
  • GetMeshBoundingBox

    -
    @ByVal public static Raylib.BoundingBox GetMeshBoundingBox(@ByVal Raylib.Mesh mesh)
    -
  • GenMeshTangents

    -
    public static void GenMeshTangents(Raylib.Mesh mesh)
    -
  • ExportMesh

    -
    @Cast("bool") public static boolean ExportMesh(@ByVal Raylib.Mesh mesh, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportMesh

    -
    @Cast("bool") public static boolean ExportMesh(@ByVal Raylib.Mesh mesh, - String fileName)
    -
    + String fileName)
  • ExportMeshAsCode

    -
    @Cast("bool") public static boolean ExportMeshAsCode(@ByVal Raylib.Mesh mesh, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportMeshAsCode

    -
    @Cast("bool") public static boolean ExportMeshAsCode(@ByVal Raylib.Mesh mesh, - String fileName)
    -
    + String fileName)
  • GenMeshPoly

    -
    @ByVal public static Raylib.Mesh GenMeshPoly(int sides, float radius)
    -
  • GenMeshPlane

    -
    @ByVal public static Raylib.Mesh GenMeshPlane(float width, float length, int resX, int resZ)
    -
  • GenMeshCube

    -
    @ByVal public static Raylib.Mesh GenMeshCube(float width, float height, float length)
    -
  • GenMeshSphere

    -
    @ByVal public static Raylib.Mesh GenMeshSphere(float radius, int rings, int slices)
    -
  • GenMeshHemiSphere

    -
    @ByVal public static Raylib.Mesh GenMeshHemiSphere(float radius, int rings, int slices)
    -
  • GenMeshCylinder

    -
    @ByVal public static Raylib.Mesh GenMeshCylinder(float radius, float height, int slices)
    -
  • GenMeshCone

    -
    @ByVal public static Raylib.Mesh GenMeshCone(float radius, float height, int slices)
    -
  • GenMeshTorus

    -
    @ByVal public static Raylib.Mesh GenMeshTorus(float radius, float size, int radSeg, int sides)
    -
  • GenMeshKnot

    -
    @ByVal public static Raylib.Mesh GenMeshKnot(float radius, float size, int radSeg, int sides)
    -
  • GenMeshHeightmap

    -
    @ByVal public static Raylib.Mesh GenMeshHeightmap(@ByVal Raylib.Image heightmap, @ByVal Raylib.Vector3 size)
    -
  • GenMeshCubicmap

    -
    @ByVal public static Raylib.Mesh GenMeshCubicmap(@ByVal Raylib.Image cubicmap, @ByVal Raylib.Vector3 cubeSize)
    -
  • LoadMaterials

    -
    public static Raylib.Material LoadMaterials(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.IntPointer materialCount)
    -
  • LoadMaterials

    -
    -
    public static Raylib.Material LoadMaterials(String fileName, - IntBuffer materialCount)
    -
    +
    public static Raylib.Material LoadMaterials(String fileName, + IntBuffer materialCount)
  • LoadMaterials

    -
    public static Raylib.Material LoadMaterials(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, int[] materialCount)
    -
  • LoadMaterials

    -
    -
    public static Raylib.Material LoadMaterials(String fileName, +
    public static Raylib.Material LoadMaterials(String fileName, org.bytedeco.javacpp.IntPointer materialCount)
    -
  • LoadMaterials

    -
    public static Raylib.Material LoadMaterials(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - IntBuffer materialCount)
    -
    + IntBuffer materialCount)
  • LoadMaterials

    -
    -
    public static Raylib.Material LoadMaterials(String fileName, +
    public static Raylib.Material LoadMaterials(String fileName, int[] materialCount)
    -
  • LoadMaterialDefault

    -
    @ByVal public static Raylib.Material LoadMaterialDefault()
    -
  • IsMaterialValid

    -
    @Cast("bool") public static boolean IsMaterialValid(@ByVal Raylib.Material material)
    -
  • UnloadMaterial

    -
    public static void UnloadMaterial(@ByVal Raylib.Material material)
    -
  • SetMaterialTexture

    -
    public static void SetMaterialTexture(Raylib.Material material, int mapType, @ByVal @Cast("Texture2D*") Raylib.Texture texture)
    -
  • SetModelMeshMaterial

    -
    public static void SetModelMeshMaterial(Raylib.Model model, int meshId, int materialId)
    -
  • LoadModelAnimations

    -
    public static Raylib.ModelAnimation LoadModelAnimations(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, org.bytedeco.javacpp.IntPointer animCount)
    -
  • LoadModelAnimations

    -
    -
    public static Raylib.ModelAnimation LoadModelAnimations(String fileName, - IntBuffer animCount)
    -
    +
    public static Raylib.ModelAnimation LoadModelAnimations(String fileName, + IntBuffer animCount)
  • LoadModelAnimations

    -
    public static Raylib.ModelAnimation LoadModelAnimations(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, int[] animCount)
    -
  • LoadModelAnimations

    -
    -
    public static Raylib.ModelAnimation LoadModelAnimations(String fileName, +
    public static Raylib.ModelAnimation LoadModelAnimations(String fileName, org.bytedeco.javacpp.IntPointer animCount)
    -
  • LoadModelAnimations

    -
    public static Raylib.ModelAnimation LoadModelAnimations(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, - IntBuffer animCount)
    -
    + IntBuffer animCount)
  • LoadModelAnimations

    -
    -
    public static Raylib.ModelAnimation LoadModelAnimations(String fileName, +
    public static Raylib.ModelAnimation LoadModelAnimations(String fileName, int[] animCount)
    -
  • -
    +

    UpdateModelAnimation

    -
    public static void UpdateModelAnimation(@ByVal Raylib.Model model, @ByVal Raylib.ModelAnimation anim, - int frame)
    -
    + float frame)
  • -
    -

    UpdateModelAnimationBones

    -
    -
    public static void UpdateModelAnimationBones(@ByVal +
    +

    UpdateModelAnimationEx

    +
    public static void UpdateModelAnimationEx(@ByVal Raylib.Model model, @ByVal - Raylib.ModelAnimation anim, - int frame)
    -
    -
    -
  • -
  • -
    -

    UnloadModelAnimation

    -
    -
    public static void UnloadModelAnimation(@ByVal - Raylib.ModelAnimation anim)
    -
    + Raylib.ModelAnimation animA, + float frameA, + @ByVal + Raylib.ModelAnimation animB, + float frameB, + float blend)
  • UnloadModelAnimations

    -
    public static void UnloadModelAnimations(Raylib.ModelAnimation animations, int animCount)
    -
  • IsModelAnimationValid

    -
    @Cast("bool") public static boolean IsModelAnimationValid(@ByVal Raylib.Model model, @ByVal Raylib.ModelAnimation anim)
    -
  • CheckCollisionSpheres

    -
    @Cast("bool") public static boolean CheckCollisionSpheres(@ByVal Raylib.Vector3 center1, @@ -35774,63 +31371,53 @@

    CheckCollisionSpheres

    @ByVal Raylib.Vector3 center2, float radius2)
    -
  • CheckCollisionBoxes

    -
    @Cast("bool") public static boolean CheckCollisionBoxes(@ByVal Raylib.BoundingBox box1, @ByVal Raylib.BoundingBox box2)
    -
  • CheckCollisionBoxSphere

    -
    @Cast("bool") public static boolean CheckCollisionBoxSphere(@ByVal Raylib.BoundingBox box, @ByVal Raylib.Vector3 center, float radius)
    -
  • GetRayCollisionSphere

    -
    @ByVal public static Raylib.RayCollision GetRayCollisionSphere(@ByVal Raylib.Ray ray, @ByVal Raylib.Vector3 center, float radius)
    -
  • GetRayCollisionBox

    -
    @ByVal public static Raylib.RayCollision GetRayCollisionBox(@ByVal Raylib.Ray ray, @ByVal Raylib.BoundingBox box)
    -
  • GetRayCollisionMesh

    -
    @ByVal public static Raylib.RayCollision GetRayCollisionMesh(@ByVal Raylib.Ray ray, @@ -35838,13 +31425,11 @@

    GetRayCollisionMesh

    Raylib.Mesh mesh, @ByVal Raylib.Matrix transform)
    -
  • GetRayCollisionTriangle

    -
    @ByVal public static Raylib.RayCollision GetRayCollisionTriangle(@ByVal Raylib.Ray ray, @@ -35854,13 +31439,11 @@

    GetRayCollisionTriangle

    Raylib.Vector3 p2, @ByVal Raylib.Vector3 p3)
    -
  • GetRayCollisionQuad

    -
    @ByVal public static Raylib.RayCollision GetRayCollisionQuad(@ByVal Raylib.Ray ray, @@ -35872,658 +31455,528 @@

    GetRayCollisionQuad

    Raylib.Vector3 p3, @ByVal Raylib.Vector3 p4)
    -
  • InitAudioDevice

    -
    public static void InitAudioDevice()
    -
  • CloseAudioDevice

    -
    public static void CloseAudioDevice()
    -
  • IsAudioDeviceReady

    -
    @Cast("bool") public static boolean IsAudioDeviceReady()
    -
  • SetMasterVolume

    -
    public static void SetMasterVolume(float volume)
    -
  • GetMasterVolume

    -
    public static float GetMasterVolume()
    -
  • LoadWave

    -
    @ByVal public static Raylib.Wave LoadWave(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadWave

    -
    @ByVal -public static Raylib.Wave LoadWave(String fileName)
    -
    +public static Raylib.Wave LoadWave(String fileName)
  • LoadWaveFromMemory

    -
    @ByVal public static Raylib.Wave LoadWaveFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer fileData, int dataSize)
    -
  • LoadWaveFromMemory

    -
    @ByVal -public static Raylib.Wave LoadWaveFromMemory(String fileType, +public static Raylib.Wave LoadWaveFromMemory(String fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize)
    -
  • LoadWaveFromMemory

    -
    @ByVal public static Raylib.Wave LoadWaveFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") byte[] fileData, int dataSize)
    -
  • LoadWaveFromMemory

    -
    @ByVal -public static Raylib.Wave LoadWaveFromMemory(String fileType, +public static Raylib.Wave LoadWaveFromMemory(String fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer fileData, int dataSize)
    -
  • LoadWaveFromMemory

    -
    @ByVal public static Raylib.Wave LoadWaveFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") - ByteBuffer fileData, + ByteBuffer fileData, int dataSize)
    -
  • LoadWaveFromMemory

    -
    @ByVal -public static Raylib.Wave LoadWaveFromMemory(String fileType, +public static Raylib.Wave LoadWaveFromMemory(String fileType, @Cast("const unsigned char*") byte[] fileData, int dataSize)
    -
  • IsWaveValid

    -
    @Cast("bool") public static boolean IsWaveValid(@ByVal Raylib.Wave wave)
    -
  • LoadSound

    -
    @ByVal public static Raylib.Sound LoadSound(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadSound

    -
    @ByVal -public static Raylib.Sound LoadSound(String fileName)
    -
    +public static Raylib.Sound LoadSound(String fileName)
  • LoadSoundFromWave

    -
    @ByVal public static Raylib.Sound LoadSoundFromWave(@ByVal Raylib.Wave wave)
    -
  • LoadSoundAlias

    -
    @ByVal public static Raylib.Sound LoadSoundAlias(@ByVal Raylib.Sound source)
    -
  • IsSoundValid

    -
    @Cast("bool") public static boolean IsSoundValid(@ByVal Raylib.Sound sound)
    -
  • UpdateSound

    -
    public static void UpdateSound(@ByVal Raylib.Sound sound, @Const org.bytedeco.javacpp.Pointer data, int sampleCount)
    -
  • UnloadWave

    -
    public static void UnloadWave(@ByVal Raylib.Wave wave)
    -
  • UnloadSound

    -
    public static void UnloadSound(@ByVal Raylib.Sound sound)
    -
  • UnloadSoundAlias

    -
    public static void UnloadSoundAlias(@ByVal Raylib.Sound alias)
    -
  • ExportWave

    -
    @Cast("bool") public static boolean ExportWave(@ByVal Raylib.Wave wave, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportWave

    -
    @Cast("bool") public static boolean ExportWave(@ByVal Raylib.Wave wave, - String fileName)
    -
    + String fileName)
  • ExportWaveAsCode

    -
    @Cast("bool") public static boolean ExportWaveAsCode(@ByVal Raylib.Wave wave, @Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • ExportWaveAsCode

    -
    @Cast("bool") public static boolean ExportWaveAsCode(@ByVal Raylib.Wave wave, - String fileName)
    -
    + String fileName)
  • PlaySound

    -
    public static void PlaySound(@ByVal Raylib.Sound sound)
    -
  • StopSound

    -
    public static void StopSound(@ByVal Raylib.Sound sound)
    -
  • PauseSound

    -
    public static void PauseSound(@ByVal Raylib.Sound sound)
    -
  • ResumeSound

    -
    public static void ResumeSound(@ByVal Raylib.Sound sound)
    -
  • IsSoundPlaying

    -
    @Cast("bool") public static boolean IsSoundPlaying(@ByVal Raylib.Sound sound)
    -
  • SetSoundVolume

    -
    public static void SetSoundVolume(@ByVal Raylib.Sound sound, float volume)
    -
  • SetSoundPitch

    -
    public static void SetSoundPitch(@ByVal Raylib.Sound sound, float pitch)
    -
  • SetSoundPan

    -
    public static void SetSoundPan(@ByVal Raylib.Sound sound, float pan)
    -
  • WaveCopy

    -
    @ByVal public static Raylib.Wave WaveCopy(@ByVal Raylib.Wave wave)
    -
  • WaveCrop

    -
    public static void WaveCrop(Raylib.Wave wave, int initFrame, int finalFrame)
    -
  • WaveFormat

    -
    public static void WaveFormat(Raylib.Wave wave, int sampleRate, int sampleSize, int channels)
    -
  • LoadWaveSamples

    -
    public static org.bytedeco.javacpp.FloatPointer LoadWaveSamples(@ByVal Raylib.Wave wave)
    -
  • UnloadWaveSamples

    -
    public static void UnloadWaveSamples(org.bytedeco.javacpp.FloatPointer samples)
    -
  • UnloadWaveSamples

    -
    -
    public static void UnloadWaveSamples(FloatBuffer samples)
    -
    +
    public static void UnloadWaveSamples(FloatBuffer samples)
  • UnloadWaveSamples

    -
    public static void UnloadWaveSamples(float[] samples)
    -
  • LoadMusicStream

    -
    @ByVal public static Raylib.Music LoadMusicStream(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • LoadMusicStream

    -
    @ByVal -public static Raylib.Music LoadMusicStream(String fileName)
    -
    +public static Raylib.Music LoadMusicStream(String fileName)
  • LoadMusicStreamFromMemory

    -
    @ByVal public static Raylib.Music LoadMusicStreamFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize)
    -
  • LoadMusicStreamFromMemory

    -
    @ByVal -public static Raylib.Music LoadMusicStreamFromMemory(String fileType, +public static Raylib.Music LoadMusicStreamFromMemory(String fileType, @Cast("const unsigned char*") - ByteBuffer data, + ByteBuffer data, int dataSize)
    -
  • LoadMusicStreamFromMemory

    -
    @ByVal public static Raylib.Music LoadMusicStreamFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") byte[] data, int dataSize)
    -
  • LoadMusicStreamFromMemory

    -
    @ByVal -public static Raylib.Music LoadMusicStreamFromMemory(String fileType, +public static Raylib.Music LoadMusicStreamFromMemory(String fileType, @Cast("const unsigned char*") org.bytedeco.javacpp.BytePointer data, int dataSize)
    -
  • LoadMusicStreamFromMemory

    -
    @ByVal public static Raylib.Music LoadMusicStreamFromMemory(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileType, @Cast("const unsigned char*") - ByteBuffer data, + ByteBuffer data, int dataSize)
    -
  • LoadMusicStreamFromMemory

    -
    @ByVal -public static Raylib.Music LoadMusicStreamFromMemory(String fileType, +public static Raylib.Music LoadMusicStreamFromMemory(String fileType, @Cast("const unsigned char*") byte[] data, int dataSize)
    -
  • IsMusicValid

    -
    @Cast("bool") public static boolean IsMusicValid(@ByVal Raylib.Music music)
    -
  • UnloadMusicStream

    -
    public static void UnloadMusicStream(@ByVal Raylib.Music music)
    -
  • PlayMusicStream

    -
    public static void PlayMusicStream(@ByVal Raylib.Music music)
    -
  • IsMusicStreamPlaying

    -
    @Cast("bool") public static boolean IsMusicStreamPlaying(@ByVal Raylib.Music music)
    -
  • UpdateMusicStream

    -
    public static void UpdateMusicStream(@ByVal Raylib.Music music)
    -
  • StopMusicStream

    -
    public static void StopMusicStream(@ByVal Raylib.Music music)
    -
  • PauseMusicStream

    -
    public static void PauseMusicStream(@ByVal Raylib.Music music)
    -
  • ResumeMusicStream

    -
    public static void ResumeMusicStream(@ByVal Raylib.Music music)
    -
  • SeekMusicStream

    -
    public static void SeekMusicStream(@ByVal Raylib.Music music, float _position)
    -
  • SetMusicVolume

    -
    public static void SetMusicVolume(@ByVal Raylib.Music music, float volume)
    -
  • SetMusicPitch

    -
    public static void SetMusicPitch(@ByVal Raylib.Music music, float pitch)
    -
  • SetMusicPan

    -
    public static void SetMusicPan(@ByVal Raylib.Music music, float pan)
    -
  • GetMusicTimeLength

    -
    public static float GetMusicTimeLength(@ByVal Raylib.Music music)
    -
  • GetMusicTimePlayed

    -
    public static float GetMusicTimePlayed(@ByVal Raylib.Music music)
    -
  • LoadAudioStream

    -
    @ByVal public static Raylib.AudioStream LoadAudioStream(@Cast("unsigned int") int sampleRate, @@ -36531,399 +31984,315 @@

    LoadAudioStream

    int sampleSize, @Cast("unsigned int") int channels)
    -
  • IsAudioStreamValid

    -
    @Cast("bool") public static boolean IsAudioStreamValid(@ByVal Raylib.AudioStream stream)
    -
  • UnloadAudioStream

    -
    public static void UnloadAudioStream(@ByVal Raylib.AudioStream stream)
    -
  • UpdateAudioStream

    -
    public static void UpdateAudioStream(@ByVal Raylib.AudioStream stream, @Const org.bytedeco.javacpp.Pointer data, int frameCount)
    -
  • IsAudioStreamProcessed

    -
    @Cast("bool") public static boolean IsAudioStreamProcessed(@ByVal Raylib.AudioStream stream)
    -
  • PlayAudioStream

    -
    public static void PlayAudioStream(@ByVal Raylib.AudioStream stream)
    -
  • PauseAudioStream

    -
    public static void PauseAudioStream(@ByVal Raylib.AudioStream stream)
    -
  • ResumeAudioStream

    -
    public static void ResumeAudioStream(@ByVal Raylib.AudioStream stream)
    -
  • IsAudioStreamPlaying

    -
    @Cast("bool") public static boolean IsAudioStreamPlaying(@ByVal Raylib.AudioStream stream)
    -
  • StopAudioStream

    -
    public static void StopAudioStream(@ByVal Raylib.AudioStream stream)
    -
  • SetAudioStreamVolume

    -
    public static void SetAudioStreamVolume(@ByVal Raylib.AudioStream stream, float volume)
    -
  • SetAudioStreamPitch

    -
    public static void SetAudioStreamPitch(@ByVal Raylib.AudioStream stream, float pitch)
    -
  • SetAudioStreamPan

    -
    public static void SetAudioStreamPan(@ByVal Raylib.AudioStream stream, float pan)
    -
  • SetAudioStreamBufferSizeDefault

    -
    public static void SetAudioStreamBufferSizeDefault(int size)
    -
  • SetAudioStreamCallback

    -
    public static void SetAudioStreamCallback(@ByVal Raylib.AudioStream stream, Raylib.AudioCallback callback)
    -
  • AttachAudioStreamProcessor

    -
    public static void AttachAudioStreamProcessor(@ByVal Raylib.AudioStream stream, Raylib.AudioCallback processor)
    -
  • DetachAudioStreamProcessor

    -
    public static void DetachAudioStreamProcessor(@ByVal Raylib.AudioStream stream, Raylib.AudioCallback processor)
    -
  • AttachAudioMixedProcessor

    -
    public static void AttachAudioMixedProcessor(Raylib.AudioCallback processor)
    -
  • DetachAudioMixedProcessor

    -
    public static void DetachAudioMixedProcessor(Raylib.AudioCallback processor)
    -
  • rlMatrixMode

    -
    public static void rlMatrixMode(int mode)
    -
  • rlPushMatrix

    -
    public static void rlPushMatrix()
    -
  • rlPopMatrix

    -
    public static void rlPopMatrix()
    -
  • rlLoadIdentity

    -
    public static void rlLoadIdentity()
    -
  • rlTranslatef

    -
    public static void rlTranslatef(float x, float y, float z)
    -
  • rlRotatef

    -
    public static void rlRotatef(float angle, float x, float y, float z)
    -
  • rlScalef

    -
    public static void rlScalef(float x, float y, float z)
    -
  • rlMultMatrixf

    -
    public static void rlMultMatrixf(@Const org.bytedeco.javacpp.FloatPointer matf)
    -
  • rlMultMatrixf

    -
    public static void rlMultMatrixf(@Const - FloatBuffer matf)
    -
    + FloatBuffer matf)
  • rlMultMatrixf

    -
    public static void rlMultMatrixf(@Const float[] matf)
    -
  • rlFrustum

    -
    public static void rlFrustum(double left, double right, double bottom, double top, double znear, double zfar)
    -
  • rlOrtho

    -
    public static void rlOrtho(double left, double right, double bottom, double top, double znear, double zfar)
    -
  • rlViewport

    -
    public static void rlViewport(int x, int y, int width, int height)
    -
  • rlSetClipPlanes

    -
    public static void rlSetClipPlanes(double nearPlane, double farPlane)
    -
  • rlGetCullDistanceNear

    -
    public static double rlGetCullDistanceNear()
    -
  • rlGetCullDistanceFar

    -
    public static double rlGetCullDistanceFar()
    -
  • rlBegin

    -
    public static void rlBegin(int mode)
    -
  • rlEnd

    -
    public static void rlEnd()
    -
  • rlVertex2i

    -
    public static void rlVertex2i(int x, int y)
    -
  • rlVertex2f

    -
    public static void rlVertex2f(float x, float y)
    -
  • rlVertex3f

    -
    public static void rlVertex3f(float x, float y, float z)
    -
  • rlTexCoord2f

    -
    public static void rlTexCoord2f(float x, float y)
    -
  • rlNormal3f

    -
    public static void rlNormal3f(float x, float y, float z)
    -
  • rlColor4ub

    -
    public static void rlColor4ub(@Cast("unsigned char") byte r, @Cast("unsigned char") @@ -36932,219 +32301,184 @@

    rlColor4ub

    byte b, @Cast("unsigned char") byte a)
    -
  • rlColor3f

    -
    public static void rlColor3f(float x, float y, float z)
    -
  • rlColor4f

    -
    public static void rlColor4f(float x, float y, float z, float w)
    -
  • rlEnableVertexArray

    -
    @Cast("bool") public static boolean rlEnableVertexArray(@Cast("unsigned int") int vaoId)
    -
  • rlDisableVertexArray

    -
    public static void rlDisableVertexArray()
    -
  • rlEnableVertexBuffer

    -
    public static void rlEnableVertexBuffer(@Cast("unsigned int") int id)
    -
  • rlDisableVertexBuffer

    -
    public static void rlDisableVertexBuffer()
    -
  • rlEnableVertexBufferElement

    -
    public static void rlEnableVertexBufferElement(@Cast("unsigned int") int id)
    -
  • rlDisableVertexBufferElement

    -
    public static void rlDisableVertexBufferElement()
    -
  • rlEnableVertexAttribute

    -
    public static void rlEnableVertexAttribute(@Cast("unsigned int") int index)
    -
  • rlDisableVertexAttribute

    -
    public static void rlDisableVertexAttribute(@Cast("unsigned int") int index)
    -
    +
    +
  • +
  • +
    +

    rlEnableStatePointer

    +
    public static void rlEnableStatePointer(int vertexAttribType, + org.bytedeco.javacpp.Pointer buffer)
    +
    +
  • +
  • +
    +

    rlDisableStatePointer

    +
    public static void rlDisableStatePointer(int vertexAttribType)
  • rlActiveTextureSlot

    -
    public static void rlActiveTextureSlot(int slot)
    -
  • rlEnableTexture

    -
    public static void rlEnableTexture(@Cast("unsigned int") int id)
    -
  • rlDisableTexture

    -
    public static void rlDisableTexture()
    -
  • rlEnableTextureCubemap

    -
    public static void rlEnableTextureCubemap(@Cast("unsigned int") int id)
    -
  • rlDisableTextureCubemap

    -
    public static void rlDisableTextureCubemap()
    -
  • rlTextureParameters

    -
    public static void rlTextureParameters(@Cast("unsigned int") int id, int param, int value)
    -
  • rlCubemapParameters

    -
    public static void rlCubemapParameters(@Cast("unsigned int") int id, int param, int value)
    -
  • rlEnableShader

    -
    public static void rlEnableShader(@Cast("unsigned int") int id)
    -
  • rlDisableShader

    -
    public static void rlDisableShader()
    -
  • rlEnableFramebuffer

    -
    public static void rlEnableFramebuffer(@Cast("unsigned int") int id)
    -
  • rlDisableFramebuffer

    -
    public static void rlDisableFramebuffer()
    -
  • rlGetActiveFramebuffer

    -
    @Cast("unsigned int") public static int rlGetActiveFramebuffer()
    -
  • rlActiveDrawBuffers

    -
    public static void rlActiveDrawBuffers(int count)
    -
  • rlBlitFramebuffer

    -
    public static void rlBlitFramebuffer(int srcX, int srcY, int srcWidth, @@ -37154,88 +32488,68 @@

    rlBlitFramebuffer

    int dstWidth, int dstHeight, int bufferMask)
    -
  • rlBindFramebuffer

    -
    public static void rlBindFramebuffer(@Cast("unsigned int") int target, @Cast("unsigned int") int framebuffer)
    -
  • rlEnableColorBlend

    -
    public static void rlEnableColorBlend()
    -
  • rlDisableColorBlend

    -
    public static void rlDisableColorBlend()
    -
  • rlEnableDepthTest

    -
    public static void rlEnableDepthTest()
    -
  • rlDisableDepthTest

    -
    public static void rlDisableDepthTest()
    -
  • rlEnableDepthMask

    -
    public static void rlEnableDepthMask()
    -
  • rlDisableDepthMask

    -
    public static void rlDisableDepthMask()
    -
  • rlEnableBackfaceCulling

    -
    public static void rlEnableBackfaceCulling()
    -
  • rlDisableBackfaceCulling

    -
    public static void rlDisableBackfaceCulling()
    -
  • rlColorMask

    -
    public static void rlColorMask(@Cast("bool") boolean r, @Cast("bool") @@ -37244,129 +32558,117 @@

    rlColorMask

    boolean b, @Cast("bool") boolean a)
    -
  • rlSetCullFace

    -
    public static void rlSetCullFace(int mode)
    -
  • rlEnableScissorTest

    -
    public static void rlEnableScissorTest()
    -
  • rlDisableScissorTest

    -
    public static void rlDisableScissorTest()
    -
  • rlScissor

    -
    public static void rlScissor(int x, int y, int width, int height)
    -
    -
    -
  • -
  • -
    -

    rlEnableWireMode

    -
    -
    public static void rlEnableWireMode()
    -
  • rlEnablePointMode

    -
    public static void rlEnablePointMode()
    -
    +
    +
  • +
  • +
    +

    rlDisablePointMode

    +
    public static void rlDisablePointMode()
    +
    +
  • +
  • +
    +

    rlSetPointSize

    +
    public static void rlSetPointSize(float size)
    +
    +
  • +
  • +
    +

    rlGetPointSize

    +
    public static float rlGetPointSize()
    +
    +
  • +
  • +
    +

    rlEnableWireMode

    +
    public static void rlEnableWireMode()
  • rlDisableWireMode

    -
    public static void rlDisableWireMode()
    -
  • rlSetLineWidth

    -
    public static void rlSetLineWidth(float width)
    -
  • rlGetLineWidth

    -
    public static float rlGetLineWidth()
    -
  • rlEnableSmoothLines

    -
    public static void rlEnableSmoothLines()
    -
  • rlDisableSmoothLines

    -
    public static void rlDisableSmoothLines()
    -
  • rlEnableStereoRender

    -
    public static void rlEnableStereoRender()
    -
  • rlDisableStereoRender

    -
    public static void rlDisableStereoRender()
    -
  • rlIsStereoRenderEnabled

    -
    @Cast("bool") public static boolean rlIsStereoRenderEnabled()
    -
  • rlClearColor

    -
    public static void rlClearColor(@Cast("unsigned char") byte r, @Cast("unsigned char") @@ -37375,291 +32677,242 @@

    rlClearColor

    byte b, @Cast("unsigned char") byte a)
    -
  • rlClearScreenBuffers

    -
    public static void rlClearScreenBuffers()
    -
  • rlCheckErrors

    -
    public static void rlCheckErrors()
    -
  • rlSetBlendMode

    -
    public static void rlSetBlendMode(int mode)
    -
  • rlSetBlendFactors

    -
    public static void rlSetBlendFactors(int glSrcFactor, int glDstFactor, int glEquation)
    -
  • rlSetBlendFactorsSeparate

    -
    public static void rlSetBlendFactorsSeparate(int glSrcRGB, int glDstRGB, int glSrcAlpha, int glDstAlpha, int glEqRGB, int glEqAlpha)
    -
  • rlglInit

    -
    public static void rlglInit(int width, int height)
    -
  • rlglClose

    -
    public static void rlglClose()
    -
  • rlLoadExtensions

    -
    public static void rlLoadExtensions(org.bytedeco.javacpp.Pointer loader)
    -
    +
    +
  • +
  • +
    +

    rlGetProcAddress

    +
    public static org.bytedeco.javacpp.Pointer rlGetProcAddress(@Cast("const char*") + org.bytedeco.javacpp.BytePointer procName)
    +
    +
  • +
  • +
    +

    rlGetProcAddress

    +
    public static org.bytedeco.javacpp.Pointer rlGetProcAddress(String procName)
  • rlGetVersion

    -
    public static int rlGetVersion()
    -
  • rlSetFramebufferWidth

    -
    public static void rlSetFramebufferWidth(int width)
    -
  • rlGetFramebufferWidth

    -
    public static int rlGetFramebufferWidth()
    -
  • rlSetFramebufferHeight

    -
    public static void rlSetFramebufferHeight(int height)
    -
  • rlGetFramebufferHeight

    -
    public static int rlGetFramebufferHeight()
    -
  • rlGetTextureIdDefault

    -
    @Cast("unsigned int") public static int rlGetTextureIdDefault()
    -
  • rlGetShaderIdDefault

    -
    @Cast("unsigned int") public static int rlGetShaderIdDefault()
    -
  • rlGetShaderLocsDefault

    -
    public static org.bytedeco.javacpp.IntPointer rlGetShaderLocsDefault()
    -
  • rlLoadRenderBatch

    -
    @ByVal public static Raylib.rlRenderBatch rlLoadRenderBatch(int numBuffers, int bufferElements)
    -
  • rlUnloadRenderBatch

    -
    public static void rlUnloadRenderBatch(@ByVal Raylib.rlRenderBatch batch)
    -
  • rlDrawRenderBatch

    -
    public static void rlDrawRenderBatch(Raylib.rlRenderBatch batch)
    -
  • rlSetRenderBatchActive

    -
    public static void rlSetRenderBatchActive(Raylib.rlRenderBatch batch)
    -
  • rlDrawRenderBatchActive

    -
    public static void rlDrawRenderBatchActive()
    -
  • rlCheckRenderBatchLimit

    -
    @Cast("bool") public static boolean rlCheckRenderBatchLimit(int vCount)
    -
  • rlSetTexture

    -
    public static void rlSetTexture(@Cast("unsigned int") int id)
    -
  • rlLoadVertexArray

    -
    @Cast("unsigned int") public static int rlLoadVertexArray()
    -
  • rlLoadVertexBuffer

    -
    @Cast("unsigned int") public static int rlLoadVertexBuffer(@Const org.bytedeco.javacpp.Pointer buffer, int size, @Cast("bool") boolean dynamic)
    -
  • rlLoadVertexBufferElement

    -
    @Cast("unsigned int") public static int rlLoadVertexBufferElement(@Const org.bytedeco.javacpp.Pointer buffer, int size, @Cast("bool") boolean dynamic)
    -
  • rlUpdateVertexBuffer

    -
    public static void rlUpdateVertexBuffer(@Cast("unsigned int") int bufferId, @Const org.bytedeco.javacpp.Pointer data, int dataSize, int offset)
    -
  • rlUpdateVertexBufferElements

    -
    public static void rlUpdateVertexBufferElements(@Cast("unsigned int") int id, @Const org.bytedeco.javacpp.Pointer data, int dataSize, int offset)
    -
  • rlUnloadVertexArray

    -
    public static void rlUnloadVertexArray(@Cast("unsigned int") int vaoId)
    -
  • rlUnloadVertexBuffer

    -
    public static void rlUnloadVertexBuffer(@Cast("unsigned int") int vboId)
    -
  • rlSetVertexAttribute

    -
    public static void rlSetVertexAttribute(@Cast("unsigned int") int index, int compSize, @@ -37668,77 +32921,63 @@

    rlSetVertexAttribute

    boolean normalized, int stride, int offset)
    -
  • rlSetVertexAttributeDivisor

    -
    public static void rlSetVertexAttributeDivisor(@Cast("unsigned int") int index, int divisor)
    -
  • rlSetVertexAttributeDefault

    -
    public static void rlSetVertexAttributeDefault(int locIndex, @Const org.bytedeco.javacpp.Pointer value, int attribType, int count)
    -
  • rlDrawVertexArray

    -
    public static void rlDrawVertexArray(int offset, int count)
    -
  • rlDrawVertexArrayElements

    -
    public static void rlDrawVertexArrayElements(int offset, int count, @Const org.bytedeco.javacpp.Pointer buffer)
    -
  • rlDrawVertexArrayInstanced

    -
    public static void rlDrawVertexArrayInstanced(int offset, int count, int instances)
    -
  • rlDrawVertexArrayElementsInstanced

    -
    public static void rlDrawVertexArrayElementsInstanced(int offset, int count, @Const org.bytedeco.javacpp.Pointer buffer, int instances)
    -
  • rlLoadTexture

    -
    @Cast("unsigned int") public static int rlLoadTexture(@Const org.bytedeco.javacpp.Pointer data, @@ -37746,38 +32985,32 @@

    rlLoadTexture

    int height, int format, int mipmapCount)
    -
  • rlLoadTextureDepth

    -
    @Cast("unsigned int") public static int rlLoadTextureDepth(int width, int height, @Cast("bool") boolean useRenderBuffer)
    -
  • rlLoadTextureCubemap

    -
    @Cast("unsigned int") public static int rlLoadTextureCubemap(@Const org.bytedeco.javacpp.Pointer data, int size, int format, int mipmapCount)
    -
  • rlUpdateTexture

    -
    public static void rlUpdateTexture(@Cast("unsigned int") int id, int offsetX, @@ -37787,13 +33020,11 @@

    rlUpdateTexture

    int format, @Const org.bytedeco.javacpp.Pointer data)
    -
  • rlGetGlTextureFormats

    -
    public static void rlGetGlTextureFormats(int format, @Cast("unsigned int*") org.bytedeco.javacpp.IntPointer glInternalFormat, @@ -37801,27 +33032,23 @@

    rlGetGlTextureFormats

    org.bytedeco.javacpp.IntPointer glFormat, @Cast("unsigned int*") org.bytedeco.javacpp.IntPointer glType)
    -
  • rlGetGlTextureFormats

    -
    public static void rlGetGlTextureFormats(int format, @Cast("unsigned int*") - IntBuffer glInternalFormat, + IntBuffer glInternalFormat, @Cast("unsigned int*") - IntBuffer glFormat, + IntBuffer glFormat, @Cast("unsigned int*") - IntBuffer glType)
    -
    + IntBuffer glType)
  • rlGetGlTextureFormats

    -
    public static void rlGetGlTextureFormats(int format, @Cast("unsigned int*") int[] glInternalFormat, @@ -37829,359 +33056,318 @@

    rlGetGlTextureFormats

    int[] glFormat, @Cast("unsigned int*") int[] glType)
    -
  • rlGetPixelFormatName

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer rlGetPixelFormatName(@Cast("unsigned int") int format)
    -
  • rlUnloadTexture

    -
    public static void rlUnloadTexture(@Cast("unsigned int") int id)
    -
  • rlGenTextureMipmaps

    -
    public static void rlGenTextureMipmaps(@Cast("unsigned int") int id, int width, int height, int format, org.bytedeco.javacpp.IntPointer mipmaps)
    -
  • rlGenTextureMipmaps

    -
    public static void rlGenTextureMipmaps(@Cast("unsigned int") int id, int width, int height, int format, - IntBuffer mipmaps)
    -
    + IntBuffer mipmaps)
  • rlGenTextureMipmaps

    -
    public static void rlGenTextureMipmaps(@Cast("unsigned int") int id, int width, int height, int format, int[] mipmaps)
    -
  • rlReadTexturePixels

    -
    public static org.bytedeco.javacpp.Pointer rlReadTexturePixels(@Cast("unsigned int") int id, int width, int height, int format)
    -
  • rlReadScreenPixels

    -
    @Cast("unsigned char*") public static org.bytedeco.javacpp.BytePointer rlReadScreenPixels(int width, int height)
    -
  • rlLoadFramebuffer

    -
    @Cast("unsigned int") public static int rlLoadFramebuffer()
    -
  • rlFramebufferAttach

    -
    public static void rlFramebufferAttach(@Cast("unsigned int") - int fboId, + int id, @Cast("unsigned int") int texId, int attachType, int texType, int mipLevel)
    -
  • rlFramebufferComplete

    -
    @Cast("bool") public static boolean rlFramebufferComplete(@Cast("unsigned int") int id)
    -
  • rlUnloadFramebuffer

    -
    public static void rlUnloadFramebuffer(@Cast("unsigned int") int id)
    -
  • -
    -

    rlLoadShaderCode

    -
    -
    @Cast("unsigned int") -public static int rlLoadShaderCode(@Cast("const char*") - org.bytedeco.javacpp.BytePointer vsCode, - @Cast("const char*") - org.bytedeco.javacpp.BytePointer fsCode)
    -
    +
    +

    rlCopyFramebuffer

    +
    public static void rlCopyFramebuffer(int x, + int y, + int width, + int height, + int format, + org.bytedeco.javacpp.Pointer pixels)
  • -
    -

    rlLoadShaderCode

    -
    -
    @Cast("unsigned int") -public static int rlLoadShaderCode(String vsCode, - String fsCode)
    -
    +
    +

    rlResizeFramebuffer

    +
    public static void rlResizeFramebuffer(int width, + int height)
  • -
    -

    rlCompileShader

    -
    +
    +

    rlLoadShader

    @Cast("unsigned int") -public static int rlCompileShader(@Cast("const char*") - org.bytedeco.javacpp.BytePointer shaderCode, +public static int rlLoadShader(@Cast("const char*") + org.bytedeco.javacpp.BytePointer code, int type)
    -
  • -
    -

    rlCompileShader

    -
    +
    +

    rlLoadShader

    @Cast("unsigned int") -public static int rlCompileShader(String shaderCode, +public static int rlLoadShader(String code, int type)
    -
  • -
    +

    rlLoadShaderProgram

    -
    @Cast("unsigned int") -public static int rlLoadShaderProgram(@Cast("unsigned int") - int vShaderId, +public static int rlLoadShaderProgram(@Cast("const char*") + org.bytedeco.javacpp.BytePointer vsCode, + @Cast("const char*") + org.bytedeco.javacpp.BytePointer fsCode)
    +
    +
  • +
  • +
    +

    rlLoadShaderProgram

    +
    @Cast("unsigned int") +public static int rlLoadShaderProgram(String vsCode, + String fsCode)
    +
    +
  • +
  • +
    +

    rlLoadShaderProgramEx

    +
    @Cast("unsigned int") +public static int rlLoadShaderProgramEx(@Cast("unsigned int") + int vsId, @Cast("unsigned int") - int fShaderId)
    -
  • + int fsId)
    + + +
  • +
    +

    rlLoadShaderProgramCompute

    +
    @Cast("unsigned int") +public static int rlLoadShaderProgramCompute(@Cast("unsigned int") + int csId)
    +
    +
  • +
  • +
    +

    rlUnloadShader

    +
    public static void rlUnloadShader(@Cast("unsigned int") + int id)
  • rlUnloadShaderProgram

    -
    public static void rlUnloadShaderProgram(@Cast("unsigned int") int id)
    -
  • rlGetLocationUniform

    -
    public static int rlGetLocationUniform(@Cast("unsigned int") - int shaderId, + int id, @Cast("const char*") org.bytedeco.javacpp.BytePointer uniformName)
    -
  • rlGetLocationUniform

    -
    public static int rlGetLocationUniform(@Cast("unsigned int") - int shaderId, - String uniformName)
    -
    + int id, + String uniformName)
  • rlGetLocationAttrib

    -
    public static int rlGetLocationAttrib(@Cast("unsigned int") - int shaderId, + int id, @Cast("const char*") org.bytedeco.javacpp.BytePointer attribName)
    -
  • rlGetLocationAttrib

    -
    public static int rlGetLocationAttrib(@Cast("unsigned int") - int shaderId, - String attribName)
    -
    + int id, + String attribName)
  • rlSetUniform

    -
    public static void rlSetUniform(int locIndex, @Const org.bytedeco.javacpp.Pointer value, int uniformType, int count)
    -
  • rlSetUniformMatrix

    -
    public static void rlSetUniformMatrix(int locIndex, @ByVal Raylib.Matrix mat)
    -
  • rlSetUniformMatrices

    -
    public static void rlSetUniformMatrices(int locIndex, @Const Raylib.Matrix mat, int count)
    -
  • rlSetUniformSampler

    -
    public static void rlSetUniformSampler(int locIndex, @Cast("unsigned int") int textureId)
    -
  • rlSetShader

    -
    public static void rlSetShader(@Cast("unsigned int") int id, org.bytedeco.javacpp.IntPointer locs)
    -
  • rlSetShader

    -
    public static void rlSetShader(@Cast("unsigned int") int id, - IntBuffer locs)
    -
    + IntBuffer locs)
  • rlSetShader

    -
    public static void rlSetShader(@Cast("unsigned int") int id, int[] locs)
    -
    -
    -
  • -
  • -
    -

    rlLoadComputeShaderProgram

    -
    -
    @Cast("unsigned int") -public static int rlLoadComputeShaderProgram(@Cast("unsigned int") - int shaderId)
    -
  • rlComputeShaderDispatch

    -
    public static void rlComputeShaderDispatch(@Cast("unsigned int") int groupX, @Cast("unsigned int") int groupY, @Cast("unsigned int") int groupZ)
    -
  • rlLoadShaderBuffer

    -
    @Cast("unsigned int") public static int rlLoadShaderBuffer(@Cast("unsigned int") int size, @Const org.bytedeco.javacpp.Pointer data, int usageHint)
    -
  • rlUnloadShaderBuffer

    -
    public static void rlUnloadShaderBuffer(@Cast("unsigned int") int ssboId)
    -
  • rlUpdateShaderBuffer

    -
    public static void rlUpdateShaderBuffer(@Cast("unsigned int") int id, @Const @@ -38190,24 +33376,20 @@

    rlUpdateShaderBuffer

    int dataSize, @Cast("unsigned int") int offset)
    -
  • rlBindShaderBuffer

    -
    public static void rlBindShaderBuffer(@Cast("unsigned int") int id, @Cast("unsigned int") int index)
    -
  • rlReadShaderBuffer

    -
    public static void rlReadShaderBuffer(@Cast("unsigned int") int id, org.bytedeco.javacpp.Pointer dest, @@ -38215,13 +33397,11 @@

    rlReadShaderBuffer

    int count, @Cast("unsigned int") int offset)
    -
  • rlCopyShaderBuffer

    -
    public static void rlCopyShaderBuffer(@Cast("unsigned int") int destId, @Cast("unsigned int") @@ -38232,23 +33412,19 @@

    rlCopyShaderBuffer

    int srcOffset, @Cast("unsigned int") int count)
    -
  • rlGetShaderBufferSize

    -
    @Cast("unsigned int") public static int rlGetShaderBufferSize(@Cast("unsigned int") int id)
    -
  • rlBindImageTexture

    -
    public static void rlBindImageTexture(@Cast("unsigned int") int id, @Cast("unsigned int") @@ -38256,473 +33432,383 @@

    rlBindImageTexture

    int format, @Cast("bool") boolean readonly)
    -
  • rlGetMatrixModelview

    -
    @ByVal public static Raylib.Matrix rlGetMatrixModelview()
    -
  • rlGetMatrixProjection

    -
    @ByVal public static Raylib.Matrix rlGetMatrixProjection()
    -
  • rlGetMatrixTransform

    -
    @ByVal public static Raylib.Matrix rlGetMatrixTransform()
    -
  • rlGetMatrixProjectionStereo

    -
    @ByVal public static Raylib.Matrix rlGetMatrixProjectionStereo(int eye)
    -
  • rlGetMatrixViewOffsetStereo

    -
    @ByVal public static Raylib.Matrix rlGetMatrixViewOffsetStereo(int eye)
    -
  • rlSetMatrixProjection

    -
    public static void rlSetMatrixProjection(@ByVal Raylib.Matrix proj)
    -
  • rlSetMatrixModelview

    -
    public static void rlSetMatrixModelview(@ByVal Raylib.Matrix view)
    -
  • rlSetMatrixProjectionStereo

    -
    public static void rlSetMatrixProjectionStereo(@ByVal Raylib.Matrix right, @ByVal Raylib.Matrix left)
    -
  • rlSetMatrixViewOffsetStereo

    -
    public static void rlSetMatrixViewOffsetStereo(@ByVal Raylib.Matrix right, @ByVal Raylib.Matrix left)
    -
  • rlLoadDrawCube

    -
    public static void rlLoadDrawCube()
    -
  • rlLoadDrawQuad

    -
    public static void rlLoadDrawQuad()
    -
  • Clamp

    -
    public static float Clamp(float value, float min, float max)
    -
  • Lerp

    -
    public static float Lerp(float start, float end, float amount)
    -
  • Normalize

    -
    public static float Normalize(float value, float start, float end)
    -
  • Remap

    -
    public static float Remap(float value, float inputStart, float inputEnd, float outputStart, float outputEnd)
    -
  • Wrap

    -
    public static float Wrap(float value, float min, float max)
    -
  • FloatEquals

    -
    public static int FloatEquals(float x, float y)
    -
  • Vector2Zero

    -
    @ByVal public static Raylib.Vector2 Vector2Zero()
    -
  • Vector2One

    -
    @ByVal public static Raylib.Vector2 Vector2One()
    -
  • Vector2Add

    -
    @ByVal public static Raylib.Vector2 Vector2Add(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2AddValue

    -
    @ByVal public static Raylib.Vector2 Vector2AddValue(@ByVal Raylib.Vector2 v, float add)
    -
  • Vector2Subtract

    -
    @ByVal public static Raylib.Vector2 Vector2Subtract(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2SubtractValue

    -
    @ByVal public static Raylib.Vector2 Vector2SubtractValue(@ByVal Raylib.Vector2 v, float sub)
    -
  • Vector2Length

    -
    public static float Vector2Length(@ByVal Raylib.Vector2 v)
    -
  • Vector2LengthSqr

    -
    public static float Vector2LengthSqr(@ByVal Raylib.Vector2 v)
    -
  • Vector2DotProduct

    -
    public static float Vector2DotProduct(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2CrossProduct

    -
    public static float Vector2CrossProduct(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2Distance

    -
    public static float Vector2Distance(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2DistanceSqr

    -
    public static float Vector2DistanceSqr(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2Angle

    -
    public static float Vector2Angle(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2LineAngle

    -
    public static float Vector2LineAngle(@ByVal Raylib.Vector2 start, @ByVal Raylib.Vector2 end)
    -
  • Vector2Scale

    -
    @ByVal public static Raylib.Vector2 Vector2Scale(@ByVal Raylib.Vector2 v, float scale)
    -
  • Vector2Multiply

    -
    @ByVal public static Raylib.Vector2 Vector2Multiply(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2Negate

    -
    @ByVal public static Raylib.Vector2 Vector2Negate(@ByVal Raylib.Vector2 v)
    -
  • Vector2Divide

    -
    @ByVal public static Raylib.Vector2 Vector2Divide(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2Normalize

    -
    @ByVal public static Raylib.Vector2 Vector2Normalize(@ByVal Raylib.Vector2 v)
    -
  • Vector2Transform

    -
    @ByVal public static Raylib.Vector2 Vector2Transform(@ByVal Raylib.Vector2 v, @ByVal Raylib.Matrix mat)
    -
  • Vector2Lerp

    -
    @ByVal public static Raylib.Vector2 Vector2Lerp(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2, float amount)
    -
  • Vector2Reflect

    -
    @ByVal public static Raylib.Vector2 Vector2Reflect(@ByVal Raylib.Vector2 v, @ByVal Raylib.Vector2 normal)
    -
  • Vector2Min

    -
    @ByVal public static Raylib.Vector2 Vector2Min(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2Max

    -
    @ByVal public static Raylib.Vector2 Vector2Max(@ByVal Raylib.Vector2 v1, @ByVal Raylib.Vector2 v2)
    -
  • Vector2Rotate

    -
    @ByVal public static Raylib.Vector2 Vector2Rotate(@ByVal Raylib.Vector2 v, float angle)
    -
  • Vector2MoveTowards

    -
    @ByVal public static Raylib.Vector2 Vector2MoveTowards(@ByVal Raylib.Vector2 v, @ByVal Raylib.Vector2 target, float maxDistance)
    -
  • Vector2Invert

    -
    @ByVal public static Raylib.Vector2 Vector2Invert(@ByVal Raylib.Vector2 v)
    -
  • Vector2Clamp

    -
    @ByVal public static Raylib.Vector2 Vector2Clamp(@ByVal Raylib.Vector2 v, @@ -38730,348 +33816,286 @@

    Vector2Clamp

    Raylib.Vector2 min, @ByVal Raylib.Vector2 max)
    -
  • Vector2ClampValue

    -
    @ByVal public static Raylib.Vector2 Vector2ClampValue(@ByVal Raylib.Vector2 v, float min, float max)
    -
  • Vector2Equals

    -
    public static int Vector2Equals(@ByVal Raylib.Vector2 p, @ByVal Raylib.Vector2 q)
    -
  • Vector2Refract

    -
    @ByVal public static Raylib.Vector2 Vector2Refract(@ByVal Raylib.Vector2 v, @ByVal Raylib.Vector2 n, float r)
    -
  • Vector3Zero

    -
    @ByVal public static Raylib.Vector3 Vector3Zero()
    -
  • Vector3One

    -
    @ByVal public static Raylib.Vector3 Vector3One()
    -
  • Vector3Add

    -
    @ByVal public static Raylib.Vector3 Vector3Add(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3AddValue

    -
    @ByVal public static Raylib.Vector3 Vector3AddValue(@ByVal Raylib.Vector3 v, float add)
    -
  • Vector3Subtract

    -
    @ByVal public static Raylib.Vector3 Vector3Subtract(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3SubtractValue

    -
    @ByVal public static Raylib.Vector3 Vector3SubtractValue(@ByVal Raylib.Vector3 v, float sub)
    -
  • Vector3Scale

    -
    @ByVal public static Raylib.Vector3 Vector3Scale(@ByVal Raylib.Vector3 v, float scalar)
    -
  • Vector3Multiply

    -
    @ByVal public static Raylib.Vector3 Vector3Multiply(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3CrossProduct

    -
    @ByVal public static Raylib.Vector3 Vector3CrossProduct(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Perpendicular

    -
    @ByVal public static Raylib.Vector3 Vector3Perpendicular(@ByVal Raylib.Vector3 v)
    -
  • Vector3Length

    -
    public static float Vector3Length(@Const @ByVal Raylib.Vector3 v)
    -
  • Vector3LengthSqr

    -
    public static float Vector3LengthSqr(@Const @ByVal Raylib.Vector3 v)
    -
  • Vector3DotProduct

    -
    public static float Vector3DotProduct(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Distance

    -
    public static float Vector3Distance(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3DistanceSqr

    -
    public static float Vector3DistanceSqr(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Angle

    -
    public static float Vector3Angle(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Negate

    -
    @ByVal public static Raylib.Vector3 Vector3Negate(@ByVal Raylib.Vector3 v)
    -
  • Vector3Divide

    -
    @ByVal public static Raylib.Vector3 Vector3Divide(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Normalize

    -
    @ByVal public static Raylib.Vector3 Vector3Normalize(@ByVal Raylib.Vector3 v)
    -
  • Vector3Project

    -
    @ByVal public static Raylib.Vector3 Vector3Project(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Reject

    -
    @ByVal public static Raylib.Vector3 Vector3Reject(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3OrthoNormalize

    -
    public static void Vector3OrthoNormalize(Raylib.Vector3 v1, Raylib.Vector3 v2)
    -
  • Vector3Transform

    -
    @ByVal public static Raylib.Vector3 Vector3Transform(@ByVal Raylib.Vector3 v, @ByVal Raylib.Matrix mat)
    -
  • Vector3RotateByQuaternion

    -
    @ByVal public static Raylib.Vector3 Vector3RotateByQuaternion(@ByVal Raylib.Vector3 v, @ByVal @Cast("Quaternion*") Raylib.Vector4 q)
    -
  • Vector3RotateByAxisAngle

    -
    @ByVal public static Raylib.Vector3 Vector3RotateByAxisAngle(@ByVal Raylib.Vector3 v, @ByVal Raylib.Vector3 axis, float angle)
    -
  • Vector3MoveTowards

    -
    @ByVal public static Raylib.Vector3 Vector3MoveTowards(@ByVal Raylib.Vector3 v, @ByVal Raylib.Vector3 target, float maxDistance)
    -
  • Vector3Lerp

    -
    @ByVal public static Raylib.Vector3 Vector3Lerp(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2, float amount)
    -
  • Vector3CubicHermite

    -
    @ByVal public static Raylib.Vector3 Vector3CubicHermite(@ByVal Raylib.Vector3 v1, @@ -39082,49 +34106,41 @@

    Vector3CubicHermite

    @ByVal Raylib.Vector3 tangent2, float amount)
    -
  • Vector3Reflect

    -
    @ByVal public static Raylib.Vector3 Vector3Reflect(@ByVal Raylib.Vector3 v, @ByVal Raylib.Vector3 normal)
    -
  • Vector3Min

    -
    @ByVal public static Raylib.Vector3 Vector3Min(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Max

    -
    @ByVal public static Raylib.Vector3 Vector3Max(@ByVal Raylib.Vector3 v1, @ByVal Raylib.Vector3 v2)
    -
  • Vector3Barycenter

    -
    @ByVal public static Raylib.Vector3 Vector3Barycenter(@ByVal Raylib.Vector3 p, @@ -39134,13 +34150,11 @@

    Vector3Barycenter

    Raylib.Vector3 b, @ByVal Raylib.Vector3 c)
    -
  • Vector3Unproject

    -
    @ByVal public static Raylib.Vector3 Vector3Unproject(@ByVal Raylib.Vector3 source, @@ -39148,33 +34162,27 @@

    Vector3Unproject

    Raylib.Matrix projection, @ByVal Raylib.Matrix view)
    -
  • Vector3ToFloatV

    -
    @ByVal public static Raylib.float3 Vector3ToFloatV(@ByVal Raylib.Vector3 v)
    -
  • Vector3Invert

    -
    @ByVal public static Raylib.Vector3 Vector3Invert(@ByVal Raylib.Vector3 v)
    -
  • Vector3Clamp

    -
    @ByVal public static Raylib.Vector3 Vector3Clamp(@ByVal Raylib.Vector3 v, @@ -39182,453 +34190,378 @@

    Vector3Clamp

    Raylib.Vector3 min, @ByVal Raylib.Vector3 max)
    -
  • Vector3ClampValue

    -
    @ByVal public static Raylib.Vector3 Vector3ClampValue(@ByVal Raylib.Vector3 v, float min, float max)
    -
  • Vector3Equals

    -
    public static int Vector3Equals(@ByVal Raylib.Vector3 p, @ByVal Raylib.Vector3 q)
    -
  • Vector3Refract

    -
    @ByVal public static Raylib.Vector3 Vector3Refract(@ByVal Raylib.Vector3 v, @ByVal Raylib.Vector3 n, float r)
    -
  • Vector4Zero

    -
    @ByVal public static Raylib.Vector4 Vector4Zero()
    -
  • Vector4One

    -
    @ByVal public static Raylib.Vector4 Vector4One()
    -
  • Vector4Add

    -
    @ByVal public static Raylib.Vector4 Vector4Add(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4AddValue

    -
    @ByVal public static Raylib.Vector4 Vector4AddValue(@ByVal Raylib.Vector4 v, float add)
    -
  • Vector4Subtract

    -
    @ByVal public static Raylib.Vector4 Vector4Subtract(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4SubtractValue

    -
    @ByVal public static Raylib.Vector4 Vector4SubtractValue(@ByVal Raylib.Vector4 v, float add)
    -
  • Vector4Length

    -
    public static float Vector4Length(@ByVal Raylib.Vector4 v)
    -
  • Vector4LengthSqr

    -
    public static float Vector4LengthSqr(@ByVal Raylib.Vector4 v)
    -
  • Vector4DotProduct

    -
    public static float Vector4DotProduct(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4Distance

    -
    public static float Vector4Distance(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4DistanceSqr

    -
    public static float Vector4DistanceSqr(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4Scale

    -
    @ByVal public static Raylib.Vector4 Vector4Scale(@ByVal Raylib.Vector4 v, float scale)
    -
  • Vector4Multiply

    -
    @ByVal public static Raylib.Vector4 Vector4Multiply(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4Negate

    -
    @ByVal public static Raylib.Vector4 Vector4Negate(@ByVal Raylib.Vector4 v)
    -
  • Vector4Divide

    -
    @ByVal public static Raylib.Vector4 Vector4Divide(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4Normalize

    -
    @ByVal public static Raylib.Vector4 Vector4Normalize(@ByVal Raylib.Vector4 v)
    -
  • Vector4Min

    -
    @ByVal public static Raylib.Vector4 Vector4Min(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4Max

    -
    @ByVal public static Raylib.Vector4 Vector4Max(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2)
    -
  • Vector4Lerp

    -
    @ByVal public static Raylib.Vector4 Vector4Lerp(@ByVal Raylib.Vector4 v1, @ByVal Raylib.Vector4 v2, float amount)
    -
  • Vector4MoveTowards

    -
    @ByVal public static Raylib.Vector4 Vector4MoveTowards(@ByVal Raylib.Vector4 v, @ByVal Raylib.Vector4 target, float maxDistance)
    -
  • Vector4Invert

    -
    @ByVal public static Raylib.Vector4 Vector4Invert(@ByVal Raylib.Vector4 v)
    -
  • Vector4Equals

    -
    public static int Vector4Equals(@ByVal Raylib.Vector4 p, @ByVal Raylib.Vector4 q)
    -
  • MatrixDeterminant

    -
    public static float MatrixDeterminant(@ByVal Raylib.Matrix mat)
    -
  • MatrixTrace

    -
    public static float MatrixTrace(@ByVal Raylib.Matrix mat)
    -
  • MatrixTranspose

    -
    @ByVal public static Raylib.Matrix MatrixTranspose(@ByVal Raylib.Matrix mat)
    -
  • MatrixInvert

    -
    @ByVal public static Raylib.Matrix MatrixInvert(@ByVal Raylib.Matrix mat)
    -
  • MatrixIdentity

    -
    @ByVal public static Raylib.Matrix MatrixIdentity()
    -
  • MatrixAdd

    -
    @ByVal public static Raylib.Matrix MatrixAdd(@ByVal Raylib.Matrix left, @ByVal Raylib.Matrix right)
    -
  • MatrixSubtract

    -
    @ByVal public static Raylib.Matrix MatrixSubtract(@ByVal Raylib.Matrix left, @ByVal Raylib.Matrix right)
    -
  • MatrixMultiply

    -
    @ByVal public static Raylib.Matrix MatrixMultiply(@ByVal Raylib.Matrix left, @ByVal Raylib.Matrix right)
    -
    +
    +
  • +
  • +
    +

    MatrixMultiplyValue

    +
    @ByVal +public static Raylib.Matrix MatrixMultiplyValue(@ByVal + Raylib.Matrix left, + float value)
  • MatrixTranslate

    -
    @ByVal public static Raylib.Matrix MatrixTranslate(float x, float y, float z)
    -
  • MatrixRotate

    -
    @ByVal public static Raylib.Matrix MatrixRotate(@ByVal Raylib.Vector3 axis, float angle)
    -
  • MatrixRotateX

    -
    @ByVal public static Raylib.Matrix MatrixRotateX(float angle)
    -
  • MatrixRotateY

    -
    @ByVal public static Raylib.Matrix MatrixRotateY(float angle)
    -
  • MatrixRotateZ

    -
    @ByVal public static Raylib.Matrix MatrixRotateZ(float angle)
    -
  • MatrixRotateXYZ

    -
    @ByVal public static Raylib.Matrix MatrixRotateXYZ(@ByVal Raylib.Vector3 angle)
    -
  • MatrixRotateZYX

    -
    @ByVal public static Raylib.Matrix MatrixRotateZYX(@ByVal Raylib.Vector3 angle)
    -
  • MatrixScale

    -
    @ByVal public static Raylib.Matrix MatrixScale(float x, float y, float z)
    -
  • MatrixFrustum

    -
    @ByVal public static Raylib.Matrix MatrixFrustum(double left, double right, @@ -39636,25 +34569,21 @@

    MatrixFrustum

    double top, double nearPlane, double farPlane)
    -
  • MatrixPerspective

    -
    @ByVal public static Raylib.Matrix MatrixPerspective(double fovY, double aspect, double nearPlane, double farPlane)
    -
  • MatrixOrtho

    -
    @ByVal public static Raylib.Matrix MatrixOrtho(double left, double right, @@ -39662,13 +34591,11 @@

    MatrixOrtho

    double top, double nearPlane, double farPlane)
    -
  • MatrixLookAt

    -
    @ByVal public static Raylib.Matrix MatrixLookAt(@ByVal Raylib.Vector3 eye, @@ -39676,152 +34603,126 @@

    MatrixLookAt

    Raylib.Vector3 target, @ByVal Raylib.Vector3 up)
    -
  • MatrixToFloatV

    -
    @ByVal public static Raylib.float16 MatrixToFloatV(@ByVal Raylib.Matrix mat)
    -
  • QuaternionAdd

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionAdd(@ByVal @Cast("Quaternion*") Raylib.Vector4 q1, @ByVal @Cast("Quaternion*") Raylib.Vector4 q2)
    -
  • QuaternionAddValue

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionAddValue(@ByVal @Cast("Quaternion*") Raylib.Vector4 q, float add)
    -
  • QuaternionSubtract

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionSubtract(@ByVal @Cast("Quaternion*") Raylib.Vector4 q1, @ByVal @Cast("Quaternion*") Raylib.Vector4 q2)
    -
  • QuaternionSubtractValue

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionSubtractValue(@ByVal @Cast("Quaternion*") Raylib.Vector4 q, float sub)
    -
  • QuaternionIdentity

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionIdentity()
    -
  • QuaternionLength

    -
    public static float QuaternionLength(@ByVal @Cast("Quaternion*") Raylib.Vector4 q)
    -
  • QuaternionNormalize

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionNormalize(@ByVal @Cast("Quaternion*") Raylib.Vector4 q)
    -
  • QuaternionInvert

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionInvert(@ByVal @Cast("Quaternion*") Raylib.Vector4 q)
    -
  • QuaternionMultiply

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionMultiply(@ByVal @Cast("Quaternion*") Raylib.Vector4 q1, @ByVal @Cast("Quaternion*") Raylib.Vector4 q2)
    -
  • QuaternionScale

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionScale(@ByVal @Cast("Quaternion*") Raylib.Vector4 q, float mul)
    -
  • QuaternionDivide

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionDivide(@ByVal @Cast("Quaternion*") Raylib.Vector4 q1, @ByVal @Cast("Quaternion*") Raylib.Vector4 q2)
    -
  • QuaternionLerp

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionLerp(@ByVal @Cast("Quaternion*") @@ -39829,13 +34730,11 @@

    QuaternionLerp

    @ByVal @Cast("Quaternion*") Raylib.Vector4 q2, float amount)
    -
  • QuaternionNlerp

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionNlerp(@ByVal @Cast("Quaternion*") @@ -39843,13 +34742,11 @@

    QuaternionNlerp

    @ByVal @Cast("Quaternion*") Raylib.Vector4 q2, float amount)
    -
  • QuaternionSlerp

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionSlerp(@ByVal @Cast("Quaternion*") @@ -39857,13 +34754,11 @@

    QuaternionSlerp

    @ByVal @Cast("Quaternion*") Raylib.Vector4 q2, float amount)
    -
  • QuaternionCubicHermiteSpline

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionCubicHermiteSpline(@ByVal @Cast("Quaternion*") @@ -39875,208 +34770,184 @@

    QuaternionCubicHermiteSpline

    @ByVal @Cast("Quaternion*") Raylib.Vector4 inTangent2, float t)
    -
  • QuaternionFromVector3ToVector3

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionFromVector3ToVector3(@ByVal Raylib.Vector3 from, @ByVal Raylib.Vector3 to)
    -
  • QuaternionFromMatrix

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionFromMatrix(@ByVal Raylib.Matrix mat)
    -
  • QuaternionToMatrix

    -
    @ByVal public static Raylib.Matrix QuaternionToMatrix(@ByVal @Cast("Quaternion*") Raylib.Vector4 q)
    -
  • QuaternionFromAxisAngle

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionFromAxisAngle(@ByVal Raylib.Vector3 axis, float angle)
    -
  • QuaternionToAxisAngle

    -
    public static void QuaternionToAxisAngle(@ByVal @Cast("Quaternion*") Raylib.Vector4 q, Raylib.Vector3 outAxis, org.bytedeco.javacpp.FloatPointer outAngle)
    -
  • QuaternionToAxisAngle

    -
    public static void QuaternionToAxisAngle(@ByVal @Cast("Quaternion*") Raylib.Vector4 q, Raylib.Vector3 outAxis, - FloatBuffer outAngle)
    -
    + FloatBuffer outAngle)
  • QuaternionToAxisAngle

    -
    public static void QuaternionToAxisAngle(@ByVal @Cast("Quaternion*") Raylib.Vector4 q, Raylib.Vector3 outAxis, float[] outAngle)
    -
  • QuaternionFromEuler

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionFromEuler(float pitch, float yaw, float roll)
    -
  • QuaternionToEuler

    -
    @ByVal public static Raylib.Vector3 QuaternionToEuler(@ByVal @Cast("Quaternion*") Raylib.Vector4 q)
    -
  • QuaternionTransform

    -
    @ByVal @Cast("Quaternion*") public static Raylib.Vector4 QuaternionTransform(@ByVal @Cast("Quaternion*") Raylib.Vector4 q, @ByVal Raylib.Matrix mat)
    -
  • QuaternionEquals

    -
    public static int QuaternionEquals(@ByVal @Cast("Quaternion*") Raylib.Vector4 p, @ByVal @Cast("Quaternion*") Raylib.Vector4 q)
    -
    +
    +
  • +
  • +
    +

    MatrixCompose

    +
    @ByVal +public static Raylib.Matrix MatrixCompose(@ByVal + Raylib.Vector3 translation, + @ByVal @Cast("Quaternion*") + Raylib.Vector4 rotation, + @ByVal + Raylib.Vector3 scale)
  • MatrixDecompose

    -
    public static void MatrixDecompose(@ByVal Raylib.Matrix mat, Raylib.Vector3 translation, @Cast("Quaternion*") Raylib.Vector4 rotation, Raylib.Vector3 scale)
    -
  • Vector2Zeros

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector2 Vector2Zeros()
    -
  • Vector2Ones

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector2 Vector2Ones()
    -
  • Vector2UnitX

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector2 Vector2UnitX()
    -
  • Vector2UnitY

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector2 Vector2UnitY()
    -
  • add

    -
    @ByVal @Name("operator +") public static Raylib.Vector2 add(@Const @ByRef Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • addPut

    -
    @Const @ByRef @Name("operator +=") @@ -40084,26 +34955,22 @@

    addPut

    Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • subtract

    -
    @ByVal @Name("operator -") public static Raylib.Vector2 subtract(@Const @ByRef Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • subtractPut

    -
    @Const @ByRef @Name("operator -=") @@ -40111,51 +34978,43 @@

    subtractPut

    Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector2 multiply(@Const @ByRef Raylib.Vector2 lhs, float rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") public static Raylib.Vector2 multiplyPut(@ByRef Raylib.Vector2 lhs, float rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector2 multiply(@Const @ByRef Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") @@ -40163,26 +35022,22 @@

    multiplyPut

    Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector2 multiply(@Const @ByRef Raylib.Vector2 lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") @@ -40190,51 +35045,43 @@

    multiplyPut

    Raylib.Vector2 lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • divide

    -
    @ByVal @Name("operator /") public static Raylib.Vector2 divide(@Const @ByRef Raylib.Vector2 lhs, float rhs)
    -
  • dividePut

    -
    @Const @ByRef @Name("operator /=") public static Raylib.Vector2 dividePut(@ByRef Raylib.Vector2 lhs, float rhs)
    -
  • divide

    -
    @ByVal @Name("operator /") public static Raylib.Vector2 divide(@Const @ByRef Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • dividePut

    -
    @Const @ByRef @Name("operator /=") @@ -40242,107 +35089,89 @@

    dividePut

    Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • equals

    -
    @Cast("bool") @Name("operator ==") public static boolean equals(@Const @ByRef Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • notEquals

    -
    @Cast("bool") @Name("operator !=") public static boolean notEquals(@Const @ByRef Raylib.Vector2 lhs, @Const @ByRef Raylib.Vector2 rhs)
    -
  • Vector3Zeros

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector3 Vector3Zeros()
    -
  • Vector3Ones

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector3 Vector3Ones()
    -
  • Vector3UnitX

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector3 Vector3UnitX()
    -
  • Vector3UnitY

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector3 Vector3UnitY()
    -
  • Vector3UnitZ

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector3 Vector3UnitZ()
    -
  • add

    -
    @ByVal @Name("operator +") public static Raylib.Vector3 add(@Const @ByRef Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • addPut

    -
    @Const @ByRef @Name("operator +=") @@ -40350,26 +35179,22 @@

    addPut

    Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • subtract

    -
    @ByVal @Name("operator -") public static Raylib.Vector3 subtract(@Const @ByRef Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • subtractPut

    -
    @Const @ByRef @Name("operator -=") @@ -40377,51 +35202,43 @@

    subtractPut

    Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector3 multiply(@Const @ByRef Raylib.Vector3 lhs, float rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") public static Raylib.Vector3 multiplyPut(@ByRef Raylib.Vector3 lhs, float rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector3 multiply(@Const @ByRef Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") @@ -40429,26 +35246,22 @@

    multiplyPut

    Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector3 multiply(@Const @ByRef Raylib.Vector3 lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") @@ -40456,51 +35269,43 @@

    multiplyPut

    Raylib.Vector3 lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • divide

    -
    @ByVal @Name("operator /") public static Raylib.Vector3 divide(@Const @ByRef Raylib.Vector3 lhs, float rhs)
    -
  • dividePut

    -
    @Const @ByRef @Name("operator /=") public static Raylib.Vector3 dividePut(@ByRef Raylib.Vector3 lhs, float rhs)
    -
  • divide

    -
    @ByVal @Name("operator /") public static Raylib.Vector3 divide(@Const @ByRef Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • dividePut

    -
    @Const @ByRef @Name("operator /=") @@ -40508,118 +35313,98 @@

    dividePut

    Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • equals

    -
    @Cast("bool") @Name("operator ==") public static boolean equals(@Const @ByRef Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • notEquals

    -
    @Cast("bool") @Name("operator !=") public static boolean notEquals(@Const @ByRef Raylib.Vector3 lhs, @Const @ByRef Raylib.Vector3 rhs)
    -
  • Vector4Zeros

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector4 Vector4Zeros()
    -
  • Vector4Ones

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector4 Vector4Ones()
    -
  • Vector4UnitX

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector4 Vector4UnitX()
    -
  • Vector4UnitY

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector4 Vector4UnitY()
    -
  • Vector4UnitZ

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector4 Vector4UnitZ()
    -
  • Vector4UnitW

    -
    @MemberGetter @Const @ByRef public static Raylib.Vector4 Vector4UnitW()
    -
  • add

    -
    @ByVal @Name("operator +") public static Raylib.Vector4 add(@Const @ByRef Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • addPut

    -
    @Const @ByRef @Name("operator +=") @@ -40627,26 +35412,22 @@

    addPut

    Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • subtract

    -
    @ByVal @Name("operator -") public static Raylib.Vector4 subtract(@Const @ByRef Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • subtractPut

    -
    @Const @ByRef @Name("operator -=") @@ -40654,51 +35435,43 @@

    subtractPut

    Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector4 multiply(@Const @ByRef Raylib.Vector4 lhs, float rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") public static Raylib.Vector4 multiplyPut(@ByRef Raylib.Vector4 lhs, float rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Vector4 multiply(@Const @ByRef Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") @@ -40706,51 +35479,43 @@

    multiplyPut

    Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • divide

    -
    @ByVal @Name("operator /") public static Raylib.Vector4 divide(@Const @ByRef Raylib.Vector4 lhs, float rhs)
    -
  • dividePut

    -
    @Const @ByRef @Name("operator /=") public static Raylib.Vector4 dividePut(@ByRef Raylib.Vector4 lhs, float rhs)
    -
  • divide

    -
    @ByVal @Name("operator /") public static Raylib.Vector4 divide(@Const @ByRef Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • dividePut

    -
    @Const @ByRef @Name("operator /=") @@ -40758,124 +35523,104 @@

    dividePut

    Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • equals

    -
    @Cast("bool") @Name("operator ==") public static boolean equals(@Const @ByRef Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • notEquals

    -
    @Cast("bool") @Name("operator !=") public static boolean notEquals(@Const @ByRef Raylib.Vector4 lhs, @Const @ByRef Raylib.Vector4 rhs)
    -
  • QuaternionZeros

    -
    @MemberGetter @ByRef @Cast("const Quaternion*") public static Raylib.Vector4 QuaternionZeros()
    -
  • QuaternionOnes

    -
    @MemberGetter @ByRef @Cast("const Quaternion*") public static Raylib.Vector4 QuaternionOnes()
    -
  • QuaternionUnitX

    -
    @MemberGetter @ByRef @Cast("const Quaternion*") public static Raylib.Vector4 QuaternionUnitX()
    -
  • add

    -
    @ByVal @Cast("Quaternion*") @Name("operator +") public static Raylib.Vector4 add(@Cast("const Quaternion*") @ByRef Raylib.Vector4 lhs, float rhs)
    -
  • addPut

    -
    @Cast("const Quaternion*") @ByRef @Name("operator +=") public static Raylib.Vector4 addPut(@Cast("Quaternion*") @ByRef Raylib.Vector4 lhs, float rhs)
    -
  • subtract

    -
    @ByVal @Cast("Quaternion*") @Name("operator -") public static Raylib.Vector4 subtract(@Cast("const Quaternion*") @ByRef Raylib.Vector4 lhs, float rhs)
    -
  • subtractPut

    -
    @Cast("const Quaternion*") @ByRef @Name("operator -=") public static Raylib.Vector4 subtractPut(@Cast("Quaternion*") @ByRef Raylib.Vector4 lhs, float rhs)
    -
  • multiply

    -
    @ByVal @Cast("Quaternion*") @Name("operator *") @@ -40883,13 +35628,11 @@

    multiply

    Raylib.Vector4 lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • multiplyPut

    -
    @Cast("const Quaternion*") @ByRef @Name("operator *=") @@ -40897,26 +35640,31 @@

    multiplyPut

    Raylib.Vector4 lhs, @Const @ByRef Raylib.Matrix rhs)
    -
    +
    +
  • +
  • +
    +

    MatrixUnit

    +
    @MemberGetter +@Const +@ByRef +public static Raylib.Matrix MatrixUnit()
  • add

    -
    @ByVal @Name("operator +") public static Raylib.Matrix add(@Const @ByRef Raylib.Matrix lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • addPut

    -
    @Const @ByRef @Name("operator +=") @@ -40924,26 +35672,22 @@

    addPut

    Raylib.Matrix lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • subtract

    -
    @ByVal @Name("operator -") public static Raylib.Matrix subtract(@Const @ByRef Raylib.Matrix lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • subtractPut

    -
    @Const @ByRef @Name("operator -=") @@ -40951,26 +35695,22 @@

    subtractPut

    Raylib.Matrix lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • multiply

    -
    @ByVal @Name("operator *") public static Raylib.Matrix multiply(@Const @ByRef Raylib.Matrix lhs, @Const @ByRef Raylib.Matrix rhs)
    -
  • multiplyPut

    -
    @Const @ByRef @Name("operator *=") @@ -40978,556 +35718,516 @@

    multiplyPut

    Raylib.Matrix lhs, @Const @ByRef Raylib.Matrix rhs)
    -
    +
    +
  • +
  • +
    +

    multiply

    +
    @ByVal +@Name("operator *") +public static Raylib.Matrix multiply(@Const @ByRef + Raylib.Matrix lhs, + float value)
    +
    +
  • +
  • +
    +

    multiplyPut

    +
    @Const +@ByRef +@Name("operator *=") +public static Raylib.Matrix multiplyPut(@ByRef + Raylib.Matrix lhs, + float value)
  • InitPhysics

    -
    public static void InitPhysics()
    -
  • UpdatePhysics

    -
    public static void UpdatePhysics()
    -
  • ResetPhysics

    -
    public static void ResetPhysics()
    -
  • ClosePhysics

    -
    public static void ClosePhysics()
    -
  • SetPhysicsTimeStep

    -
    public static void SetPhysicsTimeStep(double delta)
    -
  • SetPhysicsGravity

    -
    public static void SetPhysicsGravity(float x, float y)
    -
  • CreatePhysicsBodyCircle

    -
    public static Raylib.PhysicsBody CreatePhysicsBodyCircle(@ByVal Raylib.Vector2 pos, float radius, float density)
    -
  • CreatePhysicsBodyRectangle

    -
    public static Raylib.PhysicsBody CreatePhysicsBodyRectangle(@ByVal Raylib.Vector2 pos, float width, float height, float density)
    -
  • CreatePhysicsBodyPolygon

    -
    public static Raylib.PhysicsBody CreatePhysicsBodyPolygon(@ByVal Raylib.Vector2 pos, float radius, int sides, float density)
    -
  • DestroyPhysicsBody

    -
    public static void DestroyPhysicsBody(Raylib.PhysicsBody body)
    -
  • PhysicsAddForce

    -
    public static void PhysicsAddForce(Raylib.PhysicsBody body, @ByVal Raylib.Vector2 force)
    -
  • PhysicsAddTorque

    -
    public static void PhysicsAddTorque(Raylib.PhysicsBody body, float amount)
    -
  • PhysicsShatter

    -
    public static void PhysicsShatter(Raylib.PhysicsBody body, @ByVal Raylib.Vector2 _position, float force)
    -
  • SetPhysicsBodyRotation

    -
    public static void SetPhysicsBodyRotation(Raylib.PhysicsBody body, float radians)
    -
  • GetPhysicsBody

    -
    public static Raylib.PhysicsBody GetPhysicsBody(int index)
    -
  • GetPhysicsBodiesCount

    -
    public static int GetPhysicsBodiesCount()
    -
  • GetPhysicsShapeType

    -
    public static int GetPhysicsShapeType(int index)
    -
  • GetPhysicsShapeVerticesCount

    -
    public static int GetPhysicsShapeVerticesCount(int index)
    -
  • GetPhysicsShapeVertex

    -
    @ByVal public static Raylib.Vector2 GetPhysicsShapeVertex(Raylib.PhysicsBody body, int vertex)
    -
    +
    +
  • +
  • +
    +

    GUI_BUTTON_DOWN

    +
    @MemberGetter +public static int GUI_BUTTON_DOWN()
    +
    +
  • +
  • +
    +

    GUI_BUTTON_DOWN_ALT

    +
    @MemberGetter +public static int GUI_BUTTON_DOWN_ALT()
    +
    +
  • +
  • +
    +

    GUI_BUTTON_PRESSED

    +
    @MemberGetter +public static int GUI_BUTTON_PRESSED()
    +
    +
  • +
  • +
    +

    GUI_BUTTON_RELEASED

    +
    @MemberGetter +public static int GUI_BUTTON_RELEASED()
    +
    +
  • +
  • +
    +

    GUI_SCROLL_DELTA

    +
    @MemberGetter +public static int GUI_SCROLL_DELTA()
    +
    +
  • +
  • +
    +

    GUI_INPUT_KEY

    +
    @MemberGetter +public static int GUI_INPUT_KEY()
  • GuiEnable

    -
    public static void GuiEnable()
    -
  • GuiDisable

    -
    public static void GuiDisable()
    -
  • GuiLock

    -
    public static void GuiLock()
    -
  • GuiUnlock

    -
    public static void GuiUnlock()
    -
  • GuiIsLocked

    -
    @Cast("bool") public static boolean GuiIsLocked()
    -
  • GuiSetAlpha

    -
    public static void GuiSetAlpha(float alpha)
    -
  • GuiSetState

    -
    public static void GuiSetState(int state)
    -
  • GuiGetState

    -
    public static int GuiGetState()
    -
  • GuiSetFont

    -
    public static void GuiSetFont(@ByVal Raylib.Font font)
    -
  • GuiGetFont

    -
    @ByVal public static Raylib.Font GuiGetFont()
    -
  • GuiSetStyle

    -
    public static void GuiSetStyle(int control, int property, int value)
    -
  • GuiGetStyle

    -
    public static int GuiGetStyle(int control, int property)
    -
  • GuiLoadStyle

    -
    public static void GuiLoadStyle(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName)
    -
  • GuiLoadStyle

    -
    -
    public static void GuiLoadStyle(String fileName)
    -
    +
    public static void GuiLoadStyle(String fileName)
  • GuiLoadStyleDefault

    -
    public static void GuiLoadStyleDefault()
    -
  • GuiEnableTooltip

    -
    public static void GuiEnableTooltip()
    -
  • GuiDisableTooltip

    -
    public static void GuiDisableTooltip()
    -
  • GuiSetTooltip

    -
    public static void GuiSetTooltip(@Cast("const char*") org.bytedeco.javacpp.BytePointer tooltip)
    -
  • GuiSetTooltip

    -
    -
    public static void GuiSetTooltip(String tooltip)
    -
    +
    public static void GuiSetTooltip(String tooltip)
  • GuiIconText

    -
    @Cast("const char*") public static org.bytedeco.javacpp.BytePointer GuiIconText(int iconId, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiIconText

    -
    -
    public static String GuiIconText(int iconId, - String text)
    -
    +
    public static String GuiIconText(int iconId, + String text)
  • GuiSetIconScale

    -
    public static void GuiSetIconScale(int scale)
    -
  • GuiGetIcons

    -
    @Cast("unsigned int*") public static org.bytedeco.javacpp.IntPointer GuiGetIcons()
    -
  • GuiLoadIcons

    -
    @Cast("char**") public static org.bytedeco.javacpp.PointerPointer GuiLoadIcons(@Cast("const char*") org.bytedeco.javacpp.BytePointer fileName, @Cast("bool") boolean loadIconsName)
    -
  • GuiLoadIcons

    -
    @Cast("char**") @ByPtrPtr -public static ByteBuffer GuiLoadIcons(String fileName, +public static ByteBuffer GuiLoadIcons(String fileName, @Cast("bool") boolean loadIconsName)
    -
  • GuiDrawIcon

    -
    public static void GuiDrawIcon(int iconId, int posX, int posY, int pixelSize, @ByVal Raylib.Color color)
    -
    +
    +
  • +
  • +
    +

    GuiGetTextWidth

    +
    public static int GuiGetTextWidth(@Cast("const char*") + org.bytedeco.javacpp.BytePointer text)
    +
    +
  • +
  • +
    +

    GuiGetTextWidth

    +
    public static int GuiGetTextWidth(String text)
  • GuiWindowBox

    -
    public static int GuiWindowBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer title)
    -
  • GuiWindowBox

    -
    public static int GuiWindowBox(@ByVal Raylib.Rectangle bounds, - String title)
    -
    + String title)
  • GuiGroupBox

    -
    public static int GuiGroupBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiGroupBox

    -
    public static int GuiGroupBox(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiLine

    -
    public static int GuiLine(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiLine

    -
    public static int GuiLine(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiPanel

    -
    public static int GuiPanel(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiPanel

    -
    public static int GuiPanel(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiTabBar

    -
    public static int GuiTabBar(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") + @Cast("char**") org.bytedeco.javacpp.PointerPointer text, int count, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiTabBar

    -
    public static int GuiTabBar(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") @ByPtrPtr + @Cast("char**") @ByPtrPtr org.bytedeco.javacpp.BytePointer text, int count, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiTabBar

    -
    public static int GuiTabBar(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") @ByPtrPtr - ByteBuffer text, + @Cast("char**") @ByPtrPtr + ByteBuffer text, int count, - IntBuffer active)
    -
    + IntBuffer active)
  • GuiTabBar

    -
    public static int GuiTabBar(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") @ByPtrPtr + @Cast("char**") @ByPtrPtr byte[] text, int count, int[] active)
    -
  • GuiScrollPanel

    -
    public static int GuiScrollPanel(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -41536,347 +36236,287 @@

    GuiScrollPanel

    Raylib.Rectangle content, Raylib.Vector2 scroll, Raylib.Rectangle view)
    -
  • GuiScrollPanel

    -
    public static int GuiScrollPanel(@ByVal Raylib.Rectangle bounds, - String text, + String text, @ByVal Raylib.Rectangle content, Raylib.Vector2 scroll, Raylib.Rectangle view)
    -
  • GuiLabel

    -
    public static int GuiLabel(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiLabel

    -
    public static int GuiLabel(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiButton

    -
    public static int GuiButton(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiButton

    -
    public static int GuiButton(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiLabelButton

    -
    public static int GuiLabelButton(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiLabelButton

    -
    public static int GuiLabelButton(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiToggle

    -
    public static int GuiToggle(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("bool*") org.bytedeco.javacpp.BoolPointer active)
    -
  • GuiToggle

    -
    public static int GuiToggle(@ByVal Raylib.Rectangle bounds, - String text, + String text, @Cast("bool*") boolean[] active)
    -
  • GuiToggleGroup

    -
    public static int GuiToggleGroup(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiToggleGroup

    -
    public static int GuiToggleGroup(@ByVal Raylib.Rectangle bounds, - String text, - IntBuffer active)
    -
    + String text, + IntBuffer active)
  • GuiToggleGroup

    -
    public static int GuiToggleGroup(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] active)
    -
  • GuiToggleGroup

    -
    public static int GuiToggleGroup(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiToggleGroup

    -
    public static int GuiToggleGroup(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer active)
    -
    + IntBuffer active)
  • GuiToggleGroup

    -
    public static int GuiToggleGroup(@ByVal Raylib.Rectangle bounds, - String text, + String text, int[] active)
    -
  • GuiToggleSlider

    -
    public static int GuiToggleSlider(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiToggleSlider

    -
    public static int GuiToggleSlider(@ByVal Raylib.Rectangle bounds, - String text, - IntBuffer active)
    -
    + String text, + IntBuffer active)
  • GuiToggleSlider

    -
    public static int GuiToggleSlider(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] active)
    -
  • GuiToggleSlider

    -
    public static int GuiToggleSlider(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiToggleSlider

    -
    public static int GuiToggleSlider(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer active)
    -
    + IntBuffer active)
  • GuiToggleSlider

    -
    public static int GuiToggleSlider(@ByVal Raylib.Rectangle bounds, - String text, + String text, int[] active)
    -
  • GuiCheckBox

    -
    public static int GuiCheckBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("bool*") org.bytedeco.javacpp.BoolPointer checked)
    -
  • GuiCheckBox

    -
    public static int GuiCheckBox(@ByVal Raylib.Rectangle bounds, - String text, + String text, @Cast("bool*") boolean[] checked)
    -
  • GuiComboBox

    -
    public static int GuiComboBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiComboBox

    -
    public static int GuiComboBox(@ByVal Raylib.Rectangle bounds, - String text, - IntBuffer active)
    -
    + String text, + IntBuffer active)
  • GuiComboBox

    -
    public static int GuiComboBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] active)
    -
  • GuiComboBox

    -
    public static int GuiComboBox(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiComboBox

    -
    public static int GuiComboBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer active)
    -
    + IntBuffer active)
  • GuiComboBox

    -
    public static int GuiComboBox(@ByVal Raylib.Rectangle bounds, - String text, + String text, int[] active)
    -
  • GuiDropdownBox

    -
    public static int GuiDropdownBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -41884,26 +36524,22 @@

    GuiDropdownBox

    org.bytedeco.javacpp.IntPointer active, @Cast("bool") boolean editMode)
    -
  • GuiDropdownBox

    -
    public static int GuiDropdownBox(@ByVal Raylib.Rectangle bounds, - String text, - IntBuffer active, + String text, + IntBuffer active, @Cast("bool") boolean editMode)
    -
  • GuiDropdownBox

    -
    public static int GuiDropdownBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -41911,53 +36547,45 @@

    GuiDropdownBox

    int[] active, @Cast("bool") boolean editMode)
    -
  • GuiDropdownBox

    -
    public static int GuiDropdownBox(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.IntPointer active, @Cast("bool") boolean editMode)
    -
  • GuiDropdownBox

    -
    public static int GuiDropdownBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer active, + IntBuffer active, @Cast("bool") boolean editMode)
    -
  • GuiDropdownBox

    -
    public static int GuiDropdownBox(@ByVal Raylib.Rectangle bounds, - String text, + String text, int[] active, @Cast("bool") boolean editMode)
    -
  • GuiSpinner

    -
    public static int GuiSpinner(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -41967,28 +36595,24 @@

    GuiSpinner

    int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiSpinner

    -
    public static int GuiSpinner(@ByVal Raylib.Rectangle bounds, - String text, - IntBuffer value, + String text, + IntBuffer value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiSpinner

    -
    public static int GuiSpinner(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -41998,59 +36622,51 @@

    GuiSpinner

    int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiSpinner

    -
    public static int GuiSpinner(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.IntPointer value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiSpinner

    -
    public static int GuiSpinner(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer value, + IntBuffer value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiSpinner

    -
    public static int GuiSpinner(@ByVal Raylib.Rectangle bounds, - String text, + String text, int[] value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiValueBox

    -
    public static int GuiValueBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42060,28 +36676,24 @@

    GuiValueBox

    int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiValueBox

    -
    public static int GuiValueBox(@ByVal Raylib.Rectangle bounds, - String text, - IntBuffer value, + String text, + IntBuffer value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiValueBox

    -
    public static int GuiValueBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42091,59 +36703,51 @@

    GuiValueBox

    int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiValueBox

    -
    public static int GuiValueBox(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.IntPointer value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiValueBox

    -
    public static int GuiValueBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer value, + IntBuffer value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiValueBox

    -
    public static int GuiValueBox(@ByVal Raylib.Rectangle bounds, - String text, + String text, int[] value, int minValue, int maxValue, @Cast("bool") boolean editMode)
    -
  • GuiValueBoxFloat

    -
    public static int GuiValueBoxFloat(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42153,28 +36757,24 @@

    GuiValueBoxFloat

    org.bytedeco.javacpp.FloatPointer value, @Cast("bool") boolean editMode)
    -
  • GuiValueBoxFloat

    -
    public static int GuiValueBoxFloat(@ByVal Raylib.Rectangle bounds, - String text, + String text, @Cast("char*") - ByteBuffer textValue, - FloatBuffer value, + ByteBuffer textValue, + FloatBuffer value, @Cast("bool") boolean editMode)
    -
  • GuiValueBoxFloat

    -
    public static int GuiValueBoxFloat(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42184,59 +36784,51 @@

    GuiValueBoxFloat

    float[] value, @Cast("bool") boolean editMode)
    -
  • GuiValueBoxFloat

    -
    public static int GuiValueBoxFloat(@ByVal Raylib.Rectangle bounds, - String text, + String text, @Cast("char*") org.bytedeco.javacpp.BytePointer textValue, org.bytedeco.javacpp.FloatPointer value, @Cast("bool") boolean editMode)
    -
  • GuiValueBoxFloat

    -
    public static int GuiValueBoxFloat(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, @Cast("char*") - ByteBuffer textValue, - FloatBuffer value, + ByteBuffer textValue, + FloatBuffer value, @Cast("bool") boolean editMode)
    -
  • GuiValueBoxFloat

    -
    public static int GuiValueBoxFloat(@ByVal Raylib.Rectangle bounds, - String text, + String text, @Cast("char*") byte[] textValue, float[] value, @Cast("bool") boolean editMode)
    -
  • GuiTextBox

    -
    public static int GuiTextBox(@ByVal Raylib.Rectangle bounds, @Cast("char*") @@ -42244,27 +36836,23 @@

    GuiTextBox

    int textSize, @Cast("bool") boolean editMode)
    -
  • GuiTextBox

    -
    public static int GuiTextBox(@ByVal Raylib.Rectangle bounds, @Cast("char*") - ByteBuffer text, + ByteBuffer text, int textSize, @Cast("bool") boolean editMode)
    -
  • GuiTextBox

    -
    public static int GuiTextBox(@ByVal Raylib.Rectangle bounds, @Cast("char*") @@ -42272,13 +36860,11 @@

    GuiTextBox

    int textSize, @Cast("bool") boolean editMode)
    -
  • GuiSlider

    -
    public static int GuiSlider(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42288,27 +36874,23 @@

    GuiSlider

    org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
    -
  • GuiSlider

    -
    public static int GuiSlider(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, - FloatBuffer value, + String textLeft, + String textRight, + FloatBuffer value, float minValue, float maxValue)
    -
  • GuiSlider

    -
    public static int GuiSlider(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42318,57 +36900,49 @@

    GuiSlider

    float[] value, float minValue, float maxValue)
    -
  • GuiSlider

    -
    public static int GuiSlider(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, + String textLeft, + String textRight, org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
    -
  • GuiSlider

    -
    public static int GuiSlider(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer textLeft, @Cast("const char*") org.bytedeco.javacpp.BytePointer textRight, - FloatBuffer value, + FloatBuffer value, float minValue, float maxValue)
    -
  • GuiSlider

    -
    public static int GuiSlider(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, + String textLeft, + String textRight, float[] value, float minValue, float maxValue)
    -
  • GuiSliderBar

    -
    public static int GuiSliderBar(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42378,27 +36952,23 @@

    GuiSliderBar

    org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
    -
  • GuiSliderBar

    -
    public static int GuiSliderBar(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, - FloatBuffer value, + String textLeft, + String textRight, + FloatBuffer value, float minValue, float maxValue)
    -
  • GuiSliderBar

    -
    public static int GuiSliderBar(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42408,57 +36978,49 @@

    GuiSliderBar

    float[] value, float minValue, float maxValue)
    -
  • GuiSliderBar

    -
    public static int GuiSliderBar(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, + String textLeft, + String textRight, org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
    -
  • GuiSliderBar

    -
    public static int GuiSliderBar(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer textLeft, @Cast("const char*") org.bytedeco.javacpp.BytePointer textRight, - FloatBuffer value, + FloatBuffer value, float minValue, float maxValue)
    -
  • GuiSliderBar

    -
    public static int GuiSliderBar(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, + String textLeft, + String textRight, float[] value, float minValue, float maxValue)
    -
  • GuiProgressBar

    -
    public static int GuiProgressBar(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42468,27 +37030,23 @@

    GuiProgressBar

    org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
    -
  • GuiProgressBar

    -
    public static int GuiProgressBar(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, - FloatBuffer value, + String textLeft, + String textRight, + FloatBuffer value, float minValue, float maxValue)
    -
  • GuiProgressBar

    -
    public static int GuiProgressBar(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42498,99 +37056,83 @@

    GuiProgressBar

    float[] value, float minValue, float maxValue)
    -
  • GuiProgressBar

    -
    public static int GuiProgressBar(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, + String textLeft, + String textRight, org.bytedeco.javacpp.FloatPointer value, float minValue, float maxValue)
    -
  • GuiProgressBar

    -
    public static int GuiProgressBar(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer textLeft, @Cast("const char*") org.bytedeco.javacpp.BytePointer textRight, - FloatBuffer value, + FloatBuffer value, float minValue, float maxValue)
    -
  • GuiProgressBar

    -
    public static int GuiProgressBar(@ByVal Raylib.Rectangle bounds, - String textLeft, - String textRight, + String textLeft, + String textRight, float[] value, float minValue, float maxValue)
    -
  • GuiStatusBar

    -
    public static int GuiStatusBar(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiStatusBar

    -
    public static int GuiStatusBar(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiDummyRec

    -
    public static int GuiDummyRec(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text)
    -
  • GuiDummyRec

    -
    public static int GuiDummyRec(@ByVal Raylib.Rectangle bounds, - String text)
    -
    + String text)
  • GuiGrid

    -
    public static int GuiGrid(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42598,161 +37140,137 @@

    GuiGrid

    float spacing, int subdivs, Raylib.Vector2 mouseCell)
    -
  • GuiGrid

    -
    public static int GuiGrid(@ByVal Raylib.Rectangle bounds, - String text, + String text, float spacing, int subdivs, Raylib.Vector2 mouseCell)
    -
  • GuiListView

    -
    public static int GuiListView(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.IntPointer scrollIndex, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiListView

    -
    public static int GuiListView(@ByVal Raylib.Rectangle bounds, - String text, - IntBuffer scrollIndex, - IntBuffer active)
    -
    + String text, + IntBuffer scrollIndex, + IntBuffer active)
  • GuiListView

    -
    public static int GuiListView(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, int[] scrollIndex, int[] active)
    -
  • GuiListView

    -
    public static int GuiListView(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.IntPointer scrollIndex, org.bytedeco.javacpp.IntPointer active)
    -
  • GuiListView

    -
    public static int GuiListView(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - IntBuffer scrollIndex, - IntBuffer active)
    -
    + IntBuffer scrollIndex, + IntBuffer active)
  • GuiListView

    -
    public static int GuiListView(@ByVal Raylib.Rectangle bounds, - String text, + String text, int[] scrollIndex, int[] active)
    -
  • GuiListViewEx

    -
    public static int GuiListViewEx(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") + @Cast("char**") org.bytedeco.javacpp.PointerPointer text, int count, org.bytedeco.javacpp.IntPointer scrollIndex, org.bytedeco.javacpp.IntPointer active, org.bytedeco.javacpp.IntPointer focus)
    -
  • GuiListViewEx

    -
    public static int GuiListViewEx(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") @ByPtrPtr + @Cast("char**") @ByPtrPtr org.bytedeco.javacpp.BytePointer text, int count, org.bytedeco.javacpp.IntPointer scrollIndex, org.bytedeco.javacpp.IntPointer active, org.bytedeco.javacpp.IntPointer focus)
    -
  • GuiListViewEx

    -
    public static int GuiListViewEx(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") @ByPtrPtr - ByteBuffer text, + @Cast("char**") @ByPtrPtr + ByteBuffer text, int count, - IntBuffer scrollIndex, - IntBuffer active, - IntBuffer focus)
    -
    + IntBuffer scrollIndex, + IntBuffer active, + IntBuffer focus)
  • GuiListViewEx

    -
    public static int GuiListViewEx(@ByVal Raylib.Rectangle bounds, - @Cast("const char**") @ByPtrPtr + @Cast("char**") @ByPtrPtr byte[] text, int count, int[] scrollIndex, int[] active, int[] focus)
    -
  • GuiMessageBox

    -
    public static int GuiMessageBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42761,25 +37279,21 @@

    GuiMessageBox

    org.bytedeco.javacpp.BytePointer message, @Cast("const char*") org.bytedeco.javacpp.BytePointer buttons)
    -
  • GuiMessageBox

    -
    public static int GuiMessageBox(@ByVal Raylib.Rectangle bounds, - String title, - String message, - String buttons)
    -
    + String title, + String message, + String buttons)
  • GuiTextInputBox

    -
    public static int GuiTextInputBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42793,30 +37307,26 @@

    GuiTextInputBox

    int textMaxSize, @Cast("bool*") org.bytedeco.javacpp.BoolPointer secretViewActive)
    -
  • GuiTextInputBox

    -
    public static int GuiTextInputBox(@ByVal Raylib.Rectangle bounds, - String title, - String message, - String buttons, + String title, + String message, + String buttons, @Cast("char*") - ByteBuffer text, + ByteBuffer text, int textMaxSize, @Cast("bool*") boolean[] secretViewActive)
    -
  • GuiTextInputBox

    -
    public static int GuiTextInputBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42830,30 +37340,26 @@

    GuiTextInputBox

    int textMaxSize, @Cast("bool*") org.bytedeco.javacpp.BoolPointer secretViewActive)
    -
  • GuiTextInputBox

    -
    public static int GuiTextInputBox(@ByVal Raylib.Rectangle bounds, - String title, - String message, - String buttons, + String title, + String message, + String buttons, @Cast("char*") org.bytedeco.javacpp.BytePointer text, int textMaxSize, @Cast("bool*") boolean[] secretViewActive)
    -
  • GuiTextInputBox

    -
    public static int GuiTextInputBox(@ByVal Raylib.Rectangle bounds, @Cast("const char*") @@ -42863,258 +37369,215 @@

    GuiTextInputBox

    @Cast("const char*") org.bytedeco.javacpp.BytePointer buttons, @Cast("char*") - ByteBuffer text, + ByteBuffer text, int textMaxSize, @Cast("bool*") org.bytedeco.javacpp.BoolPointer secretViewActive)
    -
  • GuiTextInputBox

    -
    public static int GuiTextInputBox(@ByVal Raylib.Rectangle bounds, - String title, - String message, - String buttons, + String title, + String message, + String buttons, @Cast("char*") byte[] text, int textMaxSize, @Cast("bool*") boolean[] secretViewActive)
    -
  • GuiColorPicker

    -
    public static int GuiColorPicker(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, Raylib.Color color)
    -
  • GuiColorPicker

    -
    public static int GuiColorPicker(@ByVal Raylib.Rectangle bounds, - String text, + String text, Raylib.Color color)
    -
  • GuiColorPanel

    -
    public static int GuiColorPanel(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, Raylib.Color color)
    -
  • GuiColorPanel

    -
    public static int GuiColorPanel(@ByVal Raylib.Rectangle bounds, - String text, + String text, Raylib.Color color)
    -
  • GuiColorBarAlpha

    -
    public static int GuiColorBarAlpha(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.FloatPointer alpha)
    -
  • GuiColorBarAlpha

    -
    public static int GuiColorBarAlpha(@ByVal Raylib.Rectangle bounds, - String text, - FloatBuffer alpha)
    -
    + String text, + FloatBuffer alpha)
  • GuiColorBarAlpha

    -
    public static int GuiColorBarAlpha(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, float[] alpha)
    -
  • GuiColorBarAlpha

    -
    public static int GuiColorBarAlpha(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.FloatPointer alpha)
    -
  • GuiColorBarAlpha

    -
    public static int GuiColorBarAlpha(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - FloatBuffer alpha)
    -
    + FloatBuffer alpha)
  • GuiColorBarAlpha

    -
    public static int GuiColorBarAlpha(@ByVal Raylib.Rectangle bounds, - String text, + String text, float[] alpha)
    -
  • GuiColorBarHue

    -
    public static int GuiColorBarHue(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, org.bytedeco.javacpp.FloatPointer value)
    -
  • GuiColorBarHue

    -
    public static int GuiColorBarHue(@ByVal Raylib.Rectangle bounds, - String text, - FloatBuffer value)
    -
    + String text, + FloatBuffer value)
  • GuiColorBarHue

    -
    public static int GuiColorBarHue(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, float[] value)
    -
  • GuiColorBarHue

    -
    public static int GuiColorBarHue(@ByVal Raylib.Rectangle bounds, - String text, + String text, org.bytedeco.javacpp.FloatPointer value)
    -
  • GuiColorBarHue

    -
    public static int GuiColorBarHue(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, - FloatBuffer value)
    -
    + FloatBuffer value)
  • GuiColorBarHue

    -
    public static int GuiColorBarHue(@ByVal Raylib.Rectangle bounds, - String text, + String text, float[] value)
    -
  • GuiColorPickerHSV

    -
    public static int GuiColorPickerHSV(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, Raylib.Vector3 colorHsv)
    -
  • GuiColorPickerHSV

    -
    public static int GuiColorPickerHSV(@ByVal Raylib.Rectangle bounds, - String text, + String text, Raylib.Vector3 colorHsv)
    -
  • GuiColorPanelHSV

    -
    public static int GuiColorPanelHSV(@ByVal Raylib.Rectangle bounds, @Cast("const char*") org.bytedeco.javacpp.BytePointer text, Raylib.Vector3 colorHsv)
    -
  • GuiColorPanelHSV

    -
    public static int GuiColorPanelHSV(@ByVal Raylib.Rectangle bounds, - String text, + String text, Raylib.Vector3 colorHsv)
    -
  • @@ -43125,5 +37588,6 @@

    GuiColorPanelHSV

    +
    diff --git a/doc/com/raylib/Raylib.rAudioBuffer.html b/doc/com/raylib/Raylib.rAudioBuffer.html index dcd504d..3a2b915 100644 --- a/doc/com/raylib/Raylib.rAudioBuffer.html +++ b/doc/com/raylib/Raylib.rAudioBuffer.html @@ -1,31 +1,30 @@ - + Raylib.rAudioBuffer - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.rAudioBuffer

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.rAudioBuffer
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -99,7 +103,6 @@

    Class Raylib.rAudioBuffer@Opaque public static class Raylib.rAudioBuffer extends org.bytedeco.javacpp.Pointer

    -
      @@ -108,7 +111,7 @@

      Class Raylib.rAudioBuffer

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
    @@ -148,8 +151,8 @@

    Method Summary

    Methods inherited from class org.bytedeco.javacpp.Pointer

    address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -164,19 +167,15 @@

    Constructor Details

  • rAudioBuffer

    -
    public rAudioBuffer()
    Empty constructor. Calls super((Pointer)null).
    -
  • rAudioBuffer

    -
    public rAudioBuffer(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -187,5 +186,6 @@

    rAudioBuffer

    +
    diff --git a/doc/com/raylib/Raylib.rAudioProcessor.html b/doc/com/raylib/Raylib.rAudioProcessor.html index 8c6a816..67d5900 100644 --- a/doc/com/raylib/Raylib.rAudioProcessor.html +++ b/doc/com/raylib/Raylib.rAudioProcessor.html @@ -1,31 +1,30 @@ - + Raylib.rAudioProcessor - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.rAudioProcessor

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.rAudioProcessor
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -99,7 +103,6 @@

    Class Raylib.rAudioProces
    @Opaque public static class Raylib.rAudioProcessor extends org.bytedeco.javacpp.Pointer
    -

      @@ -108,7 +111,7 @@

      Class Raylib.rAudioProces

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -148,8 +151,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -164,19 +167,15 @@

    Constructor Details

  • rAudioProcessor

    -
    public rAudioProcessor()
    Empty constructor. Calls super((Pointer)null).
    -
  • rAudioProcessor

    -
    public rAudioProcessor(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -187,5 +186,6 @@

    rAudioProcessor

    +
    diff --git a/doc/com/raylib/Raylib.rlDrawCall.html b/doc/com/raylib/Raylib.rlDrawCall.html index 0ee8b64..832c62c 100644 --- a/doc/com/raylib/Raylib.rlDrawCall.html +++ b/doc/com/raylib/Raylib.rlDrawCall.html @@ -1,31 +1,30 @@ - + Raylib.rlDrawCall - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.rlDrawCall

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.rlDrawCall
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -113,7 +102,6 @@

    Class Raylib.rlDrawCall


    public static class Raylib.rlDrawCall extends org.bytedeco.javacpp.Pointer
    -
      @@ -122,7 +110,7 @@

      Class Raylib.rlDrawCall

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -206,8 +194,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -222,28 +210,22 @@

    Constructor Details

  • rlDrawCall

    -
    public rlDrawCall()
    Default native constructor.
    -
  • rlDrawCall

    -
    public rlDrawCall(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • rlDrawCall

    -
    public rlDrawCall(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -257,90 +239,70 @@

    Method Details

  • position

    -
    public Raylib.rlDrawCall position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.rlDrawCall getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • mode

    -
    public int mode()
    -
  • mode

    -
    public Raylib.rlDrawCall mode(int setter)
    -
  • vertexCount

    -
    public int vertexCount()
    -
  • vertexCount

    -
    public Raylib.rlDrawCall vertexCount(int setter)
    -
  • vertexAlignment

    -
    public int vertexAlignment()
    -
  • vertexAlignment

    -
    public Raylib.rlDrawCall vertexAlignment(int setter)
    -
  • textureId

    -
    @Cast("unsigned int") public int textureId()
    -
  • textureId

    -
    public Raylib.rlDrawCall textureId(int setter)
    -
  • @@ -351,5 +313,6 @@

    textureId

    +
    diff --git a/doc/com/raylib/Raylib.rlRenderBatch.html b/doc/com/raylib/Raylib.rlRenderBatch.html index eae7641..99119e2 100644 --- a/doc/com/raylib/Raylib.rlRenderBatch.html +++ b/doc/com/raylib/Raylib.rlRenderBatch.html @@ -1,31 +1,30 @@ - + Raylib.rlRenderBatch - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.rlRenderBatch

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.rlRenderBatch
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -117,7 +102,6 @@

    Class Raylib.rlRenderBatch<
    public static class Raylib.rlRenderBatch extends org.bytedeco.javacpp.Pointer
    -

      @@ -126,7 +110,7 @@

      Class Raylib.rlRenderBatch<

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -222,8 +206,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -238,28 +222,22 @@

    Constructor Details

  • rlRenderBatch

    -
    public rlRenderBatch()
    Default native constructor.
    -
  • rlRenderBatch

    -
    public rlRenderBatch(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • rlRenderBatch

    -
    public rlRenderBatch(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -273,121 +251,93 @@

    Method Details

  • position

    -
    public Raylib.rlRenderBatch position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.rlRenderBatch getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • bufferCount

    -
    public int bufferCount()
    -
  • bufferCount

    -
    public Raylib.rlRenderBatch bufferCount(int setter)
    -
  • currentBuffer

    -
    public int currentBuffer()
    -
  • currentBuffer

    -
    public Raylib.rlRenderBatch currentBuffer(int setter)
    -
  • vertexBuffer

    -
    public Raylib.rlVertexBuffer vertexBuffer()
    -
  • vertexBuffer

    -
    public Raylib.rlRenderBatch vertexBuffer(Raylib.rlVertexBuffer setter)
    -
  • draws

    -
    public Raylib.rlDrawCall draws()
    -
  • draws

    -
    public Raylib.rlRenderBatch draws(Raylib.rlDrawCall setter)
    -
  • drawCounter

    -
    public int drawCounter()
    -
  • drawCounter

    -
    public Raylib.rlRenderBatch drawCounter(int setter)
    -
  • currentDepth

    -
    public float currentDepth()
    -
  • currentDepth

    -
    public Raylib.rlRenderBatch currentDepth(float setter)
    -
  • @@ -398,5 +348,6 @@

    currentDepth

    +
    diff --git a/doc/com/raylib/Raylib.rlVertexBuffer.html b/doc/com/raylib/Raylib.rlVertexBuffer.html index f87b950..5b30284 100644 --- a/doc/com/raylib/Raylib.rlVertexBuffer.html +++ b/doc/com/raylib/Raylib.rlVertexBuffer.html @@ -1,31 +1,30 @@ - + Raylib.rlVertexBuffer - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Raylib.rlVertexBuffer

    -
    java.lang.Object +
    java.lang.Object
    org.bytedeco.javacpp.Pointer
    com.raylib.Raylib.rlVertexBuffer
    -
    All Implemented Interfaces:
    -
    AutoCloseable
    +
    AutoCloseable
    Enclosing class:
    @@ -122,7 +102,6 @@

    Class Raylib.rlVertexBuffe
    public static class Raylib.rlVertexBuffer extends org.bytedeco.javacpp.Pointer
    -

      @@ -131,7 +110,7 @@

      Class Raylib.rlVertexBuffe

      Nested Class Summary

      -

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      +

      Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer

      org.bytedeco.javacpp.Pointer.CustomDeallocator, org.bytedeco.javacpp.Pointer.Deallocator, org.bytedeco.javacpp.Pointer.NativeDeallocator, org.bytedeco.javacpp.Pointer.ReferenceCounter
      @@ -243,8 +222,8 @@

      Method Summary

      Methods inherited from class org.bytedeco.javacpp.Pointer

      address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
    -

    Methods inherited from class java.lang.Object

    -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -259,28 +238,22 @@

    Constructor Details

  • rlVertexBuffer

    -
    public rlVertexBuffer()
    Default native constructor.
    -
  • rlVertexBuffer

    -
    public rlVertexBuffer(long size)
    Native array allocator. Access with Pointer.position(long).
    -
  • rlVertexBuffer

    -
    public rlVertexBuffer(org.bytedeco.javacpp.Pointer p)
    Pointer cast constructor. Invokes Pointer(Pointer).
    -
  • @@ -294,168 +267,130 @@

    Method Details

  • position

    -
    public Raylib.rlVertexBuffer position(long position)
    Overrides:
    position in class org.bytedeco.javacpp.Pointer
    -
  • getPointer

    -
    public Raylib.rlVertexBuffer getPointer(long i)
    Overrides:
    getPointer in class org.bytedeco.javacpp.Pointer
    -
  • elementCount

    -
    public int elementCount()
    -
  • elementCount

    -
    public Raylib.rlVertexBuffer elementCount(int setter)
    -
  • vertices

    -
    public org.bytedeco.javacpp.FloatPointer vertices()
    -
  • vertices

    -
    public Raylib.rlVertexBuffer vertices(org.bytedeco.javacpp.FloatPointer setter)
    -
  • texcoords

    -
    public org.bytedeco.javacpp.FloatPointer texcoords()
    -
  • texcoords

    -
    public Raylib.rlVertexBuffer texcoords(org.bytedeco.javacpp.FloatPointer setter)
    -
  • normals

    -
    public org.bytedeco.javacpp.FloatPointer normals()
    -
  • normals

    -
    public Raylib.rlVertexBuffer normals(org.bytedeco.javacpp.FloatPointer setter)
    -
  • colors

    -
    @Cast("unsigned char*") public org.bytedeco.javacpp.BytePointer colors()
    -
  • colors

    -
    public Raylib.rlVertexBuffer colors(org.bytedeco.javacpp.BytePointer setter)
    -
  • indices

    -
    @Cast("unsigned int*") public org.bytedeco.javacpp.IntPointer indices()
    -
  • indices

    -
    public Raylib.rlVertexBuffer indices(org.bytedeco.javacpp.IntPointer setter)
    -
  • vaoId

    -
    @Cast("unsigned int") public int vaoId()
    -
  • vaoId

    -
    public Raylib.rlVertexBuffer vaoId(int setter)
    -
  • vboId

    -
    @Cast("unsigned int") public int vboId(int i)
    -
  • vboId

    -
    public Raylib.rlVertexBuffer vboId(int i, int setter)
    -
  • vboId

    -
    @MemberGetter @Cast("unsigned int*") public org.bytedeco.javacpp.IntPointer vboId()
    -
  • @@ -466,5 +401,6 @@

    vboId

    +
    diff --git a/doc/com/raylib/RaylibConfig.html b/doc/com/raylib/RaylibConfig.html index df2d6f5..6458436 100644 --- a/doc/com/raylib/RaylibConfig.html +++ b/doc/com/raylib/RaylibConfig.html @@ -1,31 +1,30 @@ - + RaylibConfig - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class RaylibConfig

    -
    java.lang.Object +
    java.lang.Object
    com.raylib.RaylibConfig
    -
    All Implemented Interfaces:
    org.bytedeco.javacpp.tools.InfoMapper
    @@ -97,9 +100,8 @@

    Class RaylibConfig


    @Properties(value={@Platform(include={"raylib.h","rlgl.h","raymath.h","physac.h","raygui.h"},compiler={"!default","foo"}),@Platform(value="windows-x86_64",link={"winmm","OpenGL32","user32","shell32","gdi32","raylib"}),@Platform(value="windows-x86",link={"winmm","OpenGL32","user32","shell32","gdi32","raylib"}),@Platform(value="macosx-x86_64",link="raylib"),@Platform(value="macosx-arm64",link="raylib"),@Platform(value="linux-x86_64",linkpath="/usr/lib/x86_64-linux-gnu",link={"X11","raylib"}),@Platform(value="linux-x86",linkpath="/usr/lib/i386-linux-gnu",link={"X11","raylib"}),@Platform(value="linux-arm64",linkpath="/usr/lib/aarch64-linux-gnu/",link={"X11","raylib"}),@Platform(value="linux-arm",linkpath="/usr/lib/arm-linux-gnueabihf/",link={"X11","raylib"})},target="com.raylib.Raylib") public class RaylibConfig -extends Object +extends Object implements org.bytedeco.javacpp.tools.InfoMapper
    -
      @@ -134,8 +136,8 @@

      Method Summary

    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    @@ -150,9 +152,7 @@

    Constructor Details

  • RaylibConfig

    -
    public RaylibConfig()
    -
  • @@ -166,13 +166,11 @@

    Method Details

  • map

    -
    public void map(org.bytedeco.javacpp.tools.InfoMap infoMap)
    Specified by:
    map in interface org.bytedeco.javacpp.tools.InfoMapper
    -
  • @@ -183,5 +181,6 @@

    map

    +
    diff --git a/doc/com/raylib/Test.html b/doc/com/raylib/Test.html index 98e2056..80abc01 100644 --- a/doc/com/raylib/Test.html +++ b/doc/com/raylib/Test.html @@ -1,31 +1,30 @@ - + Test - + - - - - - - + + + + + + - -
    +
    + -
    - +
    +
    Package com.raylib

    Class Test

    -
    java.lang.Object +
    java.lang.Object
    com.raylib.Test
    -

    public class Test -extends Object
    -
    +extends Object
      @@ -118,14 +120,14 @@

      Method Summary

      Method
      Description
      static void
      -
      main(String[] args)
      +
      main(String[] args)
       
    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    @@ -140,9 +142,7 @@

    Constructor Details

  • Test

    -
    public Test()
    -
  • @@ -156,9 +156,7 @@

    Method Details

  • main

    -
    -
    public static void main(String[] args)
    -
    +
    public static void main(String[] args)
  • @@ -169,5 +167,6 @@

    main

    +
    diff --git a/doc/com/raylib/package-summary.html b/doc/com/raylib/package-summary.html index b62647e..8f82fc4 100644 --- a/doc/com/raylib/package-summary.html +++ b/doc/com/raylib/package-summary.html @@ -1,73 +1,74 @@ - + com.raylib - + - - - - - - + + + + + + - -
    +
    + - @@ -199,5 +202,6 @@

    Package com.raylib

    +
    diff --git a/doc/com/raylib/package-tree.html b/doc/com/raylib/package-tree.html index d22506d..3f00f83 100644 --- a/doc/com/raylib/package-tree.html +++ b/doc/com/raylib/package-tree.html @@ -1,57 +1,51 @@ - + com.raylib Class Hierarchy - + - - - - - + + + + + - -
    +
    + -
    +

    Hierarchy For Package com.raylib

    @@ -59,11 +53,11 @@

    Hierarchy For Package com.raylib

    Class Hierarchy

    +
    diff --git a/doc/constant-values.html b/doc/constant-values.html index 1f8f245..72189ee 100644 --- a/doc/constant-values.html +++ b/doc/constant-values.html @@ -1,73 +1,61 @@ - + Constant Field Values - + - - - - - - + + + + + + - -
    +
    + -
    - +

    Constant Field Values

    +
    +

    Contents

    + +

    com.raylib.*

    +
    diff --git a/doc/copy.svg b/doc/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/doc/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/doc/deprecated-list.html b/doc/deprecated-list.html index 32b904c..ea7f737 100644 --- a/doc/deprecated-list.html +++ b/doc/deprecated-list.html @@ -1,55 +1,51 @@ - + Deprecated List - + - - - - - + + + + + - -
    +
    + -
    +

    Deprecated API

    @@ -71,19 +67,22 @@

    Contents

    -
    +
    diff --git a/doc/help-doc.html b/doc/help-doc.html index 44b5b80..9c27e5f 100644 --- a/doc/help-doc.html +++ b/doc/help-doc.html @@ -1,86 +1,88 @@ - + API Help - + - - - - - + + + + + - -
    +
    + -
    - +

    JavaDoc Help

    +

    Navigation

    @@ -88,12 +90,12 @@

    Navigation


    @@ -165,10 +167,6 @@

    Deprecated API

    Constant Field Values

    The Constant Field Values page lists the static final fields and their values.

    -
    -

    Serialized Form

    -

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

    -

    All Packages

    The All Packages page contains an alphabetic index of all packages contained in the documentation.

    @@ -185,5 +183,6 @@

    Index


    This help file applies to API documentation generated by the standard doclet.
    +
    diff --git a/doc/index-all.html b/doc/index-all.html index 209af06..b03ca76 100644 --- a/doc/index-all.html +++ b/doc/index-all.html @@ -1,55 +1,51 @@ - + Index - + - - - - - + + + + + - -
    +
    + -
    +

    Index

    @@ -204,9 +200,9 @@

    B

     
    BEIGE - Static variable in class com.raylib.Colors
     
    -
    bindPose() - Method in class com.raylib.Raylib.Model
    +
    bindPose() - Method in class com.raylib.Raylib.ModelSkeleton
     
    -
    bindPose(Raylib.Transform) - Method in class com.raylib.Raylib.Model
    +
    bindPose(Raylib.Transform) - Method in class com.raylib.Raylib.ModelSkeleton
     
    BLACK - Static variable in class com.raylib.Colors
     
    @@ -260,19 +256,19 @@

    B

     
    boneCount() - Method in class com.raylib.Raylib.Mesh
     
    -
    boneCount() - Method in class com.raylib.Raylib.Model
    -
     
    boneCount() - Method in class com.raylib.Raylib.ModelAnimation
     
    -
    boneCount(int) - Method in class com.raylib.Raylib.Mesh
    +
    boneCount() - Method in class com.raylib.Raylib.ModelSkeleton
     
    -
    boneCount(int) - Method in class com.raylib.Raylib.Model
    +
    boneCount(int) - Method in class com.raylib.Raylib.Mesh
     
    boneCount(int) - Method in class com.raylib.Raylib.ModelAnimation
     
    -
    boneIds() - Method in class com.raylib.Raylib.Mesh
    +
    boneCount(int) - Method in class com.raylib.Raylib.ModelSkeleton
     
    -
    boneIds(BytePointer) - Method in class com.raylib.Raylib.Mesh
    +
    boneIndices() - Method in class com.raylib.Raylib.Mesh
    +
     
    +
    boneIndices(BytePointer) - Method in class com.raylib.Raylib.Mesh
     
    BoneInfo() - Constructor for class com.raylib.Raylib.BoneInfo
    @@ -286,17 +282,13 @@

    B

    Pointer cast constructor.
    -
    boneMatrices() - Method in class com.raylib.Raylib.Mesh
    -
     
    -
    boneMatrices(Raylib.Matrix) - Method in class com.raylib.Raylib.Mesh
    -
     
    -
    bones() - Method in class com.raylib.Raylib.Model
    +
    boneMatrices() - Method in class com.raylib.Raylib.Model
     
    -
    bones() - Method in class com.raylib.Raylib.ModelAnimation
    +
    boneMatrices(Raylib.Matrix) - Method in class com.raylib.Raylib.Model
     
    -
    bones(Raylib.BoneInfo) - Method in class com.raylib.Raylib.Model
    +
    bones() - Method in class com.raylib.Raylib.ModelSkeleton
     
    -
    bones(Raylib.BoneInfo) - Method in class com.raylib.Raylib.ModelAnimation
    +
    bones(Raylib.BoneInfo) - Method in class com.raylib.Raylib.ModelSkeleton
     
    boneWeights() - Method in class com.raylib.Raylib.Mesh
     
    @@ -587,6 +579,12 @@

    C

     
    ComputeSHA1(BytePointer, int) - Static method in class com.raylib.Raylib
     
    +
    ComputeSHA256(byte[], int) - Static method in class com.raylib.Raylib
    +
     
    +
    ComputeSHA256(ByteBuffer, int) - Static method in class com.raylib.Raylib
    +
     
    +
    ComputeSHA256(BytePointer, int) - Static method in class com.raylib.Raylib
    +
     
    contacts() - Method in class com.raylib.Raylib.PhysicsManifoldData
     
    contacts(int) - Method in class com.raylib.Raylib.PhysicsManifoldData
    @@ -597,6 +595,10 @@

    C

     
    contactsCount(int) - Method in class com.raylib.Raylib.PhysicsManifoldData
     
    +
    CONTROL11 - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiControl
    +
    controlId() - Method in class com.raylib.Raylib.GuiStyleProp
     
    controlId(short) - Method in class com.raylib.Raylib.GuiStyleProp
    @@ -651,6 +653,10 @@

    C

     
    currentDepth(float) - Method in class com.raylib.Raylib.rlRenderBatch
     
    +
    currentPose() - Method in class com.raylib.Raylib.Model
    +
     
    +
    currentPose(Raylib.Transform) - Method in class com.raylib.Raylib.Model
    +
     

    D

    @@ -672,9 +678,15 @@

    D

     
    data(Pointer) - Method in class com.raylib.Raylib.Wave
     
    -
    DecodeDataBase64(byte[], int[]) - Static method in class com.raylib.Raylib
    +
    DecodeDataBase64(String, int[]) - Static method in class com.raylib.Raylib
    +
     
    +
    DecodeDataBase64(String, IntBuffer) - Static method in class com.raylib.Raylib
    +
     
    +
    DecodeDataBase64(String, IntPointer) - Static method in class com.raylib.Raylib
    +
     
    +
    DecodeDataBase64(BytePointer, int[]) - Static method in class com.raylib.Raylib
     
    -
    DecodeDataBase64(ByteBuffer, IntBuffer) - Static method in class com.raylib.Raylib
    +
    DecodeDataBase64(BytePointer, IntBuffer) - Static method in class com.raylib.Raylib
     
    DecodeDataBase64(BytePointer, IntPointer) - Static method in class com.raylib.Raylib
     
    @@ -756,7 +768,7 @@

    D

     
    DrawCircle3D(Raylib.Vector3, float, Raylib.Vector3, float, Raylib.Color) - Static method in class com.raylib.Raylib
     
    -
    DrawCircleGradient(int, int, float, Raylib.Color, Raylib.Color) - Static method in class com.raylib.Raylib
    +
    DrawCircleGradient(Raylib.Vector2, float, Raylib.Color, Raylib.Color) - Static method in class com.raylib.Raylib
     
    DrawCircleLines(int, int, float, Raylib.Color) - Static method in class com.raylib.Raylib
     
    @@ -792,6 +804,10 @@

    D

     
    DrawEllipseLines(int, int, float, float, Raylib.Color) - Static method in class com.raylib.Raylib
     
    +
    DrawEllipseLinesV(Raylib.Vector2, float, float, Raylib.Color) - Static method in class com.raylib.Raylib
    +
     
    +
    DrawEllipseV(Raylib.Vector2, float, float, Raylib.Color) - Static method in class com.raylib.Raylib
    +
     
    DrawFPS(int, int) - Static method in class com.raylib.Raylib
     
    DrawGrid(int, float) - Static method in class com.raylib.Raylib
    @@ -802,6 +818,8 @@

    D

     
    DrawLineBezier(Raylib.Vector2, Raylib.Vector2, float, Raylib.Color) - Static method in class com.raylib.Raylib
     
    +
    DrawLineDashed(Raylib.Vector2, Raylib.Vector2, int, int, Raylib.Color) - Static method in class com.raylib.Raylib
    +
     
    DrawLineEx(Raylib.Vector2, Raylib.Vector2, float, Raylib.Color) - Static method in class com.raylib.Raylib
     
    DrawLineStrip(Raylib.Vector2, int, Raylib.Color) - Static method in class com.raylib.Raylib
    @@ -816,10 +834,6 @@

    D

     
    DrawModelEx(Raylib.Model, Raylib.Vector3, Raylib.Vector3, float, Raylib.Vector3, Raylib.Color) - Static method in class com.raylib.Raylib
     
    -
    DrawModelPoints(Raylib.Model, Raylib.Vector3, float, Raylib.Color) - Static method in class com.raylib.Raylib
    -
     
    -
    DrawModelPointsEx(Raylib.Model, Raylib.Vector3, Raylib.Vector3, float, Raylib.Vector3, Raylib.Color) - Static method in class com.raylib.Raylib
    -
     
    DrawModelWires(Raylib.Model, Raylib.Vector3, float, Raylib.Color) - Static method in class com.raylib.Raylib
     
    DrawModelWiresEx(Raylib.Model, Raylib.Vector3, Raylib.Vector3, float, Raylib.Vector3, Raylib.Color) - Static method in class com.raylib.Raylib
    @@ -1020,11 +1034,13 @@

    E

    - Functions use always a "result" variable for return (except C++ operators) - Functions are always defined inline - Angles are always in radians (DEG2RAD/RAD2DEG macros provided for convenience) - - No compound literals used to make sure libray is compatible with C++ + - No compound literals used to make sure the library is compatible with C++ CONFIGURATION: #define RAYMATH_IMPLEMENTATION - Generates the implementation of the library into the included file.
    + Generates the implementation of the library into the included file + If not defined, the library is in header only mode and can be included in other headers + or source files without problems.
    equals(Raylib.Vector2, Raylib.Vector2) - Static method in class com.raylib.Raylib
     
    @@ -1101,10 +1117,18 @@

    F

    Fade(Raylib.Color, float) - Static method in class com.raylib.Raylib
     
    +
    FileCopy(String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    FileCopy(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    FileExists(String) - Static method in class com.raylib.Raylib
     
    FileExists(BytePointer) - Static method in class com.raylib.Raylib
     
    +
    FileMove(String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    FileMove(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    FilePathList() - Constructor for class com.raylib.Raylib.FilePathList
    Default native constructor.
    @@ -1117,6 +1141,22 @@

    F

    Pointer cast constructor.
    +
    FileRemove(String) - Static method in class com.raylib.Raylib
    +
     
    +
    FileRemove(BytePointer) - Static method in class com.raylib.Raylib
    +
     
    +
    FileRename(String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    FileRename(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    +
    FileTextFindIndex(String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    FileTextFindIndex(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    +
    FileTextReplace(String, String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    FileTextReplace(BytePointer, BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    FLAG_BORDERLESS_WINDOWED_MODE - Static variable in class com.raylib.Raylib
    enum ConfigFlags
    @@ -1251,30 +1291,18 @@

    F

     
    frame(int) - Method in class com.raylib.Raylib.AutomationEvent
     
    -
    frameCount() - Method in class com.raylib.Raylib.ModelAnimation
    -
     
    frameCount() - Method in class com.raylib.Raylib.Music
     
    frameCount() - Method in class com.raylib.Raylib.Sound
     
    frameCount() - Method in class com.raylib.Raylib.Wave
     
    -
    frameCount(int) - Method in class com.raylib.Raylib.ModelAnimation
    -
     
    frameCount(int) - Method in class com.raylib.Raylib.Music
     
    frameCount(int) - Method in class com.raylib.Raylib.Sound
     
    frameCount(int) - Method in class com.raylib.Raylib.Wave
     
    -
    framePoses() - Method in class com.raylib.Raylib.ModelAnimation
    -
     
    -
    framePoses(int) - Method in class com.raylib.Raylib.ModelAnimation
    -
     
    -
    framePoses(int, Raylib.Transform) - Method in class com.raylib.Raylib.ModelAnimation
    -
     
    -
    framePoses(PointerPointer) - Method in class com.raylib.Raylib.ModelAnimation
    -
     
    freezeOrient() - Method in class com.raylib.Raylib.PhysicsBody
     
    freezeOrient(boolean) - Method in class com.raylib.Raylib.PhysicsBody
    @@ -1534,6 +1562,14 @@

    G

     
    GetCurrentMonitor() - Static method in class com.raylib.Raylib
     
    +
    GetDirectoryFileCount(String) - Static method in class com.raylib.Raylib
    +
     
    +
    GetDirectoryFileCount(BytePointer) - Static method in class com.raylib.Raylib
    +
     
    +
    GetDirectoryFileCountEx(String, String, boolean) - Static method in class com.raylib.Raylib
    +
     
    +
    GetDirectoryFileCountEx(BytePointer, BytePointer, boolean) - Static method in class com.raylib.Raylib
    +
     
    GetDirectoryPath(String) - Static method in class com.raylib.Raylib
     
    GetDirectoryPath(BytePointer) - Static method in class com.raylib.Raylib
    @@ -1694,6 +1730,8 @@

    G

     
    getPointer(long) - Method in class com.raylib.Raylib.ModelAnimation
     
    +
    getPointer(long) - Method in class com.raylib.Raylib.ModelSkeleton
    +
     
    getPointer(long) - Method in class com.raylib.Raylib.Music
     
    getPointer(long) - Method in class com.raylib.Raylib.NPatchInfo
    @@ -1792,6 +1830,10 @@

    G

     
    GetSplinePointLinear(Raylib.Vector2, Raylib.Vector2, float) - Static method in class com.raylib.Raylib
     
    +
    GetTextBetween(String, String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    GetTextBetween(BytePointer, BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    GetTime() - Static method in class com.raylib.Raylib
     
    GetTouchPointCount() - Static method in class com.raylib.Raylib
    @@ -1852,6 +1894,30 @@

    G

    enum GuiToggleProperty
    +
    GUI_BUTTON_DOWN - Static variable in class com.raylib.Raylib
    +
     
    +
    GUI_BUTTON_DOWN() - Static method in class com.raylib.Raylib
    +
     
    +
    GUI_BUTTON_DOWN_ALT - Static variable in class com.raylib.Raylib
    +
     
    +
    GUI_BUTTON_DOWN_ALT() - Static method in class com.raylib.Raylib
    +
     
    +
    GUI_BUTTON_PRESSED - Static variable in class com.raylib.Raylib
    +
     
    +
    GUI_BUTTON_PRESSED() - Static method in class com.raylib.Raylib
    +
     
    +
    GUI_BUTTON_RELEASED - Static variable in class com.raylib.Raylib
    +
     
    +
    GUI_BUTTON_RELEASED() - Static method in class com.raylib.Raylib
    +
     
    +
    GUI_INPUT_KEY - Static variable in class com.raylib.Raylib
    +
     
    +
    GUI_INPUT_KEY() - Static method in class com.raylib.Raylib
    +
     
    +
    GUI_SCROLL_DELTA - Static variable in class com.raylib.Raylib
    +
     
    +
    GUI_SCROLL_DELTA() - Static method in class com.raylib.Raylib
    +
     
    GuiButton(Raylib.Rectangle, String) - Static method in class com.raylib.Raylib
     
    GuiButton(Raylib.Rectangle, BytePointer) - Static method in class com.raylib.Raylib
    @@ -1946,6 +2012,10 @@

    G

     
    GuiGetStyle(int, int) - Static method in class com.raylib.Raylib
     
    +
    GuiGetTextWidth(String) - Static method in class com.raylib.Raylib
    +
     
    +
    GuiGetTextWidth(BytePointer) - Static method in class com.raylib.Raylib
    +
     
    GuiGrid(Raylib.Rectangle, String, float, int, Raylib.Vector2) - Static method in class com.raylib.Raylib
     
    GuiGrid(Raylib.Rectangle, BytePointer, float, int, Raylib.Vector2) - Static method in class com.raylib.Raylib
    @@ -2234,90 +2304,6 @@

    I

    enum GuiIconName
    -
    ICON_229 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_230 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_231 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_232 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_233 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_234 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_235 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_236 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_237 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_238 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_239 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_240 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_241 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_242 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_243 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_244 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_245 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_246 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_247 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_248 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    -
    ICON_249 - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiIconName
    -
    ICON_250 - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2450,6 +2436,22 @@

    I

    enum GuiIconName
    +
    ICON_BOX_MINUS - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    +
    ICON_BOX_MINUS_FILL - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    +
    ICON_BOX_MORE - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    +
    ICON_BOX_MORE_FILL - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_BOX_MULTISIZE - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2494,10 +2496,30 @@

    I

    enum GuiIconName
    +
    ICON_CAPSULE - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_CASE_SENSITIVE - Static variable in class com.raylib.Raylib
    enum GuiIconName
    +
    ICON_CIRCLE_ADD - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    +
    ICON_CIRCLE_ADD_FILL - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    +
    ICON_CIRCLE_WARNING - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    +
    ICON_CIRCLE_WARNING_FILL - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_CLOCK - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2506,6 +2528,10 @@

    I

    enum GuiIconName
    +
    ICON_COLLISION - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_COLOR_BUCKET - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2514,6 +2540,10 @@

    I

    enum GuiIconName
    +
    ICON_CONE - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_CORNER - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2622,10 +2652,18 @@

    I

    enum GuiIconName
    +
    ICON_CYLINDER - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_DEMON - Static variable in class com.raylib.Raylib
    enum GuiIconName
    +
    ICON_DIFFERENCE - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_DITHERING - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2634,6 +2672,10 @@

    I

    enum GuiIconName
    +
    ICON_ELLIPSOID - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_EMPTYBOX - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2842,10 +2884,18 @@

    I

    enum GuiIconName
    +
    ICON_INTERSECTION - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_KEY - Static variable in class com.raylib.Raylib
    enum GuiIconName
    +
    ICON_LABEL - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_LASER - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2914,6 +2964,10 @@

    I

    enum GuiIconName
    +
    ICON_MANUAL_CONTROL - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_MAPS - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -2946,6 +3000,10 @@

    I

    enum GuiIconName
    +
    ICON_NAME_ID - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_NONE - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -3094,10 +3152,18 @@

    I

    enum GuiIconName
    +
    ICON_SLICING - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_SPECIAL - Static variable in class com.raylib.Raylib
    enum GuiIconName
    +
    ICON_SPHERE - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_SQUARE_TOGGLE - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -3198,6 +3264,10 @@

    I

    enum GuiIconName
    +
    ICON_UNION - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiIconName
    +
    ICON_VERTICAL_BARS - Static variable in class com.raylib.Raylib
    enum GuiIconName
    @@ -3983,6 +4053,14 @@

    K

    enum KeyboardKey
    +
    keyframeCount() - Method in class com.raylib.Raylib.ModelAnimation
    +
     
    +
    keyframeCount(int) - Method in class com.raylib.Raylib.ModelAnimation
    +
     
    +
    keyframePoses() - Method in class com.raylib.Raylib.ModelAnimation
    +
     
    +
    keyframePoses(PointerPointer) - Method in class com.raylib.Raylib.ModelAnimation
    +
     

    L

    @@ -4030,6 +4108,10 @@

    L

    enum GuiDefaultProperty
    +
    LIST_ITEMS_BORDER_NORMAL - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiListViewProperty
    +
    LIST_ITEMS_BORDER_WIDTH - Static variable in class com.raylib.Raylib
    enum GuiListViewProperty
    @@ -4106,11 +4188,11 @@

    L

     
    LoadFont(BytePointer) - Static method in class com.raylib.Raylib
     
    -
    LoadFontData(byte[], int, int, int[], int, int) - Static method in class com.raylib.Raylib
    +
    LoadFontData(byte[], int, int, int[], int, int, int[]) - Static method in class com.raylib.Raylib
     
    -
    LoadFontData(ByteBuffer, int, int, IntBuffer, int, int) - Static method in class com.raylib.Raylib
    +
    LoadFontData(ByteBuffer, int, int, IntBuffer, int, int, IntBuffer) - Static method in class com.raylib.Raylib
     
    -
    LoadFontData(BytePointer, int, int, IntPointer, int, int) - Static method in class com.raylib.Raylib
    +
    LoadFontData(BytePointer, int, int, IntPointer, int, int, IntPointer) - Static method in class com.raylib.Raylib
     
    LoadFontEx(String, int, int[], int) - Static method in class com.raylib.Raylib
     
    @@ -4262,6 +4344,18 @@

    L

     
    LoadSoundFromWave(Raylib.Wave) - Static method in class com.raylib.Raylib
     
    +
    LoadTextLines(String, int[]) - Static method in class com.raylib.Raylib
    +
     
    +
    LoadTextLines(String, IntBuffer) - Static method in class com.raylib.Raylib
    +
     
    +
    LoadTextLines(String, IntPointer) - Static method in class com.raylib.Raylib
    +
     
    +
    LoadTextLines(BytePointer, int[]) - Static method in class com.raylib.Raylib
    +
     
    +
    LoadTextLines(BytePointer, IntBuffer) - Static method in class com.raylib.Raylib
    +
     
    +
    LoadTextLines(BytePointer, IntPointer) - Static method in class com.raylib.Raylib
    +
     
    LoadTexture(String) - Static method in class com.raylib.Raylib
     
    LoadTexture(BytePointer) - Static method in class com.raylib.Raylib
    @@ -4545,6 +4639,8 @@

    M

    MatrixAdd(Raylib.Matrix, Raylib.Matrix) - Static method in class com.raylib.Raylib
     
    +
    MatrixCompose(Raylib.Vector3, Raylib.Vector4, Raylib.Vector3) - Static method in class com.raylib.Raylib
    +
     
    MatrixDecompose(Raylib.Matrix, Raylib.Vector3, Raylib.Vector4, Raylib.Vector3) - Static method in class com.raylib.Raylib
     
    MatrixDeterminant(Raylib.Matrix) - Static method in class com.raylib.Raylib
    @@ -4559,6 +4655,8 @@

    M

     
    MatrixMultiply(Raylib.Matrix, Raylib.Matrix) - Static method in class com.raylib.Raylib
     
    +
    MatrixMultiplyValue(Raylib.Matrix, float) - Static method in class com.raylib.Raylib
    +
     
    MatrixOrtho(double, double, double, double, double, double) - Static method in class com.raylib.Raylib
     
    MatrixPerspective(double, double, double, double) - Static method in class com.raylib.Raylib
    @@ -4587,6 +4685,8 @@

    M

     
    MatrixTranspose(Raylib.Matrix) - Static method in class com.raylib.Raylib
     
    +
    MatrixUnit() - Static method in class com.raylib.Raylib
    +
     
    max() - Method in class com.raylib.Raylib.BoundingBox
     
    max(Raylib.Vector3) - Method in class com.raylib.Raylib.BoundingBox
    @@ -4597,6 +4697,12 @@

    M

     
    MeasureText(BytePointer, int) - Static method in class com.raylib.Raylib
     
    +
    MeasureTextCodepoints(Raylib.Font, int[], int, float, float) - Static method in class com.raylib.Raylib
    +
     
    +
    MeasureTextCodepoints(Raylib.Font, IntBuffer, int, float, float) - Static method in class com.raylib.Raylib
    +
     
    +
    MeasureTextCodepoints(Raylib.Font, IntPointer, int, float, float) - Static method in class com.raylib.Raylib
    +
     
    MeasureTextEx(Raylib.Font, String, float, float) - Static method in class com.raylib.Raylib
     
    MeasureTextEx(Raylib.Font, BytePointer, float, float) - Static method in class com.raylib.Raylib
    @@ -4673,6 +4779,18 @@

    M

    Pointer cast constructor.
    +
    ModelSkeleton() - Constructor for class com.raylib.Raylib.ModelSkeleton
    +
    +
    Default native constructor.
    +
    +
    ModelSkeleton(long) - Constructor for class com.raylib.Raylib.ModelSkeleton
    +
    +
    Native array allocator.
    +
    +
    ModelSkeleton(Pointer) - Constructor for class com.raylib.Raylib.ModelSkeleton
    +
    +
    Pointer cast constructor.
    +
    MOUSE_BUTTON_BACK - Static variable in class com.raylib.Raylib
    enum MouseButton
    @@ -4745,6 +4863,8 @@

    M

    enum MouseCursor
    +
    multiply(Raylib.Matrix, float) - Static method in class com.raylib.Raylib
    +
     
    multiply(Raylib.Matrix, Raylib.Matrix) - Static method in class com.raylib.Raylib
     
    multiply(Raylib.Vector2, float) - Static method in class com.raylib.Raylib
    @@ -4765,6 +4885,8 @@

    M

     
    multiply(Raylib.Vector4, Raylib.Vector4) - Static method in class com.raylib.Raylib
     
    +
    multiplyPut(Raylib.Matrix, float) - Static method in class com.raylib.Raylib
    +
     
    multiplyPut(Raylib.Matrix, Raylib.Matrix) - Static method in class com.raylib.Raylib
     
    multiplyPut(Raylib.Vector2, float) - Static method in class com.raylib.Raylib
    @@ -5202,6 +5324,8 @@

    P

     
    position(long) - Method in class com.raylib.Raylib.ModelAnimation
     
    +
    position(long) - Method in class com.raylib.Raylib.ModelSkeleton
    +
     
    position(long) - Method in class com.raylib.Raylib.Music
     
    position(long) - Method in class com.raylib.Raylib.NPatchInfo
    @@ -5262,6 +5386,10 @@

    P

    enum GuiProgressBarProperty
    +
    PROGRESS_SIDE - Static variable in class com.raylib.Raylib
    +
    +
    enum GuiProgressBarProperty
    +
    PROGRESSBAR - Static variable in class com.raylib.Raylib
    enum GuiControl
    @@ -5404,11 +5532,33 @@

    R

     
    RAYGUI_VERSION_MAJOR - Static variable in class com.raylib.Raylib
    -
    raygui v4.5-dev - A simple and easy-to-use immediate-mode gui library +
    raygui v5.0 - A simple and easy-to-use immediate-mode gui library DESCRIPTION: raygui is a tools-dev-focused immediate-mode-gui library based on raylib but also - available as a standalone library, as long as input and drawing functions are provided.
    + available as a standalone library, as long as input and drawing functions are provided + + FEATURES: + - Immediate-mode gui, minimal retained data + - +25 controls provided (basic and advanced) + - Styling system for colors, font and metrics + - Icons supported, embedded as a 1-bit icons pack + - Standalone mode option (custom input/graphics backend) + - Multiple support tools provided for raygui development + + POSSIBLE IMPROVEMENTS: + - Better standalone mode API for easy plug of custom backends + - Externalize required inputs, allow user easier customization + + LIMITATIONS: + - No editable multi-line word-wraped text box supported + - No auto-layout mechanism, up to the user to define controls position and size + - Standalone mode requires library modification and some user work to plug another backend + + NOTES: + - WARNING: GuiLoadStyle() and GuiLoadStyle{Custom}() functions, allocate memory for + font atlas recs and glyphs, freeing that memory is (usually) up to the user, + no unload function is explicitly provided...
    RAYGUI_VERSION_MINOR - Static variable in class com.raylib.Raylib
     
    @@ -5422,12 +5572,11 @@

    R

     
    RAYLIB_VERSION_MAJOR - Static variable in class com.raylib.Raylib
    -
    raylib v5.6-dev - A simple and easy-to-use library to enjoy videogames programming (www.raylib.com) +
    raylib v6.0 - A simple and easy-to-use library to enjoy videogames programming (www.raylib.com) FEATURES: - NO external dependencies, all required libraries included with raylib - - Multiplatform: Windows, Linux, FreeBSD, OpenBSD, NetBSD, DragonFly, - MacOS, Haiku, Android, Raspberry Pi, DRM native, HTML5.
    + - Multiplatform: Windows, Linux, macOS, FreeBSD, Web, Android, Raspberry Pi, DRM native...
    RAYLIB_VERSION_MINOR - Static variable in class com.raylib.Raylib
     
    @@ -5483,6 +5632,8 @@

    R

     
    Raylib.ModelAnimation - Class in com.raylib
     
    +
    Raylib.ModelSkeleton - Class in com.raylib
    +
     
    Raylib.Music - Class in com.raylib
     
    Raylib.NPatchInfo - Class in com.raylib
    @@ -5757,7 +5908,7 @@

    R

     
    RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS - Static variable in class com.raylib.Raylib
     
    -
    RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEIDS - Static variable in class com.raylib.Raylib
    +
    RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEINDICES - Static variable in class com.raylib.Raylib
     
    RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS - Static variable in class com.raylib.Raylib
     
    @@ -5765,6 +5916,8 @@

    R

     
    RL_DEFAULT_SHADER_ATTRIB_LOCATION_INDICES - Static variable in class com.raylib.Raylib
     
    +
    RL_DEFAULT_SHADER_ATTRIB_LOCATION_INSTANCETRANSFORM - Static variable in class com.raylib.Raylib
    +
     
    RL_DEFAULT_SHADER_ATTRIB_LOCATION_NORMAL - Static variable in class com.raylib.Raylib
     
    RL_DEFAULT_SHADER_ATTRIB_LOCATION_POSITION - Static variable in class com.raylib.Raylib
    @@ -5879,6 +6032,10 @@

    R

    enum rlGlVersion
    +
    RL_OPENGL_SOFTWARE - Static variable in class com.raylib.Raylib
    +
    +
    enum rlGlVersion
    +
    RL_PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA - Static variable in class com.raylib.Raylib
    enum rlPixelFormat
    @@ -6271,12 +6428,10 @@

    R

     
    rlColorMask(boolean, boolean, boolean, boolean) - Static method in class com.raylib.Raylib
     
    -
    rlCompileShader(String, int) - Static method in class com.raylib.Raylib
    -
     
    -
    rlCompileShader(BytePointer, int) - Static method in class com.raylib.Raylib
    -
     
    rlComputeShaderDispatch(int, int, int) - Static method in class com.raylib.Raylib
     
    +
    rlCopyFramebuffer(int, int, int, int, int, Pointer) - Static method in class com.raylib.Raylib
    +
     
    rlCopyShaderBuffer(int, int, int, int, int) - Static method in class com.raylib.Raylib
     
    rlCubemapParameters(int, int, int) - Static method in class com.raylib.Raylib
    @@ -6291,12 +6446,16 @@

    R

     
    rlDisableFramebuffer() - Static method in class com.raylib.Raylib
     
    +
    rlDisablePointMode() - Static method in class com.raylib.Raylib
    +
     
    rlDisableScissorTest() - Static method in class com.raylib.Raylib
     
    rlDisableShader() - Static method in class com.raylib.Raylib
     
    rlDisableSmoothLines() - Static method in class com.raylib.Raylib
     
    +
    rlDisableStatePointer(int) - Static method in class com.raylib.Raylib
    +
     
    rlDisableStereoRender() - Static method in class com.raylib.Raylib
     
    rlDisableTexture() - Static method in class com.raylib.Raylib
    @@ -6355,6 +6514,8 @@

    R

     
    rlEnableSmoothLines() - Static method in class com.raylib.Raylib
     
    +
    rlEnableStatePointer(int, Pointer) - Static method in class com.raylib.Raylib
    +
     
    rlEnableStereoRender() - Static method in class com.raylib.Raylib
     
    rlEnableTexture(int) - Static method in class com.raylib.Raylib
    @@ -6423,6 +6584,12 @@

    R

     
    rlGetPixelFormatName(int) - Static method in class com.raylib.Raylib
     
    +
    rlGetPointSize() - Static method in class com.raylib.Raylib
    +
     
    +
    rlGetProcAddress(String) - Static method in class com.raylib.Raylib
    +
     
    +
    rlGetProcAddress(BytePointer) - Static method in class com.raylib.Raylib
    +
     
    rlGetShaderBufferSize(int) - Static method in class com.raylib.Raylib
     
    rlGetShaderIdDefault() - Static method in class com.raylib.Raylib
    @@ -6435,17 +6602,17 @@

    R

     
    RLGL_VERSION - Static variable in class com.raylib.Raylib
    -
    rlgl v5.0 - A multi-OpenGL abstraction layer with an immediate-mode style API +
    rlgl v6.0 - A multi-OpenGL abstraction layer with an immediate-mode style API DESCRIPTION: An abstraction layer for multiple OpenGL versions (1.1, 2.1, 3.3 Core, 4.3 Core, ES 2.0, ES 3.0) that provides a pseudo-OpenGL 1.1 immediate-mode style API (rlVertex, rlTranslate, rlRotate...) ADDITIONAL NOTES: - When choosing an OpenGL backend different than OpenGL 1.1, some internal buffer are + When choosing an OpenGL backend different than OpenGL 1.1, some internal buffers are initialized on rlglInit() to accumulate vertex data - When an internal state change is required all the stored vertex data is renderer in batch, + When an internal state change is required all the stored vertex data is rendered in a batch, additionally, rlDrawRenderBatchActive() could be called to force flushing of the batch Some resources are also loaded for convenience, here the complete list: @@ -6456,6 +6623,7 @@

    R

    Internal buffer (and resources) must be manually unloaded calling rlglClose() CONFIGURATION: + #define GRAPHICS_API_OPENGL_SOFTWARE #define GRAPHICS_API_OPENGL_11 #define GRAPHICS_API_OPENGL_21 #define GRAPHICS_API_OPENGL_33 @@ -6463,7 +6631,7 @@

    R

    #define GRAPHICS_API_OPENGL_ES2 #define GRAPHICS_API_OPENGL_ES3 Use selected OpenGL graphics backend, should be supported by platform - Those preprocessor defines are only used on rlgl module, if OpenGL version is + Those preprocessor defines are only used on the rlgl module, if OpenGL version is required by any other module, use rlGetVersion() to check it #define RLGL_IMPLEMENTATION @@ -6477,8 +6645,6 @@

    R

     
    rlIsStereoRenderEnabled() - Static method in class com.raylib.Raylib
     
    -
    rlLoadComputeShaderProgram(int) - Static method in class com.raylib.Raylib
    -
     
    rlLoadDrawCube() - Static method in class com.raylib.Raylib
     
    rlLoadDrawQuad() - Static method in class com.raylib.Raylib
    @@ -6491,13 +6657,19 @@

    R

     
    rlLoadRenderBatch(int, int) - Static method in class com.raylib.Raylib
     
    +
    rlLoadShader(String, int) - Static method in class com.raylib.Raylib
    +
     
    +
    rlLoadShader(BytePointer, int) - Static method in class com.raylib.Raylib
    +
     
    rlLoadShaderBuffer(int, Pointer, int) - Static method in class com.raylib.Raylib
     
    -
    rlLoadShaderCode(String, String) - Static method in class com.raylib.Raylib
    +
    rlLoadShaderProgram(String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    rlLoadShaderProgram(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
     
    -
    rlLoadShaderCode(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
    rlLoadShaderProgramCompute(int) - Static method in class com.raylib.Raylib
     
    -
    rlLoadShaderProgram(int, int) - Static method in class com.raylib.Raylib
    +
    rlLoadShaderProgramEx(int, int) - Static method in class com.raylib.Raylib
     
    rlLoadTexture(Pointer, int, int, int, int) - Static method in class com.raylib.Raylib
     
    @@ -6545,6 +6717,8 @@

    R

    Pointer cast constructor.
    +
    rlResizeFramebuffer(int, int) - Static method in class com.raylib.Raylib
    +
     
    rlRotatef(float, float, float, float) - Static method in class com.raylib.Raylib
     
    rlScalef(float, float, float) - Static method in class com.raylib.Raylib
    @@ -6575,6 +6749,8 @@

    R

     
    rlSetMatrixViewOffsetStereo(Raylib.Matrix, Raylib.Matrix) - Static method in class com.raylib.Raylib
     
    +
    rlSetPointSize(float) - Static method in class com.raylib.Raylib
    +
     
    rlSetRenderBatchActive(Raylib.rlRenderBatch) - Static method in class com.raylib.Raylib
     
    rlSetShader(int, int[]) - Static method in class com.raylib.Raylib
    @@ -6609,6 +6785,8 @@

    R

     
    rlUnloadRenderBatch(Raylib.rlRenderBatch) - Static method in class com.raylib.Raylib
     
    +
    rlUnloadShader(int) - Static method in class com.raylib.Raylib
    +
     
    rlUnloadShaderBuffer(int) - Static method in class com.raylib.Raylib
     
    rlUnloadShaderProgram(int) - Static method in class com.raylib.Raylib
    @@ -6684,15 +6862,7 @@

    S

    Pointer cast constructor.
    -
    SaveFileText(String, byte[]) - Static method in class com.raylib.Raylib
    -
     
    -
    SaveFileText(String, ByteBuffer) - Static method in class com.raylib.Raylib
    -
     
    -
    SaveFileText(String, BytePointer) - Static method in class com.raylib.Raylib
    -
     
    -
    SaveFileText(BytePointer, byte[]) - Static method in class com.raylib.Raylib
    -
     
    -
    SaveFileText(BytePointer, ByteBuffer) - Static method in class com.raylib.Raylib
    +
    SaveFileText(String, String) - Static method in class com.raylib.Raylib
     
    SaveFileText(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
     
    @@ -6904,10 +7074,6 @@

    S

    enum ShaderAttributeDataType
    -
    SHADER_LOC_BONE_MATRICES - Static variable in class com.raylib.Raylib
    -
    -
    enum ShaderLocationIndex
    -
    SHADER_LOC_COLOR_AMBIENT - Static variable in class com.raylib.Raylib
    enum ShaderLocationIndex
    @@ -6968,6 +7134,10 @@

    S

    SHADER_LOC_MAP_SPECULAR - Static variable in class com.raylib.Raylib
     
    +
    SHADER_LOC_MATRIX_BONETRANSFORMS - Static variable in class com.raylib.Raylib
    +
    +
    enum ShaderLocationIndex
    +
    SHADER_LOC_MATRIX_MODEL - Static variable in class com.raylib.Raylib
    enum ShaderLocationIndex
    @@ -7004,6 +7174,10 @@

    S

    enum ShaderLocationIndex
    +
    SHADER_LOC_VERTEX_INSTANCETRANSFORM - Static variable in class com.raylib.Raylib
    +
    +
    enum ShaderLocationIndex
    +
    SHADER_LOC_VERTEX_NORMAL - Static variable in class com.raylib.Raylib
    enum ShaderLocationIndex
    @@ -7048,6 +7222,22 @@

    S

    enum ShaderUniformDataType
    +
    SHADER_UNIFORM_UINT - Static variable in class com.raylib.Raylib
    +
    +
    enum ShaderUniformDataType
    +
    +
    SHADER_UNIFORM_UIVEC2 - Static variable in class com.raylib.Raylib
    +
    +
    enum ShaderUniformDataType
    +
    +
    SHADER_UNIFORM_UIVEC3 - Static variable in class com.raylib.Raylib
    +
    +
    enum ShaderUniformDataType
    +
    +
    SHADER_UNIFORM_UIVEC4 - Static variable in class com.raylib.Raylib
    +
    +
    enum ShaderUniformDataType
    +
    SHADER_UNIFORM_VEC2 - Static variable in class com.raylib.Raylib
    enum ShaderUniformDataType
    @@ -7066,6 +7256,10 @@

    S

     
    ShowCursor() - Static method in class com.raylib.Raylib
     
    +
    skeleton() - Method in class com.raylib.Raylib.Model
    +
     
    +
    skeleton(Raylib.ModelSkeleton) - Method in class com.raylib.Raylib.Model
    +
     
    SKYBLUE - Static variable in class com.raylib.Colors
     
    SLIDER - Static variable in class com.raylib.Raylib
    @@ -7096,17 +7290,13 @@

    S

     
    source(Raylib.Rectangle) - Method in class com.raylib.Raylib.NPatchInfo
     
    -
    SPIN_BUTTON_SPACING - Static variable in class com.raylib.Raylib
    -
    -
    enum GuiSpinnerProperty
    -
    -
    SPIN_BUTTON_WIDTH - Static variable in class com.raylib.Raylib
    +
    SPINNER_BUTTON_SPACING - Static variable in class com.raylib.Raylib
    -
    enum GuiSpinnerProperty
    +
    enum GuiValueBoxProperty
    -
    SPINNER - Static variable in class com.raylib.Raylib
    +
    SPINNER_BUTTON_WIDTH - Static variable in class com.raylib.Raylib
    -
    enum GuiControl
    +
    enum GuiValueBoxProperty
    StartAutomationEventRecording() - Static method in class com.raylib.Raylib
     
    @@ -7335,6 +7525,10 @@

    T

     
    TextInsert(BytePointer, BytePointer, int) - Static method in class com.raylib.Raylib
     
    +
    TextInsertAlloc(String, String, int) - Static method in class com.raylib.Raylib
    +
     
    +
    TextInsertAlloc(BytePointer, BytePointer, int) - Static method in class com.raylib.Raylib
    +
     
    TextIsEqual(String, String) - Static method in class com.raylib.Raylib
     
    TextIsEqual(BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    @@ -7357,10 +7551,26 @@

    T

     
    TextLength(BytePointer) - Static method in class com.raylib.Raylib
     
    +
    TextRemoveSpaces(String) - Static method in class com.raylib.Raylib
    +
     
    +
    TextRemoveSpaces(BytePointer) - Static method in class com.raylib.Raylib
    +
     
    TextReplace(String, String, String) - Static method in class com.raylib.Raylib
     
    TextReplace(BytePointer, BytePointer, BytePointer) - Static method in class com.raylib.Raylib
     
    +
    TextReplaceAlloc(String, String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    TextReplaceAlloc(BytePointer, BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    +
    TextReplaceBetween(String, String, String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    TextReplaceBetween(BytePointer, BytePointer, BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    +
    TextReplaceBetweenAlloc(String, String, String, String) - Static method in class com.raylib.Raylib
    +
     
    +
    TextReplaceBetweenAlloc(BytePointer, BytePointer, BytePointer, BytePointer) - Static method in class com.raylib.Raylib
    +
     
    TextSplit(String, byte, int[]) - Static method in class com.raylib.Raylib
     
    TextSplit(String, byte, IntBuffer) - Static method in class com.raylib.Raylib
    @@ -7580,8 +7790,6 @@

    U

     
    UnloadModel(Raylib.Model) - Static method in class com.raylib.Raylib
     
    -
    UnloadModelAnimation(Raylib.ModelAnimation) - Static method in class com.raylib.Raylib
    -
     
    UnloadModelAnimations(Raylib.ModelAnimation, int) - Static method in class com.raylib.Raylib
     
    UnloadMusicStream(Raylib.Music) - Static method in class com.raylib.Raylib
    @@ -7600,6 +7808,14 @@

    U

     
    UnloadSoundAlias(Raylib.Sound) - Static method in class com.raylib.Raylib
     
    +
    UnloadTextLines(byte[], int) - Static method in class com.raylib.Raylib
    +
     
    +
    UnloadTextLines(ByteBuffer, int) - Static method in class com.raylib.Raylib
    +
     
    +
    UnloadTextLines(BytePointer, int) - Static method in class com.raylib.Raylib
    +
     
    +
    UnloadTextLines(PointerPointer, int) - Static method in class com.raylib.Raylib
    +
     
    UnloadTexture(Raylib.Texture) - Static method in class com.raylib.Raylib
     
    UnloadUTF8(byte[]) - Static method in class com.raylib.Raylib
    @@ -7630,9 +7846,9 @@

    U

     
    UpdateMeshBuffer(Raylib.Mesh, int, Pointer, int, int) - Static method in class com.raylib.Raylib
     
    -
    UpdateModelAnimation(Raylib.Model, Raylib.ModelAnimation, int) - Static method in class com.raylib.Raylib
    +
    UpdateModelAnimation(Raylib.Model, Raylib.ModelAnimation, float) - Static method in class com.raylib.Raylib
     
    -
    UpdateModelAnimationBones(Raylib.Model, Raylib.ModelAnimation, int) - Static method in class com.raylib.Raylib
    +
    UpdateModelAnimationEx(Raylib.Model, Raylib.ModelAnimation, float, Raylib.ModelAnimation, float, float) - Static method in class com.raylib.Raylib
     
    UpdateMusicStream(Raylib.Music) - Static method in class com.raylib.Raylib
     
    @@ -8126,12 +8342,8 @@

    _

    _capacity() - Method in class com.raylib.Raylib.AutomationEventList
     
    -
    _capacity() - Method in class com.raylib.Raylib.FilePathList
    -
     
    _capacity(int) - Method in class com.raylib.Raylib.AutomationEventList
     
    -
    _capacity(int) - Method in class com.raylib.Raylib.FilePathList
    -
     
    _position() - Method in class com.raylib.Raylib.Camera3D
     
    _position() - Method in class com.raylib.Raylib.PhysicsBody
    @@ -8147,5 +8359,6 @@

    _

    A B C D E F G H I K L M N O P Q R S T U V W X Y Z _ 
    All Classes and Interfaces|All Packages|Constant Field Values
    +
    diff --git a/doc/index.html b/doc/index.html index a6b06d6..41fd84b 100644 --- a/doc/index.html +++ b/doc/index.html @@ -1,15 +1,15 @@ - + Generated Documentation (Untitled) - + - +