HomeSort by relevance Sort by last modified time
    Searched defs:getAttrib (Results 1 - 6 of 6) sorted by null

  /frameworks/base/libs/hwui/
Program.cpp 109 int Program::getAttrib(const char* name) {
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.cpp 87 GLuint Program::getAttrib(const char* name) const {
  /external/skia/src/gpu/
GrPrimitiveProcessor.h 178 const Attribute& getAttrib(int index) const {
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
SnapshotDialogFragment.java 134 private String getAttrib(ExifInterface exif, String tag) {
178 String aperture = getAttrib(exif, ExifInterface.TAG_APERTURE);
180 String dateTime = getAttrib(exif, ExifInterface.TAG_DATETIME);
181 String exposureTime = getAttrib(exif, ExifInterface.TAG_EXPOSURE_TIME);
186 String gpsDatestamp = getAttrib(exif, ExifInterface.TAG_GPS_DATESTAMP);
192 String gpsProcessingMethod = getAttrib(exif, ExifInterface.TAG_GPS_PROCESSING_METHOD);
193 String gpsTimestamp = getAttrib(exif, ExifInterface.TAG_GPS_TIMESTAMP);
197 String iso = getAttrib(exif, ExifInterface.TAG_ISO);
198 String make = getAttrib(exif, ExifInterface.TAG_MAKE);
199 String model = getAttrib(exif, ExifInterface.TAG_MODEL)
    [all...]
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 112 int getAttrib (int attribute);
142 unsigned int getAttrib (int attribute);
290 int GlxVisual::getAttrib (int attribute)
340 unsigned GlxDrawable::getAttrib (int attrib)
373 *width = getAttrib(GLX_WIDTH);
375 *height = getAttrib(GLX_HEIGHT);
424 return visual.getAttrib(GLX_FBCONFIG_ID) == renderCfg.id;
430 requested != visual.getAttrib(it->glxAttribute))
437 if ((visual.getAttrib(GLX_DRAWABLE_TYPE) & bits) == 0)
480 if (visual.getAttrib(GLX_DOUBLEBUFFER) == False |
    [all...]
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidGraphics.java 312 int r = getAttrib(egl, display, config, EGL10.EGL_RED_SIZE, 0);
313 int g = getAttrib(egl, display, config, EGL10.EGL_GREEN_SIZE, 0);
314 int b = getAttrib(egl, display, config, EGL10.EGL_BLUE_SIZE, 0);
315 int a = getAttrib(egl, display, config, EGL10.EGL_ALPHA_SIZE, 0);
316 int d = getAttrib(egl, display, config, EGL10.EGL_DEPTH_SIZE, 0);
317 int s = getAttrib(egl, display, config, EGL10.EGL_STENCIL_SIZE, 0);
318 int samples = Math.max(getAttrib(egl, display, config, EGL10.EGL_SAMPLES, 0),
319 getAttrib(egl, display, config, GdxEglConfigChooser.EGL_COVERAGE_SAMPLES_NV, 0));
320 boolean coverageSample = getAttrib(egl, display, config, GdxEglConfigChooser.EGL_COVERAGE_SAMPLES_NV, 0) != 0;
333 private int getAttrib (EGL10 egl, EGLDisplay display, EGLConfig config, int attrib, int defValue)
    [all...]

Completed in 240 milliseconds