Home | History | Annotate | Download | only in EGL
      1 /*
      2 * Copyright (C) 2011 The Android Open Source Project
      3 *
      4 * Licensed under the Apache License, Version 2.0 (the "License");
      5 * you may not use this file except in compliance with the License.
      6 * You may obtain a copy of the License at
      7 *
      8 * http://www.apache.org/licenses/LICENSE-2.0
      9 *
     10 * Unless required by applicable law or agreed to in writing, software
     11 * distributed under the License is distributed on an "AS IS" BASIS,
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 * See the License for the specific language governing permissions and
     14 * limitations under the License.
     15 */
     16 #include "EglSurface.h"
     17 #include "EglOsApi.h"
     18 
     19 unsigned int EglSurface::s_nextSurfaceHndl = 0;
     20 
     21 EglSurface::~EglSurface(){
     22 
     23     if(m_type == EglSurface::PBUFFER) {
     24         EglOS::releasePbuffer(m_dpy->nativeType(),m_native);
     25     }
     26 
     27     if(m_native) EglOS::destroySurface(m_native);
     28 }
     29 
     30 bool  EglSurface::setAttrib(EGLint attrib,EGLint val) {
     31     switch(attrib) {
     32     case EGL_WIDTH:
     33     case EGL_HEIGHT:
     34     case EGL_LARGEST_PBUFFER:
     35     case EGL_TEXTURE_FORMAT:
     36     case EGL_TEXTURE_TARGET:
     37     case EGL_MIPMAP_TEXTURE:
     38         break;
     39     default:
     40         return false;
     41     }
     42     return true;
     43 }
     44