(name: Key)
| 137 | |
| 138 | /* Retrieve the property `name` passed when the draw command is executed. */ |
| 139 | prop<Props extends {}, Key extends keyof Props>(name: Key): DynamicVariable<Props[Key]>; |
| 140 | /* Retrieve the context property `name` when the draw command is executed. */ |
| 141 | context<Context extends REGL.DefaultContext, K extends keyof Context>(name: K): DynamicVariable<Context[K]>; |
| 142 | /* Retrieve the property `name` of the object in whose context the draw command is executing. */ |
no outgoing calls
no test coverage detected