OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:subImage
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp
294
RetainPtr<CGImageRef>
subImage
;
296
subImage
= tileImage;
301
subImage
.adoptCF(CGImageCreateWithImageInRect(tileImage, tileRect));
305
subImage
= imageWithColorSpace(
subImage
.get(), styleColorSpace);
320
CGContextDrawTiledImage(context, FloatRect(adjustedX, adjustedY, scaledTileWidth, scaledTileHeight),
subImage
.get());
333
RetainPtr<CGPatternRef> pattern(AdoptCF, CGPatternCreate(
subImage
.get(), CGRectMake(0, 0, tileRect.width(), tileRect.height()),
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Texture.h
121
bool
subImage
(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *img);
222
void
subImage
(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels);
273
void
subImage
(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels);
Texture.cpp
832
bool Texture::
subImage
(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *img)
[
all
...]
libGLESv2.cpp
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java
289
BufferedImage sub = ImageUtils.
subImage
(image, 25, 25, 35, 45);
295
sub = ImageUtils.
subImage
(image, 23, 23, 23 + 5, 23 + 5);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java
419
public static BufferedImage
subImage
(BufferedImage source, int x1, int y1, int x2, int y2) {
PreviewIconFactory.java
534
BufferedImage im = ImageUtils.
subImage
(image, left, top, right, bottom);
Completed in 49 milliseconds