Alex Shovkoplyas

Results 5 issues of Alex Shovkoplyas

This statement does not change the integer uniform: ``` shaderProgram.SetUniform1(gl, "my_texture", 1); ``` This one works orrectly: ``` gl.Uniform1(shaderProgram.GetUniformLocation(gl, "my_texture"), 1); ``` The problem with the first statement is that...

The `clipToStartTime: false` parameter of `GroundStation.Observe` does not work, because the last term in the condition to walk back always evaluates to false: ``` if (!clipToStartTime && obs.Count > 0...

Under certain circumstances the elevation angle of a satellite gets stuck at some positive value, and `FindNextAboveToBelowCrossingPoint` finds the crossing only a few years in the future. This code reproduces...

I have created a Visual Studio solution to build the SoapySDR C# bindings for .net 8.0, and generated html documentation for the bindings. The solution also includes a utility in...

**Problem Description** The C wrapper around `SoapySDR::ArgInfo` looks like this: ``` static inline SoapySDRArgInfo toArgInfo(const SoapySDR::ArgInfo &info) { SoapySDRArgInfo out; std::memset(&out, 0, sizeof(out)); try { ... out.optionNames = toStrArray(info.optionNames, &out.numOptions);...