Searched defs:display (Results 1 - 25 of 170) sorted by relevance

1234567

/external/deqp/framework/egl/
H A DegluConfigInfo.cpp73 void queryConfigInfo (const Library& egl, EGLDisplay display, EGLConfig config, ConfigInfo* dst) argument
75 egl.getConfigAttrib(display, config, EGL_BUFFER_SIZE, &dst->bufferSize);
76 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize);
77 egl.getConfigAttrib(display, config, EGL_GREEN_SIZE, &dst->greenSize);
78 egl.getConfigAttrib(display, config, EGL_BLUE_SIZE, &dst->blueSize);
79 egl.getConfigAttrib(display, config, EGL_LUMINANCE_SIZE, &dst->luminanceSize);
80 egl.getConfigAttrib(display, config, EGL_ALPHA_SIZE, &dst->alphaSize);
81 egl.getConfigAttrib(display, config, EGL_ALPHA_MASK_SIZE, &dst->alphaMaskSize);
82 egl.getConfigAttrib(display, config, EGL_BIND_TO_TEXTURE_RGB, (EGLint*)&dst->bindToTextureRGB);
83 egl.getConfigAttrib(display, confi
[all...]
H A DegluNativePixmap.cpp68 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const argument
70 DE_UNREF(display && config && attribList);
H A DegluConfigFilter.cpp39 CandidateConfig::CandidateConfig (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config) argument
43 m_cfg.object.display = display;
58 return getConfigAttribInt(*m_cfg.object.egl, m_cfg.object.display, m_cfg.object.config, attrib);
86 bool FilterList::match (const Library& egl, EGLDisplay display, EGLConfig config) const argument
88 return match(CandidateConfig(egl, display, config));
H A DegluConfigFilter.hpp46 CandidateConfig (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config);
80 eglw::EGLDisplay display; member in struct:eglu::CandidateConfig::__anon3013::__anon3014
98 bool match (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config) const;
H A DegluGLUtil.cpp79 EGLContext createGLContext (const Library& egl, EGLDisplay display, EGLContext eglConfig, const glu::ContextType& contextType) argument
81 const bool khrCreateContextSupported = hasExtension(egl, display, "EGL_KHR_create_context");
152 context = egl.createContext(display, eglConfig, EGL_NO_CONTEXT, &(attribList[0]));
158 static bool configMatches (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig eglConfig, const glu::RenderConfig& renderConfig) argument
166 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, EGL_RENDERABLE_TYPE, &renderableType));
186 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, EGL_SURFACE_TYPE, &surfaceType));
214 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, s_attribs[attribNdx].attrib, &value));
224 EGLConfig chooseConfig (const Library& egl, EGLDisplay display, const glu::RenderConfig& config) argument
226 const std::vector<EGLConfig> configs = eglu::getConfigs(egl, display);
230 if (configMatches(egl, display, *ite
[all...]
H A DegluNativeWindow.cpp94 NativeWindow* NativeWindowFactory::createWindow (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const WindowParams& params) const argument
96 DE_UNREF(display && config && attribList);
H A DegluUnique.cpp33 UniqueDisplay::UniqueDisplay (const Library& egl, EGLDisplay display) argument
35 , m_display (display)
50 UniqueSurface::UniqueSurface (const Library& egl, EGLDisplay display, EGLSurface surface) argument
52 , m_display (display)
68 UniqueContext::UniqueContext (const Library& egl, EGLDisplay display, EGLContext context) argument
70 , m_display (display)
86 ScopedCurrentContext::ScopedCurrentContext (const Library& egl, EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context) argument
88 , m_display (display)
90 EGLU_CHECK_CALL(m_egl, makeCurrent(display, draw, read, context));
98 UniqueImage::UniqueImage (const Library& egl, EGLDisplay display, EGLImag argument
[all...]
/external/gptfdisk/
H A Dparttypes.h28 int display; // 1 to show to users as available type, 0 not to member in struct:AType
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriodFormatterFactory.java31 * @param display true if limits will be displayed
34 public PeriodFormatterFactory setDisplayLimit(boolean display); argument
39 * @param display true if past and future will be displayed
42 public PeriodFormatterFactory setDisplayPastFuture(boolean display); argument
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
H A DRenderImageJme.java49 public RenderImageJme(String filename, boolean linear, NiftyJmeDisplay display){ argument
56 texture = (Texture2D) display.getAssetManager().loadTexture(key);
H A DRenderFontJme.java41 private NiftyJmeDisplay display; field in class:RenderFontJme
50 public RenderFontJme(String name, NiftyJmeDisplay display) { argument
51 this.display = display;
52 font = display.getAssetManager().loadFont(name);
/external/libpng/contrib/libtests/
H A Dreadpng.c39 png_bytep row = NULL, display = NULL; local
48 if (display != NULL) free(display);
66 display = malloc(rowbytes);
68 if (row == NULL || display == NULL)
86 png_read_row(png_ptr, row, display);
95 free(display);
/external/libvncserver/x11vnc/
H A Dnox11_funcs.h69 KeySym XKeycodeToKeysym(Display *display, KeyCode keycode, int index) {
73 KeyCode XKeysymToKeycode(Display *display, KeySym keysym) {
2809 KeySym XKeycodeToKeysym(Display *display, KeyCode keycode, int index) { argument
2810 if (!display || !keycode || !index) {}
2814 KeyCode XKeysymToKeycode(Display *display, KeySym keysym) { argument
2815 if (!display || !keysym) {}
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_context.c37 Display *display; local
44 display = XOpenDisplay(NULL);
48 display,
60 XCloseDisplay(display);
66 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
67 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
72 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, NULL) == XvMCBadContext);
75 assert(XvMCCreateContext(display, -1, surface_type_id, width, height, XVMC_DIRECT, &context) == XvBadPort);
77 assert(XvMCCreateContext(display, port_num, -1, width, height, XVMC_DIRECT, &context) == BadMatch);
79 assert(XvMCCreateContext(display, port_nu
[all...]
H A Dtest_surface.c37 Display *display; local
45 display = XOpenDisplay(NULL);
49 display,
61 XCloseDisplay(display);
67 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
68 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
71 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
74 assert(XvMCCreateSurface(display, NULL, &surface) == XvMCBadContext);
76 assert(XvMCCreateSurface(display, &context, NULL) == XvMCBadSurface);
78 assert(XvMCCreateSurface(display,
[all...]
H A Dtest_blocks.c38 Display *display; local
48 display = XOpenDisplay(NULL);
52 display,
64 XCloseDisplay(display);
70 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0);
71 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey);
74 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
75 assert(XvMCCreateSurface(display, &context, &surface) == Success);
78 assert(XvMCCreateBlocks(display, NULL, 1, &blocks) == XvMCBadContext);
80 assert(XvMCCreateBlocks(display,
[all...]
/external/deqp/modules/egl/
H A DteglConfigList.cpp64 EGLDisplay display = eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()); local
65 vector<EGLConfig> configs = eglu::getConfigs(egl, display);
81 egl.getConfigAttrib(display, configs[i], EGL_BUFFER_SIZE, &val);
84 egl.getConfigAttrib(display, configs[i], EGL_RED_SIZE, &val);
87 egl.getConfigAttrib(display, configs[i], EGL_GREEN_SIZE, &val);
90 egl.getConfigAttrib(display, configs[i], EGL_BLUE_SIZE, &val);
93 egl.getConfigAttrib(display, configs[i], EGL_LUMINANCE_SIZE, &val);
96 egl.getConfigAttrib(display, configs[i], EGL_ALPHA_SIZE, &val);
99 egl.getConfigAttrib(display, configs[i], EGL_ALPHA_MASK_SIZE, &val);
102 egl.getConfigAttrib(display, config
[all...]
H A DteglClientExtensionTests.cpp181 : TestCase(eglTestCtx, "extensions", "Check that returned extensions are client or display extensions")
208 EGLDisplay display = eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()); local
210 displayExtensions = de::splitString(egl.queryString(display, EGL_EXTENSIONS), ' ');
212 egl.terminate(display);
228 m_testCtx.getLog() << TestLog::Message << "'" << displayExtensions[extNdx] << "' is not display extension" << TestLog::EndMessage;
249 : TestCase(eglTestCtx, "disjoint", "Check that client and display extensions are disjoint")
270 EGLDisplay display = eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()); local
272 displayExtensions = de::splitString(egl.queryString(display, EGL_EXTENSIONS), ' ');
274 egl.terminate(display);
285 // Log display extension
[all...]
H A DteglSurfacelessContextTests.cpp61 void executeForConfig (EGLDisplay display, EGLConfig config);
73 void SurfacelessContextCase::executeForConfig (EGLDisplay display, EGLConfig config) argument
77 const EGLint id = eglu::getConfigAttribInt(egl, display, config, EGL_CONFIG_ID);
78 const EGLint apiBits = eglu::getConfigAttribInt(egl, display, config, EGL_RENDERABLE_TYPE);
99 if (!eglu::hasExtension(egl, display, "EGL_KHR_surfaceless_context"))
111 eglu::UniqueContext context(egl, display, egl.createContext(display, config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs));
114 if (!egl.makeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, *context))
131 EGLU_CHECK_CALL(egl, makeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT));
/external/drm_hwcomposer/
H A Ddrmcompositor.cpp39 int display = (*iter)->display(); local
40 int ret = compositor_map_[display].Init(drm_, display);
42 ALOGE("Failed to initialize display compositor for %d", display);
69 int display = (*iter)->display(); local
70 int ret = compositor_map_[display].QueueComposition(
71 drm_composition->TakeDisplayComposition(display));
[all...]
H A Ddrmcrtc.cpp68 int DrmCrtc::display() const { function in class:android::DrmCrtc
72 void DrmCrtc::set_display(int display) { argument
73 display_ = display;
76 bool DrmCrtc::can_bind(int display) const {
77 return display_ == -1 || display_ == display;
H A Ddrmcomposition.cpp51 int display = (*iter)->display(); local
52 composition_map_[display].reset(new DrmDisplayComposition());
53 if (!composition_map_[display]) {
54 ALOGE("Failed to allocate new display composition\n");
57 int ret = composition_map_[(*iter)->display()]->Init(drm_, importer_);
59 ALOGE("Failed to init display composition for %d", (*iter)->display());
66 unsigned DrmComposition::GetRemainingLayers(int display, argument
68 DrmCrtc *crtc = drm_->GetCrtcForDisplay(display);
88 AddLayer(int display, hwc_layer_1_t *layer, hwc_drm_bo *bo) argument
121 AddDpmsMode(int display, uint32_t dpms_mode) argument
125 TakeDisplayComposition( int display) argument
[all...]
H A Dvsyncworker.cpp45 int VSyncWorker::Init(DrmResources *drm, int display) { argument
47 display_ = display;
153 int display = display_; local
164 DrmCrtc *crtc = drm_->GetCrtcForDisplay(display);
166 ALOGE("Failed to get crtc for display");
200 procs->vsync(procs, display, timestamp);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestWindowManager.java15 private Display display; field in class:TestWindowManager
34 return display == null ? display = newInstanceOf(Display.class) : display;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraphItem.java33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { argument
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { argument
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { argument
45 this.displayDescription=display;

Completed in 2864 milliseconds

1234567