I hereby claim:
- I am thennequin on github.
- I am thennequin (https://keybase.io/thennequin) on keybase.
- I have a public key ASCFW6n8BxTAmHR_GJh7Cbnm22clQwsORXYPCrcSvc1Skwo
To claim this, I am signing this object:
#include "monocypher.h" | |
#include "base64.h" | |
#include <stdlib.h> | |
void main() | |
{ | |
uint8_t pMasterPrivateKey[32]; | |
uint8_t pMasterPublicKey[32]; |
// 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" |
/* | |
Usage: | |
struct MyStruct | |
{ | |
public string MyString { get; set; } = "this is my value"; | |
public int MyInt { get; set; } = 42; | |
public bool MyBool { get; set; } = true; | |
} |
using System.Drawing; | |
using System.Drawing.Drawing2D; | |
using FastBitmap; | |
using System; | |
using System.Collections.Generic; | |
namespace SkinsetGenerator | |
{ | |
public abstract class RectPacker | |
{ |
/////////////////////////////// | |
// Exemple | |
/////////////////////////////// | |
Core::ImGuiPlus::StackId oStackId( "Columns" ); | |
ImGui::Columns( 3 ); | |
ImGui::Text( "Header1" ); | |
ImGui::NextColumn(); | |
ImGui::Text( "Header2" ); |
#include "sokol_gfx.h" | |
#ifdef __cplusplus | |
extern "C" { | |
#endif | |
/* | |
Return size of image mip level in bytes | |
*/ |
/* | |
Need implementation, use: | |
#define VULKAN_UTILS_IMPLEMENT | |
*/ | |
#include <vulkan/vulkan.h> | |
VkResult vkFindBestPhysicalDevice(VkInstance vkInstance, VkSurfaceKHR vkSurface, VkPhysicalDevice* pOutVkPhysicalDevice, int* pOutVkPhysicalDeviceScore); | |
////////////////////////////////// |
I hereby claim:
To claim this, I am signing this object:
int BeginCombo(const char* pLabel, const char* pValue) | |
{ | |
ImGuiWindow* pWindow = ImGui::GetCurrentWindow(); | |
ImGuiState& oState = *GImGui; | |
const ImGuiStyle& oStyle = oState.Style; | |
const ImGuiID oId = pWindow->GetID(pLabel); | |
const float fWidth = ImGui::CalcItemWidth(); | |
const ImVec2 oLabelSize = ImGui::CalcTextSize(pLabel, NULL, true); |