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 18 #include "EglDisplay.h" 19 #include "EglOsApi.h" 20 21 unsigned int EglSurface::s_nextSurfaceHndl = 0; 22 ~EglSurface()23EglSurface::~EglSurface(){ 24 25 if(m_type == EglSurface::PBUFFER) { 26 m_dpy->nativeType()->releasePbuffer(m_native); 27 } 28 29 } 30 setAttrib(EGLint attrib,EGLint val)31bool EglSurface::setAttrib(EGLint attrib,EGLint val) { 32 switch(attrib) { 33 case EGL_WIDTH: 34 case EGL_HEIGHT: 35 case EGL_LARGEST_PBUFFER: 36 case EGL_TEXTURE_FORMAT: 37 case EGL_TEXTURE_TARGET: 38 case EGL_MIPMAP_TEXTURE: 39 break; 40 default: 41 return false; 42 } 43 return true; 44 } 45