File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.16 )
2- project (DEADGL VERSION 5 .0.0 LANGUAGES C )
2+ project (DEADGL VERSION 6 .0.0 LANGUAGES C )
33set (CMAKE_C_STANDARD 99)
44set (CMAKE_C_STANDARD_REQUIRED ON )
55set (CMAKE_C_EXTENSIONS OFF )
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ Windows release path:
2727powershell -ExecutionPolicy Bypass -File .\scripts\release.ps1
2828```
2929
30- Output lands in ` dist/deadgl-5 .0.0 ` .
30+ Output lands in ` dist/deadgl-6 .0.0 ` .
3131
3232Warnings are errors. That is hygiene.
Original file line number Diff line number Diff line change 11# State
22
3- Current cut: ` 5 .0.0`
3+ Current cut: ` 6 .0.0`
44
55The renderer is a CPU framebuffer command machine.
66
Original file line number Diff line number Diff line change 88extern "C" {
99#endif
1010
11- #define DGL_VERSION "5 .0.0"
11+ #define DGL_VERSION "6 .0.0"
1212#define DGL_MAX_DIM 16384
1313#define DGL_MAX_PIXELS 67108864u
1414#define DGL_FAR 1.0e30f
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ int main(void) {
99 uint32_t c = 0 ;
1010 uint64_t before ;
1111 uint64_t after ;
12- CHECK (strcmp (dgl_version (), "5 .0.0" ) == 0 );
12+ CHECK (strcmp (dgl_version (), "6 .0.0" ) == 0 );
1313 CHECK (dgl_surface_init (& s , 64 , 48 ) == DGL_OK );
1414 CHECK (dgl_surface_valid (& s ));
1515 CHECK (dgl_surface_pixel_count (& s ) == 64u * 48u );
You can’t perform that action at this time.
0 commit comments