#gl #profiling #opengl #debugging #api-bindings

gl_generator_profiling_struct

ProfilingStructGenerator for gl_generator

3 releases

Uses old Rust 2015

0.1.2 Aug 18, 2018
0.1.1 Aug 18, 2018
0.1.0 Aug 18, 2018

#1162 in Graphics APIs

Download history 4/week @ 2024-11-13 14/week @ 2024-11-20 16/week @ 2024-11-27 23/week @ 2024-12-04 64/week @ 2024-12-11 15/week @ 2024-12-18 8/week @ 2025-01-01 15/week @ 2025-01-08 37/week @ 2025-01-15 20/week @ 2025-01-22 23/week @ 2025-01-29 34/week @ 2025-02-05 45/week @ 2025-02-12 15/week @ 2025-02-19 33/week @ 2025-02-26

133 downloads per month

MIT/Apache

18KB
324 lines

Profiling struct generator

Yet another generator for gl_generator, very similar to DebugStructGenerator, but with these changes/additions:

  • It does not log all calls. It only logs a call that caused an error.
  • The corresponding explanation is included with the error code.
  • Contains a profiler that tracks the number of GL calls and errors.

Using the profiler

The generated gl module gains 3 additional methods:

  • profiler_reset() - resets the profiler;
  • profiler_call_count() -> usize - returns the number of calls since the last reset (or application start);
  • profiler_err_count() -> usize - returns the number of errors since the last reset (or application start);

Example usage:

gl::profiler_reset();

// the code

println!("Number of GL calls: {}", gl::profiler_call_count());
println!("Number of GL errors: {}", gl::profiler_err_count());

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1MB
~12K SLoC