graphics/ubo

  Source   Edit

Procs

proc bind_all(ubos: seq[UBO]) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc bind_it(self: UBO; rebind = false) {....raises: [Exception],
    tags: [RootEffect].}
  Source   Edit
proc bind_to_prog(self: UBO; prog: GLuint; block_index: GLuint) {.inline,
    ...raises: [Exception, ValueError], tags: [RootEffect].}
  Source   Edit
proc check(self: UBO; prog: GLuint; block_index: GLuint) {.
    ...raises: [Exception, ValueError], tags: [RootEffect].}
  Source   Edit
proc destroy(self: UBO) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc get_index(self: UBO; prog: GLuint): GLuint {....raises: [Exception],
    tags: [RootEffect].}
  Source   Edit
proc initUBO[T](self: UBO; renderer: RenderManager; name: string;
                utype: typedesc[T]; count: int): UBO
  Source   Edit
proc len[T](self: UBO; utype: typedesc[T]): int
  Source   Edit
proc newUBO[T](engine: MyouEngine; name: string; utype: typedesc[T]; count: int): UBO
  Source   Edit
proc newUBO[T](renderer: RenderManager; name: string; utype: typedesc[T];
               count: int = 1): UBO
  Source   Edit
proc resize[T](self: UBO; utype: typedesc[T]; count: int)
  Source   Edit
proc set_prog_index(self: UBO; prog: GLuint; block_index: GLuint) {.inline,
    ...raises: [Exception, ValueError], tags: [RootEffect].}
  Source   Edit
proc unbind(self: UBO) {....raises: [Exception], tags: [RootEffect].}
  Source   Edit
proc update(self: UBO) {.inline, ...raises: [Exception], tags: [RootEffect].}
  Source   Edit

Templates

template is_valid(block_index: GLuint): bool
  Source   Edit
template storage[T](self: UBO; utype: typedesc[T]): ArrRef[T]
  Source   Edit