Class BGFXInit

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class BGFXInit extends Struct<BGFXInit> implements NativeResource
Initialization parameters used by init.

Layout


 struct bgfx_init_t {
     bgfx_renderer_type_t type();
     uint16_t vendorId();
     uint16_t deviceId();
     uint64_t capabilities();
     bool debug();
     bool profile();
     bgfx_platform_data_t platformData();
     bgfx_resolution_t resolution();
     bgfx_init_limits_t limits();
     bgfx_callback_interface_t * callback();
     bgfx_allocator_interface_t * allocator();
 }