HomeSort by relevance Sort by last modified time
    Searched defs:surfaceType (Results 1 - 5 of 5) sorted by null

  /external/chromium/webkit/glue/
webvideoframe_impl.cc 50 WebVideoFrame::SurfaceType WebVideoFrameImpl::surfaceType() const {
52 return static_cast<WebVideoFrame::SurfaceType>(video_frame_->type());
  /external/webkit/Source/WebKit/chromium/src/
VideoFrameChromiumImpl.cpp 54 VideoFrameChromium::SurfaceType VideoFrameChromiumImpl::surfaceType() const
57 return static_cast<VideoFrameChromium::SurfaceType>(m_webVideoFrame->surfaceType());
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
EglConfig.h 33 EGLint surfaceType(){ return m_surface_type;};
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp 102 EGLint surfaceType;
104 EGL_SURFACE_TYPE, &surfaceType);
105 if (!(surfaceType & EGL_PBUFFER_BIT)) continue;
  /development/tools/emulator/opengl/system/egl/
egl.cpp 173 egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
188 EGLint getSurfaceType(){ return surfaceType; }
209 EGLint surfaceType;
216 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType)
217 : dpy(dpy), config(config), surfaceType(surfaceType), valid(EGL_FALSE), rcSurface(0)
653 EGLint surfaceType;
654 if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE) return EGL_FALSE;
656 if (!(surfaceType & EGL_WINDOW_BIT)) {
665 surface = new egl_window_surface_t(&s_display, config, surfaceType, static_cast<ANativeWindow*>(win))
    [all...]

Completed in 66 milliseconds