HomeSort by relevance Sort by last modified time
    Searched refs:surface (Results 226 - 250 of 917) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
glhd_objects.h 62 struct pipe_surface *surface; member in struct:galahad_surface
132 return galahad_surface(_surface)->surface;
154 struct pipe_surface *surface);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
id_objects.h 60 struct pipe_surface *surface; member in struct:identity_surface
130 return identity_surface(_surface)->surface;
152 struct pipe_surface *surface);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
va_image.c 106 vlVaDeriveImage(VADriverContextP ctx, VASurfaceID surface, VAImage *image)
133 vlVaGetImage(VADriverContextP ctx, VASurfaceID surface, int x, int y,
143 vlVaPutImage(VADriverContextP ctx, VASurfaceID surface, VAImageID image,
va_surface.c 112 vlVaPutSurface(VADriverContextP ctx, VASurfaceID surface, void* draw, short srcx, short srcy,
124 vlVaLockSurface(VADriverContextP ctx, VASurfaceID surface, unsigned int *fourcc,
136 vlVaUnlockSurface(VADriverContextP ctx, VASurfaceID surface)
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
test_blocks.c 44 XvMCSurface surface; local
75 assert(XvMCCreateSurface(display, &context, &surface) == Success);
104 assert(XvMCDestroySurface(display, &surface) == Success);
  /external/chromium_org/ui/gl/
gl_surface.h 21 // Encapsulates a surface that can be rendered to with GL, hiding platform
27 // (Re)create the surface. TODO(apatrick): This is an ugly hack to allow the
28 // EGL surface associated to be recreated without destroying the associated
33 // Destroys the surface.
38 // Recreate the surface without changing the size.
42 // a GL draw call to this surface and defer it until the GpuScheduler is
46 // Returns true if this surface is offscreen.
53 // Get the size of the surface.
56 // Get the underlying platform specific surface "handle".
59 // Returns space separated list of surface specific extensions
151 GLSurface* surface() const { return surface_.get(); } function in class:gfx::GLSurfaceAdapter
    [all...]
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_objects.h 62 struct pipe_surface *surface; member in struct:galahad_surface
132 return galahad_surface(_surface)->surface;
154 struct pipe_surface *surface);
  /external/mesa3d/src/gallium/drivers/identity/
id_objects.h 60 struct pipe_surface *surface; member in struct:identity_surface
130 return identity_surface(_surface)->surface;
152 struct pipe_surface *surface);
  /external/mesa3d/src/gallium/state_trackers/va/
va_image.c 106 vlVaDeriveImage(VADriverContextP ctx, VASurfaceID surface, VAImage *image)
133 vlVaGetImage(VADriverContextP ctx, VASurfaceID surface, int x, int y,
143 vlVaPutImage(VADriverContextP ctx, VASurfaceID surface, VAImageID image,
va_surface.c 112 vlVaPutSurface(VADriverContextP ctx, VASurfaceID surface, void* draw, short srcx, short srcy,
124 vlVaLockSurface(VADriverContextP ctx, VASurfaceID surface, unsigned int *fourcc,
136 vlVaUnlockSurface(VADriverContextP ctx, VASurfaceID surface)
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
test_blocks.c 44 XvMCSurface surface; local
75 assert(XvMCCreateSurface(display, &context, &surface) == Success);
104 assert(XvMCDestroySurface(display, &surface) == Success);
  /external/qemu/android/skin/
composer.h 66 struct SkinPlateSurface surface; member in union:SkinPlate
92 void* surface; member in struct:SkinViewport
97 extern SkinViewport* skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy );
  /frameworks/base/media/java/android/media/
RemoteDisplay.java 22 import android.view.Surface;
125 private void notifyDisplayConnected(final Surface surface,
130 mListener.onDisplayConnected(surface, width, height, flags, session);
159 void onDisplayConnected(Surface surface,
  /frameworks/base/media/mca/filterfw/native/core/
gl_env.h 31 #include <gui/Surface.h>
59 // includes the display, context, and surface. It is possible to either create
63 // surface.
74 // Inits a new GL environment, including a new surface and context. You
79 // there is already a display, surface and context available (possibly
95 // When rendering to a visible surface, call this to swap between the
102 // Add a surface to the environment. This surface will now be managed (and
103 // owned) by the GLEnv instance. Returns the id of the surface.
104 int AddSurface(const EGLSurface& surface);
132 const EGLSurface& surface() const { function in class:android::filterfw::GLEnv
    [all...]
  /frameworks/native/include/gui/
SurfaceControl.h 37 class Surface;
45 static bool isValid(const sp<SurfaceControl>& surface) {
46 return (surface != 0) && surface->isValid();
56 // release surface data from java
74 sp<Surface> getSurface() const;
82 friend class Surface;
98 mutable sp<Surface> mSurfaceData;
  /frameworks/native/opengl/libs/EGL/
egl_object.cpp 65 EGLNativeWindowType win, EGLSurface surface,
67 egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx)
  /cts/tests/tests/nativeopengl/standalone/jni/
GLTestHelper.h 34 static void setWindow(JNIEnv* env, jobject obj, jobject surface);
  /external/chromium_org/gpu/gles2_conform_support/egl/
egl.cc 62 EGLint ValidateDisplaySurface(EGLDisplay dpy, EGLSurface surface) {
68 if (!display->IsValidSurface(surface))
211 EGLSurface surface = display->CreateWindowSurface(config, win, attrib_list);
212 if (surface == EGL_NO_SURFACE)
215 return EglSuccess(surface);
232 EGLSurface surface) {
233 EGLint error_code = ValidateDisplaySurface(dpy, surface);
238 display->DestroySurface(surface);
243 EGLSurface surface,
274 EGLSurface surface,
    [all...]
  /external/chromium_org/skia/ext/
bitmap_platform_device_android.h 46 virtual void DrawToNativeContext(PlatformSurface surface, int x, int y,
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
main.cpp 133 void setCurrentDrawSurface(EGLSurface surface)
137 current->drawSurface = surface;
147 void setCurrentReadSurface(EGLSurface surface)
151 current->readSurface = surface;
  /external/chromium_org/third_party/mesa/src/src/gallium/include/state_tracker/
graw.h 84 /* Saves surface contents to a file.
87 * is used. If the option has not been specified, the surface
90 * Returns TRUE if the surface has been saved.
93 struct pipe_surface *surface,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
Makefile 16 surface.c \
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_winsys.h 65 * Open a shared surface (optional).
74 * Close a shared surface (optional).
78 struct stw_shared_surface *surface);
81 * Compose into a shared surface (optional).
83 * Blit the color buffer into a shared surface.
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_fbo.h 44 * pipe surface.
50 struct pipe_surface *surface; /* temporary view into texture */ member in struct:st_renderbuffer
  /external/chromium_org/third_party/skia/include/gpu/
SkGrPixelRef.h 50 SkGrPixelRef(GrSurface* surface, bool transferCacheLock = false);

Completed in 1597 milliseconds

1 2 3 4 5 6 7 8 91011>>