This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "sokol_gfx.h" | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| /* | |
| Return size of image mip level in bytes | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /////////////////////////////// | |
| // Exemple | |
| /////////////////////////////// | |
| Core::ImGuiPlus::StackId oStackId( "Columns" ); | |
| ImGui::Columns( 3 ); | |
| ImGui::Text( "Header1" ); | |
| ImGui::NextColumn(); | |
| ImGui::Text( "Header2" ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using FastBitmap; | |
| using System; | |
| using System.Collections.Generic; | |
| namespace SkinsetGenerator | |
| { | |
| public abstract class RectPacker | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Usage: | |
| struct MyStruct | |
| { | |
| public string MyString { get; set; } = "this is my value"; | |
| public int MyInt { get; set; } = 42; | |
| public bool MyBool { get; set; } = true; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // cl /I celt /I silk /I silk/float /I include /c opus.c | |
| // lib opus.obj | |
| #define OPUS_CPU_X64 | |
| #define USE_ALLOCA | |
| #define OPUS_BUILD | |
| #include "celt/bands.c" | |
| #include "celt/celt.c" | |
| #include "celt/celt_encoder.c" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "monocypher.h" | |
| #include "base64.h" | |
| #include <stdlib.h> | |
| void main() | |
| { | |
| uint8_t pMasterPrivateKey[32]; | |
| uint8_t pMasterPublicKey[32]; |
OlderNewer