| | |
| | | m_pCellData = (_grmCellData*)&m_pGlassRawData[m_pGlassRawInfo->m_nCellDataPoint]; |
| | | m_pDefectData = (_grmDefectData*)&m_pGlassRawData[m_pGlassRawInfo->m_nDefectDataPoint]; |
| | | m_pStackData = (_grmDefectData*)&m_pGlassRawData[m_pGlassRawInfo->m_nStackDataPoint]; |
| | | /*< KJG 20211024 - #3487 ADD Start >*/ |
| | | m_pRawMergeData = (_grmDefectData*)&m_pGlassRawData[m_pGlassRawInfo->m_nRawMergeDataPoint]; |
| | | /*< KJG 20211024 - #3487 ADD End >*/ |
| | | |
| | | return TRUE; |
| | | } |
| | |
| | | BOOL CDitGlassRawClient::ReadAOIRawBinFile() |
| | | { |
| | | return SetCommand(grcReadBin); |
| | | } |
| | | |
| | | BOOL CDitGlassRawClient::WriteReviewRawBinFile() |
| | | { |
| | | return SetCommand(grcReviewWriteBIn); |
| | | } |
| | | |
| | | BOOL CDitGlassRawClient::SetCommand( emGlassRawCommand nCmd ) |
| | |
| | | if(isConnect() == FALSE) return FALSE; |
| | | m_pGlassRawInfo->m_ClientProcStep = APS_GlassLoading; |
| | | m_pGlassData->m_bStackRead = FALSE; |
| | | /*< KJG 20211024 - #3487 ADD Start >*/ |
| | | m_pGlassData->m_bRawMergeRead = FALSE; |
| | | /*< KJG 20211024 - #3487 ADD End >*/ |
| | | return SetCommand(grcSequenceGlassLoading); |
| | | } |
| | | |