Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 691 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 691 Bytes

nyancore

Small lib for my personal projects

used in lamia sdf editor

Awesome libs used in this project

  • Dear ImGUI (with cImGui interface)
  • enet
  • glfw
  • glslang
  • tracy
  • vulkan-zig

Math implementation is based on cglm implementation

Tracing

If you have enabled tracing, add zone tracing code

const tracy = @import("tracy.zig");

var zone: tracy.Zone = tracy.Zone.start_color_from_file(@src(), null);
defer zone.end();

Different start functions control how color for zone is choosen. You can choose your own with 0xRRGGBB Frames are automaticaly traced in Application main loop

Use tracy v0.8 to connect to application