package kha.graphics4; import haxe.io.Bytes; import kha.Blob; @:headerCode(" #include ") @:headerClassCode("kinc_g4_shader_t shader;") class GeometryShader { public function new(sources: Array, files: Array) { init(sources[0], files[0]); } function init(source: Blob, file: String): Void { untyped __cpp__("kinc_g4_shader_init(&shader, source->bytes->b->Pointer(), source->get_length(), KINC_G4_SHADER_TYPE_GEOMETRY);"); } public function delete(): Void { untyped __cpp__("kinc_g4_shader_destroy(&shader);"); } @:keep function _forceInclude(): Void { Bytes.alloc(0); } }