Home | History | Annotate | Download | only in penwell
      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 <Hwcomposer.h>
     18 #include <BufferManager.h>
     19 #include <penwell/PnwSpritePlane.h>
     20 #include <common/PixelFormat.h>
     21 
     22 namespace android {
     23 namespace intel {
     24 
     25 PnwSpritePlane::PnwSpritePlane(int index, int disp)
     26     : SpritePlaneBase(index, disp)
     27 {
     28     CTRACE();
     29 }
     30 
     31 PnwSpritePlane::~PnwSpritePlane()
     32 {
     33     CTRACE();
     34 }
     35 
     36 bool PnwSpritePlane::setDataBuffer(BufferMapper& mapper)
     37 {
     38     // TODO: implement setDataBuffer
     39     return false;
     40 }
     41 
     42 void* PnwSpritePlane::getContext() const
     43 {
     44     CTRACE();
     45     // TODO: return penwell sprite context
     46     return 0;
     47 }
     48 
     49 } // namespace intel
     50 } // namespace android
     51