update docs

This commit is contained in:
richard 2022-02-04 11:11:14 +00:00
parent ef91af804b
commit d05890344d
19 changed files with 725 additions and 172 deletions

View file

@ -892,6 +892,16 @@ CFFI C function from raylib._raylib_cffi.lib"""
def GuiCheckBox(Rectangle_0: Rectangle,str_1: str,_Bool_2: bool,) -> bool:
"""_Bool GuiCheckBox(struct Rectangle, char *, _Bool);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiCheckIconPixel(int_0: int,int_1: int,int_2: int,) -> bool:
"""_Bool GuiCheckIconPixel(int, int, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiClearIconPixel(int_0: int,int_1: int,int_2: int,) -> None:
"""void GuiClearIconPixel(int, int, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiColorBarAlpha(Rectangle_0: Rectangle,float_1: float,) -> float:
@ -922,6 +932,11 @@ CFFI C function from raylib._raylib_cffi.lib"""
def GuiDisable() -> None:
"""void GuiDisable();
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiDrawIcon(int_0: int,int_1: int,int_2: int,int_3: int,Color_4: Color,) -> None:
"""void GuiDrawIcon(int, int, int, int, struct Color);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiDropdownBox(Rectangle_0: Rectangle,str_1: str,int_pointer_2: Any,_Bool_3: bool,) -> bool:
@ -947,6 +962,16 @@ CFFI C function from raylib._raylib_cffi.lib"""
def GuiGetFont() -> Font:
"""struct Font GuiGetFont();
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiGetIconData(int_0: int,) -> Any:
"""unsigned int *GuiGetIconData(int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiGetIcons() -> Any:
"""unsigned int *GuiGetIcons();
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiGetState() -> int:
@ -974,13 +999,8 @@ def GuiIconText(int_0: int,str_1: str,) -> str:
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiImageButton(Rectangle_0: Rectangle,str_1: str,Texture_2: Texture,) -> bool:
"""_Bool GuiImageButton(struct Rectangle, char *, struct Texture);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiImageButtonEx(Rectangle_0: Rectangle,str_1: str,Texture_2: Texture,Rectangle_3: Rectangle,) -> bool:
"""_Bool GuiImageButtonEx(struct Rectangle, char *, struct Texture, struct Rectangle);
def GuiIsLocked() -> bool:
"""_Bool GuiIsLocked();
CFFI C function from raylib._raylib_cffi.lib"""
...
@ -1052,6 +1072,16 @@ CFFI C function from raylib._raylib_cffi.lib"""
def GuiSetFont(Font_0: Font,) -> None:
"""void GuiSetFont(struct Font);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiSetIconData(int_0: int,unsignedint_pointer_1: Any,) -> None:
"""void GuiSetIconData(int, unsigned int *);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiSetIconPixel(int_0: int,int_1: int,int_2: int,) -> None:
"""void GuiSetIconPixel(int, int, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def GuiSetState(int_0: int,) -> None:
@ -2283,6 +2313,16 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlBegin(int_0: int,) -> None:
"""void rlBegin(int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlBindImageTexture(unsignedint_0: int,unsignedint_1: int,unsignedint_2: int,int_3: int,) -> None:
"""void rlBindImageTexture(unsigned int, unsigned int, unsigned int, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlBindShaderBuffer(unsignedint_0: int,unsignedint_1: int,) -> None:
"""void rlBindShaderBuffer(unsigned int, unsigned int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlCheckErrors() -> None:
@ -2323,6 +2363,16 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlCompileShader(str_0: str,int_1: int,) -> int:
"""unsigned int rlCompileShader(char *, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlComputeShaderDispatch(unsignedint_0: int,unsignedint_1: int,unsignedint_2: int,) -> None:
"""void rlComputeShaderDispatch(unsigned int, unsigned int, unsigned int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlCopyBuffersElements(unsignedint_0: int,unsignedint_1: int,unsignedlonglong_2: int,unsignedlonglong_3: int,unsignedlonglong_4: int,) -> None:
"""void rlCopyBuffersElements(unsigned int, unsigned int, unsigned long long, unsigned long long, unsigned long long);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlDisableBackfaceCulling() -> None:
@ -2598,6 +2648,11 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlGetPixelFormatName(unsignedint_0: int,) -> str:
"""char *rlGetPixelFormatName(unsigned int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlGetShaderBufferSize(unsignedint_0: int,) -> int:
"""unsigned long long rlGetShaderBufferSize(unsigned int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlGetShaderIdDefault() -> int:
@ -2623,6 +2678,11 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlIsStereoRenderEnabled() -> bool:
"""_Bool rlIsStereoRenderEnabled();
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlLoadComputeShaderProgram(unsignedint_0: int,) -> int:
"""unsigned int rlLoadComputeShaderProgram(unsigned int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlLoadDrawCube() -> None:
@ -2653,6 +2713,11 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlLoadRenderBatch(int_0: int,int_1: int,) -> rlRenderBatch:
"""struct rlRenderBatch rlLoadRenderBatch(int, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlLoadShaderBuffer(unsignedlonglong_0: int,void_pointer_1: Any,int_2: int,) -> int:
"""unsigned int rlLoadShaderBuffer(unsigned long long, void *, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlLoadShaderCode(str_0: str,str_1: str,) -> int:
@ -2728,6 +2793,11 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlReadScreenPixels(int_0: int,int_1: int,) -> str:
"""unsigned char *rlReadScreenPixels(int, int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlReadShaderBufferElements(unsignedint_0: int,void_pointer_1: Any,unsignedlonglong_2: int,unsignedlonglong_3: int,) -> None:
"""void rlReadShaderBufferElements(unsigned int, void *, unsigned long long, unsigned long long);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlReadTexturePixels(unsignedint_0: int,int_1: int,int_2: int,int_3: int,) -> Any:
@ -2853,6 +2923,11 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlUnloadRenderBatch(rlRenderBatch_0: rlRenderBatch,) -> None:
"""void rlUnloadRenderBatch(struct rlRenderBatch);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlUnloadShaderBuffer(unsignedint_0: int,) -> None:
"""void rlUnloadShaderBuffer(unsigned int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlUnloadShaderProgram(unsignedint_0: int,) -> None:
@ -2873,6 +2948,11 @@ CFFI C function from raylib._raylib_cffi.lib"""
def rlUnloadVertexBuffer(unsignedint_0: int,) -> None:
"""void rlUnloadVertexBuffer(unsigned int);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlUpdateShaderBufferElements(unsignedint_0: int,void_pointer_1: Any,unsignedlonglong_2: int,unsignedlonglong_3: int,) -> None:
"""void rlUpdateShaderBufferElements(unsigned int, void *, unsigned long long, unsigned long long);
CFFI C function from raylib._raylib_cffi.lib"""
...
def rlUpdateTexture(unsignedint_0: int,int_1: int,int_2: int,int_3: int,int_4: int,int_5: int,void_pointer_6: Any,) -> None: