MCPcopy Create free account
hub / github.com/golang/mobile / GetProgrami

Method GetProgrami

gl/gl.go:785–794  ·  view source on GitHub ↗
(p Program, pname Enum)

Source from the content-addressed store, hash-verified

783}
784
785func (ctx *context) GetProgrami(p Program, pname Enum) int {
786 return int(ctx.enqueue(call{
787 args: fnargs{
788 fn: glfnGetProgramiv,
789 a0: p.c(),
790 a1: pname.c(),
791 },
792 blocking: true,
793 }))
794}
795
796func (ctx *context) GetProgramInfoLog(p Program) string {
797 infoLen := ctx.GetProgrami(p, INFO_LOG_LENGTH)

Callers 4

GetActiveAttribMethod · 0.95
GetActiveUniformMethod · 0.95
GetAttachedShadersMethod · 0.95
GetProgramInfoLogMethod · 0.95

Calls 2

enqueueMethod · 0.95
cMethod · 0.45

Tested by

no test coverage detected