@@ -177,7 +177,7 @@ FUNCTIONS
177177 Check if application should close (KEY_ESCAPE pressed or windows close
178178 icon clicked).
179179
180- IsWindowReady () : bool
180+ IsWindowValid () : bool
181181
182182 Check if window has been initialized successfully.
183183
@@ -274,6 +274,10 @@ FUNCTIONS
274274
275275 Set window opacity [0.0f..1.0f]
276276
277+ SetWindowFocused()
278+
279+ Set window focused
280+
277281 GetScreenWidth() : int
278282
279283 Get current screen width.
@@ -342,6 +346,10 @@ FUNCTIONS
342346
343347 Get clipboard text content.
344348
349+ GetClipboardImage() : Raylib::FFI::Image
350+
351+ Get clipboard image content.
352+
345353 EnableEventWaiting()
346354
347355 Enable waiting for events on EndDrawing, automatic event polling.
@@ -459,9 +467,9 @@ FUNCTIONS
459467
460468 Load shader from code strings and bind default locations.
461469
462- IsShaderReady ( $shader ) : bool
470+ IsShaderValid ( $shader ) : bool
463471
464- Check if a shader is ready .
472+ Check if a shader is valid .
465473
466474 GetShaderLocation( $shader, $uniformName ) : int
467475
@@ -1082,7 +1090,7 @@ FUNCTIONS
10821090 Load image from screen buffer and (screenshot) NOTE: This function
10831091 requires GPU access
10841092
1085- IsImageReady ( $image ) : bool
1093+ IsImageValid ( $image ) : bool
10861094
10871095 Check if an image is ready
10881096
@@ -1356,15 +1364,15 @@ FUNCTIONS
13561364 Load texture for rendering (framebuffer) NOTE: This function requires
13571365 GPU access
13581366
1359- IsTextureReady ( $texture ) : bool
1367+ IsTextureValid ( $texture ) : bool
13601368
1361- Check if a texture is ready
1369+ Check if a texture is valid
13621370
13631371 UnloadTexture( $texture )
13641372
13651373 Unload texture from GPU memory (VRAM)
13661374
1367- IsRenderTextureReady ( $renderTexture ) : bool
1375+ IsReanderTextureValid ( $renderTexture ) : bool
13681376
13691377 Check if a render texture is ready
13701378
@@ -1498,9 +1506,9 @@ FUNCTIONS
14981506
14991507 Load font from memory buffer, fileType refers to extension: i.e. '.ttf'
15001508
1501- IsFontReady ( $font ) : bool
1509+ IsFontValid ( $font ) : bool
15021510
1503- Check if a font is ready
1511+ Check if a font is valid.
15041512
15051513 LoadFontData( $fileData, $dataSize, $fontSize, $fontChars, $glyphCount,
15061514 $type ) : Raylib::FFI::GlyphInfo
@@ -1698,7 +1706,7 @@ FUNCTIONS
16981706
16991707 Load model from generated mesh (default material)
17001708
1701- IsModelReady ( $model ) : bool
1709+ IsModelValid ( $model ) : bool
17021710
17031711 Check if an model is ready
17041712
@@ -1822,7 +1830,7 @@ FUNCTIONS
18221830 Load default material (Supports: Diffuse Maps, Specular Maps, Normal
18231831 Maps)
18241832
1825- IsMaterialReady ( $material ) : bool
1833+ IsMaterialValid ( $material ) : bool
18261834
18271835 Check if a material is ready
18281836
@@ -1901,7 +1909,7 @@ FUNCTIONS
19011909
19021910 Close the audio device and context
19031911
1904- IsAudioDeviceReady () : bool
1912+ IsAudioDeviceValid () : bool
19051913
19061914 Check if audio device has been initialized successfully
19071915
@@ -1934,7 +1942,7 @@ FUNCTIONS
19341942 Create a new sound that shares the same sound data as another existing
19351943 sound
19361944
1937- IsSoundReady ( $sound ) : bool
1945+ IsSoundValid ( $sound ) : bool
19381946
19391947 Check if a sound is ready
19401948
@@ -2015,7 +2023,7 @@ FUNCTIONS
20152023
20162024 Load music stream from data
20172025
2018- IsMusicReady ( $music ) : bool
2026+ IsMusicValid ( $music ) : bool
20192027
20202028 Check if music stream is ready
20212029
@@ -2076,9 +2084,9 @@ FUNCTIONS
20762084
20772085 Load audio stream (to stream raw audio pcm data)
20782086
2079- IsAudioStreamReady ( $audioStream ) : bool
2087+ IsAudioStreamValid ( $audioStream ) : bool
20802088
2081- Check if an audio stream is ready
2089+ Check if an audio stream is valid
20822090
20832091 UnloadAudioStream( $audioStream )
20842092
@@ -2171,15 +2179,15 @@ POD ERRORS
21712179 Hey! The above document had some coding errors, which are explained
21722180 below:
21732181
2174- Around line 2685 :
2182+ Around line 2732 :
21752183
21762184 Unknown directive: =head
21772185
2178- Around line 2689 :
2186+ Around line 2736 :
21792187
21802188 Unknown directive: =head
21812189
2182- Around line 2693 :
2190+ Around line 2740 :
21832191
21842192 Unknown directive: =head
21852193
0 commit comments