HomeSort by relevance Sort by last modified time
    Searched refs:pixelFormat (Results 1 - 24 of 24) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/win/
QTDecompressionSession.h 44 static PassOwnPtr<QTDecompressionSession> create(unsigned long pixelFormat, size_t width, size_t height);
54 QTDecompressionSession(unsigned long pixelFormat, size_t width, size_t height);
QTDecompressionSession.cpp 46 PassOwnPtr<QTDecompressionSession> QTDecompressionSession::create(unsigned long pixelFormat, size_t width, size_t height)
48 return adoptPtr(new QTDecompressionSession(pixelFormat, width, height));
51 QTDecompressionSession::QTDecompressionSession(unsigned long pixelFormat, size_t width, size_t height)
53 , m_pixelFormat(pixelFormat)
73 // The ICM does not know anything about the pixelFormat contained in
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebGLLayer.mm 63 -(CGLContextObj)copyCGLContextForPixelFormat:(CGLPixelFormatObj)pixelFormat
66 CGLCreateContext(pixelFormat, m_context->platformGraphicsContext3D(), &contextObj);
70 -(void)drawInCGLContext:(CGLContextObj)glContext pixelFormat:(CGLPixelFormatObj)pixelFormat forLayerTime:(CFTimeInterval)timeInterval displayTime:(const CVTimeStamp *)timeStamp
104 [super drawInCGLContext:glContext pixelFormat:pixelFormat forLayerTime:timeInterval displayTime:timeStamp];
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
MacNative.h 36 void getPixelFormatAttrib(void* pixelFormat,int attrib,int* val);
MacNative.m 41 - (id) initWithFormat:(NSOpenGLPixelFormat *)pixelFormat shareContext:(NSOpenGLContext *)share;
46 - (id) initWithFormat:(NSOpenGLPixelFormat *)pixelFormat shareContext:(NSOpenGLContext *)share
48 self = [super initWithFormat:pixelFormat shareContext:share];
78 void getPixelFormatAttrib(void* pixelFormat,int attrib,int* val){
79 NSOpenGLPixelFormat *frmt = (NSOpenGLPixelFormat *)pixelFormat;
  /frameworks/base/core/jni/
android_view_Display.cpp 23 #include <ui/PixelFormat.h>
40 jfieldID pixelFormat;
59 env->SetIntField(clazz, offsets.pixelFormat,info.pixelFormatInfo.format);
117 offsets.pixelFormat = env->GetFieldID(clazz, "mPixelFormat", "I");
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.h 15 * @param pixelFormat The yuv pixel format as defined in ui/PixelFormat.h.
17 * @return an encoder based on the pixelFormat.
19 static YuvToJpegEncoder* create(int pixelFormat, int* strides);
  /external/webkit/Source/WebKit2/Shared/mac/
ShareableSurface.cpp 93 unsigned pixelFormat = 'BGRA';
103 values[2] = CFNumberCreate(0, kCFNumberIntType, &pixelFormat);
  /external/webkit/Tools/DumpRenderTree/mac/
PixelDumpSupportMac.mm 205 CGLPixelFormatObj pixelFormat;
207 if (CGLChoosePixelFormat(attributes, &pixelFormat, &num) == kCGLNoError) {
209 if (CGLCreateContext(pixelFormat, 0, &cgl_ctx) == kCGLNoError) {
230 CGLDestroyPixelFormat(pixelFormat);
  /frameworks/base/opengl/libagl/
egl.cpp     [all...]
mipmap.cpp 34 const GGLFormat& pixelFormat(c->rasterizer.formats[base->format]);
46 const int bpr = w * pixelFormat.size;
texture.cpp 286 const GGLFormat& pixelFormat(c->rasterizer.formats[src.format]);
287 const size_t size = src.height * src.stride * pixelFormat.size;
371 // convert the pixelformat to one we can handle
378 const GGLFormat& pixelFormat(c->rasterizer.formats[formatIdx]);
380 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align;
382 const int32_t stride = bpr / pixelFormat.size;
    [all...]
  /frameworks/base/opengl/libagl2/src/
egl.cpp     [all...]
  /external/mesa3d/test/
egl.cpp     [all...]
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 441 const char *pixelFormat)
451 CAMHAL_LOGVB("pixelFormat,= %d; offset=%d",*pixelFormat,offset);
453 if (pixelFormat!=NULL) {
454 if (strcmp(pixelFormat, CameraParameters::PIXEL_FORMAT_YUV422I) == 0) {
456 } else if (strcmp(pixelFormat, CameraParameters::PIXEL_FORMAT_YUV420SP) == 0 ||
457 strcmp(pixelFormat, CameraParameters::PIXEL_FORMAT_YUV420P) == 0) {
482 if (strcmp(pixelFormat, CameraParameters::PIXEL_FORMAT_YUV420SP) == 0) {
530 } else if (strcmp(pixelFormat, CameraParameters::PIXEL_FORMAT_YUV420P) == 0) {
588 } else if(strcmp(pixelFormat, CameraParameters::PIXEL_FORMAT_RGB565) == 0)
    [all...]
  /development/tools/emulator/opengl/system/egl/
egl.cpp 389 int32_t w, int32_t h, GLenum pixelFormat)
390 : egl_surface_t(dpy, config, surfType), format(pixelFormat)
717 GLenum pixelFormat;
718 if (s_display.getConfigGLPixelFormat(config, &pixelFormat) == EGL_FALSE)
721 egl_surface_t* surface = new egl_pbuffer_surface_t(dpy, config, surfaceType, w, h, pixelFormat);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 59 unsigned pixelFormat = 'BGRA';
79 values[2] = CFNumberCreate(0, kCFNumberIntType, &pixelFormat);
  /system/core/libpixelflinger/
buffer.cpp 67 const GGLFormat& pixelFormat(c->formats[dst->format]);
68 const int32_t bpr = -dst->stride * pixelFormat.size;
  /hardware/ti/omap4xxx/domx/test/sample_proxy/
test_sample_proxy.c 700 pBlock[0].pixelFormat = PIXEL_FMT_8BIT;
703 pBlock[1].pixelFormat = PIXEL_FMT_16BIT;
712 pBlock[0].pixelFormat = PIXEL_FMT_PAGE;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 33 import android.graphics.PixelFormat;
312 mPixelFormat = PixelFormat.OPAQUE;
382 (opaque ? PixelFormat.OPAQUE : PixelFormat.TRANSLUCENT));
476 PixelFormat.OPAQUE);
501 PixelFormat.TRANSLUCENT);
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 395 milliseconds