Searched refs:Surface (Results 1 - 25 of 251) sorted by relevance

1234567891011

/external/chromium_org/gpu/gles2_conform_support/egl/
H A Dsurface.cc9 Surface::Surface(EGLNativeWindowType win) : window_(win) { function in class:egl::Surface
12 Surface::~Surface() {
H A Dsurface.h14 class Surface { class in namespace:egl
16 explicit Surface(EGLNativeWindowType win);
17 ~Surface();
24 DISALLOW_COPY_AND_ASSIGN(Surface);
/external/deqp/framework/common/
H A DtcuSurface.cpp21 * \brief Surface class.
28 Surface::Surface (void) function in class:Surface
34 Surface::Surface(int width, int height) function in class:Surface
41 Surface::~Surface()
52 void Surface::setSize (int width, int height)
H A DtcuImageCompare.hpp33 class Surface;
47 bool pixelThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode logMode);
48 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode logMode);
49 int measurePixelDiffAccuracy (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, int bestScoreDiff, int worstScoreDiff, CompareLogMode logMode);
H A DtcuSurface.hpp38 * Surface provides basic pixel storage functionality. Only single format
44 class Surface class in namespace:tcu
47 Surface (void);
48 Surface (int width, int height);
49 ~Surface (void);
73 inline void Surface::setPixel (int x, int y, RGBA col)
90 inline RGBA Surface::getPixel (int x, int y) const
109 inline ConstPixelBufferAccess Surface::getSubAccess (int x, int y, int width, int height) const
127 inline PixelBufferAccess Surface::getSubAccess (int x, int y, int width, int height)
145 inline ConstPixelBufferAccess Surface
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/common/
H A DSurfaceWrapper.java9 import android.view.Surface;
12 * A wrapper for marshalling a Surface without self-destruction.
15 private final Surface mSurface;
17 public SurfaceWrapper(Surface surface) {
21 public Surface getSurface() {
32 // Ignore flags so that the Surface won't call release()
39 Surface surface = Surface.CREATOR.createFromParcel(in);
/external/chromium_org/cc/surfaces/
H A Dsurface_manager.h18 class Surface;
25 void RegisterSurface(Surface* surface);
28 Surface* GetSurfaceForId(SurfaceId surface_id);
41 typedef base::hash_map<SurfaceId, Surface*> SurfaceMap;
H A Dsurface.cc17 Surface::Surface(SurfaceId id, const gfx::Size& size, SurfaceFactory* factory) function in class:cc::Surface
24 Surface::~Surface() {
40 void Surface::QueueFrame(scoped_ptr<CompositorFrame> frame,
68 void Surface::RequestCopyOfOutput(scoped_ptr<CopyOutputRequest> copy_request) {
72 void Surface::TakeCopyOutputRequests(
78 const CompositorFrame* Surface::GetEligibleFrame() {
82 void Surface::TakeLatencyInfo(std::vector<ui::LatencyInfo>* latency_info) {
95 void Surface
[all...]
H A Dsurface_aggregator.h23 class Surface;
54 const Surface* surface);
56 bool TakeResources(Surface* surface,
59 int ChildIdForSurface(Surface* surface);
60 gfx::Rect DamageRectForSurface(const Surface* surface,
83 // For each Surface used in the last aggregation, gives the frame_index at
H A Dsurface.h31 class CC_SURFACES_EXPORT Surface { class in namespace:cc
33 Surface(SurfaceId id, const gfx::Size& size, SurfaceFactory* factory);
34 ~Surface();
66 DISALLOW_COPY_AND_ASSIGN(Surface);
H A Dsurface_manager.cc20 void SurfaceManager::RegisterSurface(Surface* surface) {
34 Surface* SurfaceManager::GetSurfaceForId(SurfaceId surface_id) {
/external/chromium_org/third_party/icu/source/samples/layout/
H A DSurface.h5 class Surface class
8 Surface(/*what?*/);
/external/icu/icu4c/source/samples/layout/
H A DSurface.h5 class Surface class
8 Surface(/*what?*/);
/external/chromium_org/third_party/angle/src/libEGL/
H A DSurface.cpp7 // Surface.cpp: Implements the egl::Surface class, representing a drawing surface
15 #include "libEGL/Surface.h"
28 Surface::Surface(Display *display, const Config *config, HWND window, EGLint fixedSize, EGLint width, EGLint height, EGLint postSubBufferSupported) function in class:egl::Surface
50 Surface::Surface(Display *display, const Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureType) function in class:egl::Surface
69 Surface::~Surface()
75 bool Surface
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fFboTestCase.hpp32 class Surface;
53 virtual void render (tcu::Surface& dst) = DE_NULL;
54 virtual bool compare (const tcu::Surface& reference, const tcu::Surface& result);
59 void readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
60 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
/external/deqp/modules/gles31/functional/
H A Des31fFboTestCase.hpp32 class Surface;
53 virtual void render (tcu::Surface& dst) = DE_NULL;
54 virtual bool compare (const tcu::Surface& reference, const tcu::Surface& result);
59 void readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
60 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
H A Des31fMultisampleShaderRenderCase.hpp33 class Surface;
89 void verifyResultImageAndSetResult (const tcu::Surface& resultImage);
90 void verifyResultBuffersAndSetResult (const std::vector<tcu::Surface>& resultBuffers);
96 virtual bool verifyImage (const tcu::Surface& resultImage) = 0;
97 virtual bool verifySampleBuffers (const std::vector<tcu::Surface>& resultBuffers);
/external/deqp/framework/egl/
H A DtcuEgl.hpp51 class Surface;
86 class Surface class in namespace:tcu::egl
89 virtual ~Surface (void) {}
102 Surface (Display& display) : m_display(display), m_surface(EGL_NO_SURFACE) {} function in class:tcu::egl::Surface
104 Surface (const Surface&); // not allowed
105 Surface& operator= (const Surface&); // not allowed
111 class WindowSurface : public Surface
121 class PixmapSurface : public Surface
[all...]
/external/chromium_org/mojo/examples/surfaces_app/
H A Dembedder.h26 explicit Embedder(Surface* surface);
38 Surface* surface_;
/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dmain.h20 class Surface;
33 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface);
61 void glMakeCurrent(gl::Context *context, egl::Display *display, egl::Surface *surface);
67 bool __stdcall glBindTexImage(egl::Surface *surface);
/external/deqp/modules/egl/
H A DteglGLES1RenderUtil.hpp38 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
H A DteglGLES2RenderUtil.hpp38 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
H A DteglVGRenderUtil.hpp38 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
H A DteglColorClearCase.hpp43 virtual void executeForContexts (tcu::egl::Display& display, tcu::egl::Surface& surface, EGLConfig config, const std::vector<std::pair<EGLint, tcu::egl::Context*> >& contexts);
52 virtual void executeForContexts (tcu::egl::Display& display, tcu::egl::Surface& surface, EGLConfig config, const std::vector<std::pair<EGLint, tcu::egl::Context*> >& contexts);
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.hpp119 bool verifyTriangleGroupRasterization (const tcu::Surface& surface, const TriangleSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log, VerificationMode mode = VERIFICATIONMODE_STRICT);
130 bool verifyLineGroupRasterization (const tcu::Surface& surface, const LineSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
141 bool verifyPointGroupRasterization (const tcu::Surface& surface, const PointSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
152 bool verifyTriangleGroupInterpolation (const tcu::Surface& surface, const TriangleSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
163 bool verifyLineGroupInterpolation (const tcu::Surface& surface, const LineSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);

Completed in 6805 milliseconds

1234567891011