Searched defs:border (Results 76 - 100 of 141) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGraphicsContext3D.h230 virtual void compressedTexImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border, WGC3Dsizei imageSize, const void* data) = 0;
232 virtual void copyTexImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border) = 0;
308 virtual void texImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border, WGC3Denum format, WGC3Denum type, const void* pixels) = 0;
444 virtual void asyncTexImage2DCHROMIUM(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border, WGC3Denum format, WGC3Denum type, const void* pixels) { } argument
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DvalidationES3.cpp281 GLint border, GLenum format, GLenum type, const GLvoid *pixels)
296 // Verify zero border
297 if (border != 0)
863 GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
868 border, &textureInternalFormat))
279 ValidateES3TexImageParameters(Context *context, GLenum target, GLint level, GLenum internalformat, bool isCompressed, bool isSubImage, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels) argument
861 ValidateES3CopyTexImageParameters(Context *context, GLenum target, GLint level, GLenum internalformat, bool isSubImage, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
H A DvalidationES.cpp1211 GLint border, GLenum *textureFormatOut)
1232 if (border != 0)
1209 ValidateCopyTexImageParametersBase(gl::Context* context, GLenum target, GLint level, GLenum internalformat, bool isSubImage, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, GLenum *textureFormatOut) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmipmap.c1418 * border texels, depending on the scale-down factor.
1422 make_1d_mipmap(GLenum datatype, GLuint comps, GLint border, argument
1430 /* skip the border pixel, if any */
1431 src = srcPtr + border * bpt;
1432 dst = dstPtr + border * bpt;
1435 do_row(datatype, comps, srcWidth - 2 * border, src, src,
1436 dstWidth - 2 * border, dst);
1438 if (border) {
1452 make_2d_mipmap(GLenum datatype, GLuint comps, GLint border, argument
1459 const GLint srcWidthNB = srcWidth - 2 * border; /* size
1544 make_3d_mipmap(GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLubyte **srcPtr, GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLint dstDepth, GLubyte **dstPtr, GLint dstRowStride) argument
1710 _mesa_generate_mipmap_level(GLenum target, GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLubyte **srcData, GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLint dstDepth, GLubyte **dstData, GLint dstRowStride) argument
1778 next_mipmap_level_size(GLenum target, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, GLint *dstWidth, GLint *dstHeight, GLint *dstDepth) argument
1823 _mesa_prepare_mipmap_level(struct gl_context *ctx, struct gl_texture_object *texObj, GLuint level, GLsizei width, GLsizei height, GLsizei depth, GLsizei border, GLenum intFormat, gl_format format) argument
1907 GLint border; local
2092 GLint border; local
[all...]
H A Dteximage.c1008 * The dimensions are expected not to include the border.
1130 * \param border image border.
1135 * Note: width, height and depth include the border.
1141 GLint border, GLenum internalFormat,
1154 img->Border = border;
1159 img->Width2 = width - 2 * border; /* == 1 << img->WidthLog2; */
1179 img->Height2 = height; /* no border */
1200 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
1210 img->Height2 = height - 2 * border; /*
1138 _mesa_init_teximage_fields(struct gl_context *ctx, struct gl_texture_image *img, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum internalFormat, gl_format format) argument
1277 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border) argument
1969 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize) argument
2917 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei imageSize, const GLvoid *pixels) argument
3107 _mesa_TexImage1D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3118 _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3134 _mesa_TexImage3D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3147 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3734 _mesa_CompressedTexImage1DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) argument
3746 _mesa_CompressedTexImage2DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) argument
3758 _mesa_CompressedTexImage3DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) argument
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMask.cpp85 int border = SkMin32(width, diameter); local
107 for (; x < border - 16; x += 16) {
126 for (; x < border; ++x) {
196 for (; x < border - 16; x += 16) {
215 for (; x < border; ++x) {
287 int border = SkMin32(width, diameter); local
311 for (;x < border - 16; x += 16) {
331 for (;x < border; ++x) {
381 for (; x < border - 16; x += 16) {
400 for (; x < border;
[all...]
/external/chromium_org/ui/native_theme/
H A Dnative_theme_win.cc178 int border; local
179 return (GetThemeInt(theme, 0, 0, TMT_BORDERSIZE, &border) == S_OK) ?
180 gfx::Size(border, border) :
/external/deqp/framework/opengl/simplereference/
H A DsglrContextWrapper.cpp119 void ContextWrapper::glTexImage1D (deUint32 target, int level, int internalFormat, int width, int border, deUint32 format, deUint32 type, const void* data) argument
121 m_curCtx->texImage1D(target, level, (deUint32)internalFormat, width, border, format, type, data);
124 void ContextWrapper::glTexImage2D (deUint32 target, int level, int internalFormat, int width, int height, int border, deUint32 format, deUint32 type, const void* data) argument
126 m_curCtx->texImage2D(target, level, (deUint32)internalFormat, width, height, border, format, type, data);
129 void ContextWrapper::glTexImage3D (deUint32 target, int level, int internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data) argument
131 m_curCtx->texImage3D(target, level, (deUint32)internalFormat, width, height, depth, border, format, type, data);
149 void ContextWrapper::glCopyTexImage1D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int border) argument
151 m_curCtx->copyTexImage1D(target, level, internalFormat, x, y, width, border);
154 void ContextWrapper::glCopyTexImage2D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int height, int border) argument
156 m_curCtx->copyTexImage2D(target, level, internalFormat, x, y, width, height, border);
[all...]
H A DsglrReferenceContext.cpp984 void ReferenceContext::texImage1D (deUint32 target, int level, deUint32 internalFormat, int width, int border, deUint32 format, deUint32 type, const void* data)
986 texImage2D(target, level, internalFormat, width, 1, border, format, type, data);
989 void ReferenceContext::texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int border, deUint32 format, deUint32 type, const void* data)
991 texImage3D(target, level, internalFormat, width, height, 1, border, format, type, data);
994 void ReferenceContext::texImage3D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data)
1002 RC_IF_ERROR(border != 0, GL_INVALID_VALUE, RC_RET_VOID);
1403 void ReferenceContext::copyTexImage1D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int border) argument
1409 RC_IF_ERROR(border != 0, GL_INVALID_VALUE, RC_RET_VOID);
1451 void ReferenceContext::copyTexImage2D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int height, int border)
1457 RC_IF_ERROR(border !
[all...]
/external/mesa3d/src/mesa/main/
H A Dmipmap.c1411 * border texels, depending on the scale-down factor.
1415 make_1d_mipmap(GLenum datatype, GLuint comps, GLint border, argument
1423 /* skip the border pixel, if any */
1424 src = srcPtr + border * bpt;
1425 dst = dstPtr + border * bpt;
1428 do_row(datatype, comps, srcWidth - 2 * border, src, src,
1429 dstWidth - 2 * border, dst);
1431 if (border) {
1445 make_2d_mipmap(GLenum datatype, GLuint comps, GLint border, argument
1452 const GLint srcWidthNB = srcWidth - 2 * border; /* size
1537 make_3d_mipmap(GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLubyte **srcPtr, GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLint dstDepth, GLubyte **dstPtr, GLint dstRowStride) argument
1703 _mesa_generate_mipmap_level(GLenum target, GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLubyte **srcData, GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLint dstDepth, GLubyte **dstData, GLint dstRowStride) argument
1771 next_mipmap_level_size(GLenum target, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, GLint *dstWidth, GLint *dstHeight, GLint *dstDepth) argument
1816 _mesa_prepare_mipmap_level(struct gl_context *ctx, struct gl_texture_object *texObj, GLuint level, GLsizei width, GLsizei height, GLsizei depth, GLsizei border, GLenum intFormat, gl_format format) argument
1900 GLint border; local
2085 GLint border; local
[all...]
H A Dteximage.c1008 * The dimensions are expected not to include the border.
1130 * \param border image border.
1135 * Note: width, height and depth include the border.
1141 GLint border, GLenum internalFormat,
1154 img->Border = border;
1159 img->Width2 = width - 2 * border; /* == 1 << img->WidthLog2; */
1179 img->Height2 = height; /* no border */
1200 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
1210 img->Height2 = height - 2 * border; /*
1138 _mesa_init_teximage_fields(struct gl_context *ctx, struct gl_texture_image *img, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum internalFormat, gl_format format) argument
1277 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border) argument
1969 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize) argument
2917 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei imageSize, const GLvoid *pixels) argument
3107 _mesa_TexImage1D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3118 _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3134 _mesa_TexImage3D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3147 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3734 _mesa_CompressedTexImage1DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) argument
3746 _mesa_CompressedTexImage2DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) argument
3758 _mesa_CompressedTexImage3DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) argument
[all...]
/external/skia/src/effects/
H A DSkBlurMask.cpp85 int border = SkMin32(width, diameter); local
107 for (; x < border - 16; x += 16) {
126 for (; x < border; ++x) {
196 for (; x < border - 16; x += 16) {
215 for (; x < border; ++x) {
287 int border = SkMin32(width, diameter); local
311 for (;x < border - 16; x += 16) {
331 for (;x < border; ++x) {
381 for (; x < border - 16; x += 16) {
400 for (; x < border;
[all...]
/external/chromium_org/cc/resources/
H A Dresource_provider_unittest.cc218 GLint border,
226 ASSERT_FALSE(border); variable
2894 GLint border,
2914 GLint border,
2934 GLint border,
/external/chromium_org/cc/test/
H A Dtest_web_graphics_context_3d.h61 GLint border,
103 GLint border,
167 GLint border,
56 asyncTexImage2DCHROMIUM(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
98 compressedTexImage2D(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLint border, GLsizei image_size, const void* data) argument
162 texImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_ui.cc625 scoped_ptr<views::LabelButtonBorder> border) {
627 return border.PassAs<views::Border>();
630 new Gtk2Border(this, owning_button, border.Pass()));
797 // pixel border. In some themes, the border has a completely different
898 // the NTP, and acts as the border of the "Recent Links" box. It would be
900 // border around the "Recent Links" section, but matching the frame color is
1231 SkBitmap border = DrawGtkButtonBorder(gtk_state, local
1236 canvas.drawBitmap(border, 0, 0);
1256 SkBitmap border local
623 CreateNativeBorder( views::LabelButton* owning_button, scoped_ptr<views::LabelButtonBorder> border) argument
1345 SkBitmap border = GdkPixbufToImageSkia(pixbuf); local
[all...]
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view.cc192 scoped_ptr<LabelButtonBorder> border = LabelButton::CreateDefaultBorder(); variable
193 border->set_insets(gfx::Insets(kButtonPaddingVertical,
197 return border.Pass();
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_implementation_impl_autogen.h219 GLint border) {
225 << x << ", " << y << ", " << width << ", " << height << ", " << border
235 if (border != 0) {
236 SetGLError(GL_INVALID_VALUE, "glCopyTexImage2D", "border GL_INVALID_VALUE");
212 CopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dppb_opengles2_thunk.cc212 GLint border,
218 target, level, internalformat, width, height, border, imageSize, data);
254 GLint border) {
258 target, level, internalformat, x, y, width, height, border);
1002 GLint border,
1013 border,
206 CompressedTexImage2D(PP_Resource context_id, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) argument
246 CopyTexImage2D(PP_Resource context_id, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
996 TexImage2D(PP_Resource context_id, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCell.cpp136 // Column widths specified on <col> apply to the border box of the cell, see bug 8126.
137 // FIXME: Why is border/padding ignored in the negative width case?
401 // If border was changed, notify table.
404 if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout()&& oldStyle && oldStyle->border() != style()->border())
409 // The following rules apply for resolving conflicts and figuring out which border
411 // (1) Borders with the 'border-style' of 'hidden' take precedence over all other conflicting
412 // borders. Any border with this value suppresses all borders at this location.
413 // (2) Borders with a style of 'none' have the lowest priority. Only if the border properties of all
414 // the elements meeting at this edge are 'none' will the border b
467 const CollapsedBorderValue& border = compareBorders(border1, border2) < 0 ? border2 : border1; local
962 CollapsedBorderValue border = collapsedStartBorder(DoNotIncludeBorderColor); local
970 CollapsedBorderValue border = collapsedEndBorder(DoNotIncludeBorderColor); local
978 CollapsedBorderValue border = collapsedBeforeBorder(DoNotIncludeBorderColor); local
986 CollapsedBorderValue border = collapsedAfterBorder(DoNotIncludeBorderColor); local
[all...]
H A DRenderTableSection.cpp128 // If border was changed, notify table.
130 if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout() && oldStyle && oldStyle->border() != style()->border())
232 // <TABLE border>
315 // We don't span the following row so its border-spacing (if any) should be included.
712 // We ignore the border-spacing on any non-top section as it is already included in the previous section's last row position.
773 // Add the border-spacing to our final position.
1290 // To issue paint invalidations for the border we might need to paint invalidate the first or last row even if they are not spanned themselves.
1308 // To issue paint invalidations for the border we might need to paint invalidate the first or last column even if they are not spanned themselves.
1581 void RenderTableSection::setCachedCollapsedBorder(const RenderTableCell* cell, CollapsedBorderSide side, CollapsedBorderValue border) argument
1584 m_cellsCollapsedBorders.set(std::make_pair(cell, side), border); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp421 // If our border widths change, then we need to layout. Other changes to borders only necessitate a paint invalidation.
552 // In the collapsing border model, 'hidden' suppresses other borders, while 'none'
647 || !surround->border.visuallyEqual(other.surround->border)
936 static RoundedRect::Radii calcRadiiFor(const BorderData& border, IntSize size) argument
939 IntSize(valueForLength(border.topLeft().width(), size.width()),
940 valueForLength(border.topLeft().height(), size.height())),
941 IntSize(valueForLength(border.topRight().width(), size.width()),
942 valueForLength(border.topRight().height(), size.height())),
943 IntSize(valueForLength(border
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftstroke.c317 ft_stroke_border_grow( FT_StrokeBorder border, argument
320 FT_UInt old_max = border->max_points;
321 FT_UInt new_max = border->num_points + new_points;
328 FT_Memory memory = border->memory;
334 if ( FT_RENEW_ARRAY( border->points, old_max, cur_max ) ||
335 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
338 border->max_points = cur_max;
347 ft_stroke_border_close( FT_StrokeBorder border, argument
350 FT_UInt start = border->start;
351 FT_UInt count = border
413 ft_stroke_border_lineto( FT_StrokeBorder border, FT_Vector* to, FT_Bool movable ) argument
455 ft_stroke_border_conicto( FT_StrokeBorder border, FT_Vector* control, FT_Vector* to ) argument
487 ft_stroke_border_cubicto( FT_StrokeBorder border, FT_Vector* control1, FT_Vector* control2, FT_Vector* to ) argument
525 ft_stroke_border_arcto( FT_StrokeBorder border, FT_Vector* center, FT_Fixed radius, FT_Angle angle_start, FT_Angle angle_diff ) argument
595 ft_stroke_border_moveto( FT_StrokeBorder border, FT_Vector* to ) argument
610 ft_stroke_border_init( FT_StrokeBorder border, FT_Memory memory ) argument
650 ft_stroke_border_get_counts( FT_StrokeBorder border, FT_UInt *anum_points, FT_UInt *anum_contours ) argument
701 ft_stroke_border_export( FT_StrokeBorder border, FT_Outline* outline ) argument
882 FT_StrokeBorder border = stroker->borders + side; local
924 FT_StrokeBorder border = stroker->borders + side; local
951 FT_StrokeBorder border = stroker->borders + side; local
982 FT_StrokeBorder border = stroker->borders + side; local
1044 FT_StrokeBorder border = stroker->borders + side; local
1245 FT_StrokeBorder border; local
1283 FT_StrokeBorder border; local
1435 FT_StrokeBorder border; local
1635 FT_StrokeBorder border; local
2009 FT_Stroker_ExportBorder( FT_Stroker stroker, FT_StrokerBorder border, FT_Outline* outline ) argument
2364 FT_StrokerBorder border; local
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLNoOpInterface.cpp98 GrGLint border,
235 GrGLint border,
93 noOpGLCompressedTexImage2D(GrGLenum target, GrGLint level, GrGLenum internalformat, GrGLsizei width, GrGLsizei height, GrGLint border, GrGLsizei imageSize, const GrGLvoid* data) argument
230 noOpGLTexImage2D(GrGLenum target, GrGLint level, GrGLint internalformat, GrGLsizei width, GrGLsizei height, GrGLint border, GrGLenum format, GrGLenum type, const GrGLvoid* pixels) argument
/external/chromium_org/ui/compositor/
H A Dlayer.cc619 void Layer::UpdateNinePatchLayerBorder(const gfx::Rect& border) { argument
621 nine_patch_layer_->SetBorder(border);
/external/chromium_org/ui/gl/
H A Dgl_bindings_skia_in_process.cc121 GLsizei height, GLint border,
123 glCompressedTexImage2D(target, level, internalformat, width, height, border,
443 GLsizei width, GLsizei height, GLint border,
445 glTexImage2D(target, level, internalformat, width, height, border, format,
119 StubGLCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) argument
442 StubGLTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument

Completed in 5029 milliseconds

123456