1 /* 2 // Copyright(c)2014 IntelCorporation 3 // 4 // LicensedundertheApacheLicense,Version2.0(the"License"); 5 // youmaynotusethisfileexceptincompliancewiththeLicense. 6 // YoumayobtainacopyoftheLicenseat 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unlessrequiredbyapplicablelaworagreedtoinwriting,software 11 // distributedundertheLicenseisdistributedonan"ASIS"BASIS, 12 // WITHOUTWARRANTIESORCONDITIONSOFANYKIND,eitherexpressorimplied. 13 // SeetheLicenseforthespecificlanguagegoverningpermissionsand 14 // limitationsundertheLicense. 15 */ 16 #include <HwcTrace.h> 17 #include <Drm.h> 18 #include <Hwcomposer.h> 19 #include <penwell/PnwGrallocBufferMapper.h> 20 21 namespace android { 22 namespace intel { 23 24 PnwGrallocBufferMapper::PnwGrallocBufferMapper(DataBuffer& buffer) 25 : GrallocBufferMapperBase(buffer) 26 { 27 CTRACE(); 28 } 29 30 PnwGrallocBufferMapper::~PnwGrallocBufferMapper() 31 { 32 CTRACE(); 33 } 34 35 bool PnwGrallocBufferMapper::map() 36 { 37 // TODO: implement map 38 return false; 39 } 40 41 bool PnwGrallocBufferMapper::unmap() 42 { 43 //TODO: implement unmap 44 return false; 45 } 46 47 } // namespace intel 48 } // namespace android 49