OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:surfaceType
(Results
1 - 14
of
14
) 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) {
/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
...]
/development/tools/emulator/opengl/host/libs/Translator/EGL/
EglConfig.h
33
EGLint
surfaceType
(){ return m_surface_type;};
EglImp.cpp
486
if(!(cfg->
surfaceType
() & EGL_WINDOW_BIT)) {
514
if(!(cfg->
surfaceType
() & EGL_PBUFFER_BIT)) {
559
if(!(cfg->
surfaceType
() & EGL_PIXMAP_BIT)) {
[
all
...]
/development/tools/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp
102
EGLint
surfaceType
;
104
EGL_SURFACE_TYPE, &
surfaceType
);
105
if (!(
surfaceType
& EGL_PBUFFER_BIT)) continue;
/frameworks/base/opengl/libagl/
egl.cpp
[
all
...]
/frameworks/base/opengl/libagl2/src/
egl.cpp
[
all
...]
/external/mesa3d/test/
egl.cpp
[
all
...]
Completed in 5497 milliseconds