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

  /external/webkit/Source/WebKit/chromium/public/
WebVideoFrame.h 54 enum SurfaceType {
59 virtual SurfaceType surfaceType() const = 0;
  /external/chromium/webkit/glue/
webvideoframe_impl.h 21 virtual WebVideoFrame::SurfaceType surfaceType() const;
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.h 50 virtual SurfaceType surfaceType() const;
VideoFrameChromiumImpl.cpp 54 VideoFrameChromium::SurfaceType VideoFrameChromiumImpl::surfaceType() const
57 return static_cast<VideoFrameChromium::SurfaceType>(m_webVideoFrame->surfaceType());
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VideoFrameChromium.h 64 enum SurfaceType {
69 virtual SurfaceType surfaceType() const = 0;
VideoLayerChromium.cpp 129 if (frame->surfaceType() == VideoFrameChromium::TypeTexture) {
  /sdk/emulator/opengl/system/egl/
egl.cpp 174 egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
182 EGLint getSurfaceType() { return surfaceType; }
204 EGLint surfaceType;
208 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType)
209 : dpy(dpy), config(config), surfaceType(surfaceType), rcSurface(0)
619 EGLint surfaceType;
620 if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE) return EGL_FALSE;
622 if (!(surfaceType & EGL_WINDOW_BIT)) {
631 &s_display, config, surfaceType, static_cast<ANativeWindow*>(win))
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglConfig.h 33 EGLint surfaceType(){ return m_surface_type;};
EglImp.cpp 478 if(!(cfg->surfaceType() & EGL_WINDOW_BIT)) {
506 if(!(cfg->surfaceType() & EGL_PBUFFER_BIT)) {
551 if(!(cfg->surfaceType() & EGL_PIXMAP_BIT)) {
    [all...]
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp 102 EGLint surfaceType;
104 EGL_SURFACE_TYPE, &surfaceType);
105 if (!(surfaceType & EGL_PBUFFER_BIT)) continue;
  /frameworks/native/opengl/libagl/
egl.cpp     [all...]

Completed in 106 milliseconds