示例#1
0
        private void TestDefaultEffect()
        {
            int  hr;
            Guid g = typeof(DxtAlphaSetter).GUID;
            Guid g2;

            hr = m_pTimeline.SetDefaultEffect(g);
            DsError.ThrowExceptionForHR(hr);

            hr = m_pTimeline.GetDefaultEffect(out g2);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert(g == g2, "GetDefaultEffect");
        }