I stumbled across strange bit of code (probably it's my lack of c syntax):
argument
is being passed into method, later on I see two contridicting things:
and another bit
From what I can understand, argument is a regular reference of type uint8.
So what square brackets has to do with it? Is it access to particular bit?
Also method comments tells me that parameter represents row of values (e.g. array), but again, I can't see any signs of that value being passed as an array.
Any ideas?
argument
Code:
uint8* Y_dst1
Code:
Y_dst1[0] = …; Y_dst1[1] = …;
Code:
Y_dst1 += 2;
So what square brackets has to do with it? Is it access to particular bit?
Also method comments tells me that parameter represents row of values (e.g. array), but again, I can't see any signs of that value being passed as an array.
Any ideas?
Comment