Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3ece985a7c85
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3817297c845c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 25, 2021

  1. Copy the full SHA
    3817297 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 scopeprotocols/EyePattern.cpp
8 changes: 4 additions & 4 deletions scopeprotocols/EyePattern.cpp
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
* *
* ANTIKERNEL v0.1 *
* *
* Copyright (c) 2012-2020 Andrew D. Zonenberg *
* Copyright (c) 2012-2021 Andrew D. Zonenberg *
* All rights reserved. *
* *
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the *
@@ -447,7 +447,7 @@ void EyePattern::Refresh()
if(cap->m_uiWidth < FLT_EPSILON)
RecalculateUIWidth();

//Shift the clock leby half a UI if it's edge aligned
//Shift the clock by half a UI if it's edge aligned
//All of the eye creation logic assumes a center aligned clock.
if(clock_align == ALIGN_EDGE)
{
@@ -477,9 +477,9 @@ void EyePattern::Refresh()
//We can assume m_offsets[i] = i and m_durations[i] = 0 for all input
if(waveform->m_densePacked)
{
/*if(g_hasAvx2)
if(g_hasAvx2)
DensePackedInnerLoopAVX2(waveform, clock_edges, data, wend, cend, xmax, ymax, xtimescale, yscale, yoff);
else*/
else
DensePackedInnerLoop(waveform, clock_edges, data, wend, cend, xmax, ymax, xtimescale, yscale, yoff);
}