Skip to content

void256/nanovg_sokol.h

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nanovg_sokol.h

nanovg sokol renderer and example

This repository contains nanovg_sokol.h, a renderer implementation for memononen/nanovg that uses floooh/sokol.

Additionally, the original nanovg demo is included as example code.

nanovg_sokol.h was created by @darkuranium and @zeromake, see floooh/sokol#633 for it's history. I've only contributed a tiny fix to make font rendering work.

Files included

The only file you actually need:

It embedds all the required shader code and supports the following shader languages: glsl410:glsl300es:hlsl4:metal_macos:metal_ios:metal_sim:wgsl.

Everything else is just required for the demo and the example setup:

Usage

The only file you actually need is nanovg_sokol.h and you'll use nvgCreateSokol to create the NVGcontext.

#include "nanovg.h"

#define NANOVG_SOKOL_IMPLEMENTATION 1
#include "nanovg_sokol.h"

// in your init_cb call somewhere
sg_desc ctx = (sg_desc) {
    ...
    .pipeline_pool_size = 512, // <-------- add this line or you'll get errors
};
...
NVGcontext* vg = nvgCreateSokol(NVG_ANTIALIAS | NVG_STENCIL_STROKES);
if (vg == NULL) {
    printf("Could not init NanoVG.\n");
    return;
}

// in your sokol frame_cb call:
sg_begin_pass(&(sg_pass){ .action = pass_action, .swapchain = sglue_swapchain() });

nvgBeginFrame(vg, winWidth, winHeight, pxRatio);
// use vg from now on to call nanovg functions ...
nvgEndFrame(vg);

sg_end_pass();
sg_commit();

Build the demo

You'll need ninja-build and then simply call:

ninja build/main
cd build
./main

The build.ninja file currently only supports macOS and uses SOKOL_METAL but can be easily adjusted for other operating systems.

If everything worked it should look like this:

nanovg_sokol_demo.mov

😎

About

nanovg sokol renderer and example

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published