MCPcopy
hub / github.com/fogleman/nes / Step

Method Step

nes/filter.go:50–57  ·  view source on GitHub ↗
(x float32)

Source from the content-addressed store, hash-verified

48type FilterChain []Filter
49
50func (fc FilterChain) Step(x float32) float32 {
51 if fc != nil {
52 for i := range fc {
53 x = fc[i].Step(x)
54 }
55 }
56 return x
57}

Callers

nothing calls this directly

Calls 1

StepMethod · 0.65

Tested by

no test coverage detected