1 /****************************************************************************** 2 / 3 / File: VIP.cpp 4 / 5 / Description: ATI Radeon Video Input Port (VIP) interface. 6 / 7 / Copyright 2001, Carlos Hasan 8 / 9 *******************************************************************************/ 10 11 #include <Debug.h> 12 #include "VIPPort.h" 13 14 CVIPPort::CVIPPort(CRadeon & radeon) 15 : fRadeon(radeon) 16 { 17 PRINT(("CVIPPort::CVIPPort()\n")); 18 } 19 20 CVIPPort::~CVIPPort() 21 { 22 PRINT(("CVIPPort::~CVIPPort()\n")); 23 } 24 25 status_t CVIPPort::InitCheck() const 26 { 27 return fRadeon.InitCheck(); 28 } 29 30 CRadeon & CVIPPort::Radeon() 31 { 32 return fRadeon; 33 } 34