Searched defs:border (Results 101 - 125 of 141) sorted by relevance

123456

/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp265 void GLContext::texImage1D (deUint32 target, int level, deUint32 internalFormat, int width, int border, deUint32 format, deUint32 type, const void* data) argument
267 m_wrapper->glTexImage1D(target, level, internalFormat, width, border, format, type, data);
270 void GLContext::texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int border, deUint32 format, deUint32 type, const void* data) argument
272 m_wrapper->glTexImage2D(target, level, internalFormat, width, height, border, format, type, data);
275 void GLContext::texImage3D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data) argument
277 m_wrapper->glTexImage3D(target, level, internalFormat, width, height, depth, border, format, type, data);
295 void GLContext::copyTexImage1D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int border) argument
304 << width << ", " << border << ")"
308 m_context.getFunctions().copyTexImage1D(target, level, internalFormat, offset.x()+x, offset.y()+y, width, border);
311 void GLContext::copyTexImage2D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int height, int border) argument
[all...]
/external/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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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/replicaisland/src/com/replica/replicaisland/
H A DGLErrorLogger.java139 int internalformat, int width, int height, int border,
142 internalformat, width, height, border, imageSize, data);
156 int x, int y, int width, int height, int border) {
158 x, y, width, height, border);
659 int width, int height, int border, int format, int type,
662 width, height, border, format, type,
138 glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, Buffer data) argument
155 glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border) argument
658 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
/external/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/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_autogen.h436 GLint border = static_cast<GLint>(c.border); local
454 DoCopyTexImage2D(target, level, internalformat, x, y, width, height, border);
H A Dgles2_cmd_decoder_unittest_base.cc1002 GLsizei width, GLsizei height, GLint border,
1009 width, height, border, format, type, _))
1023 GLsizei width, GLsizei height, GLint border,
1031 width, height, border, format, type, _))
1045 GLsizei width, GLsizei height, GLint border,
1051 target, level, format, width, height, border, size, _))
1000 DoTexImage2D( GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, uint32 shared_memory_id, uint32 shared_memory_offset) argument
1021 DoTexImage2DConvertInternalFormat( GLenum target, GLint level, GLenum requested_internal_format, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, uint32 shared_memory_id, uint32 shared_memory_offset, GLenum expected_internal_format) argument
1043 DoCompressedTexImage2D( GLenum target, GLint level, GLenum format, GLsizei width, GLsizei height, GLint border, GLsizei size, uint32 bucket_id) argument
H A Dgles2_cmd_decoder.cc852 GLint border,
877 GLint border);
2090 0, // border
2117 0); // border
3306 0, // border
8354 GLint border,
8370 border != 0) {
8417 target, level, internal_format, width, height, border, image_size, data);
8422 width, height, 1, border, 0, 0, true);
8441 GLint border local
8348 DoCompressedTexImage2D( GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLint border, GLsizei image_size, const void* data) argument
8467 GLint border = static_cast<GLint>(c.border); local
8550 GLint border = static_cast<GLint>(c.border); local
8660 DoCopyTexImage2D( GLenum target, GLint level, GLenum internal_format, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
11037 GLint border = static_cast<GLint>(c.border); local
[all...]
/external/chromium_org/ppapi/lib/gl/gles2/
H A Dgles2.c132 GLint border,
141 border, local
174 GLint border) {
183 border); local
660 GLint border,
670 border, local
127 glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) argument
167 glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
655 glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
/external/chromium_org/ppapi/shared_impl/
H A Dppb_opengles2_shared.cc218 GLint border,
224 target, level, internalformat, width, height, border, imageSize, data);
260 GLint border) {
264 target, level, internalformat, x, y, width, height, border);
1015 GLint border,
1026 border,
212 CompressedTexImage2D(PP_Resource context_id, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) argument
252 CopyTexImage2D(PP_Resource context_id, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
1009 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/platform/graphics/test/
H A DMockWebGraphicsContext3D.h96 virtual void compressedTexImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border, WGC3Dsizei imageSize, const void* data) { } argument
98 virtual void copyTexImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border) { } argument
192 virtual void texImage2D(WGC3Denum target, WGC3Dint level, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height, WGC3Dint border, WGC3Denum format, WGC3Denum type, const void* pixels) { } argument
/external/opencv/cvaux/include/
H A Dcvaux.h531 CvPoint2D32f border[2][4]; member in struct:CvStereoCamera
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_c_lib_autogen.h101 GLint border,
105 target, level, internalformat, width, height, border, imageSize, data);
126 GLint border) {
128 target, level, internalformat, x, y, width, height, border);
463 GLint border,
472 border,
912 GLint border,
921 border,
96 GLES2CompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) argument
119 GLES2CopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
458 GLES2TexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
907 GLES2AsyncTexImage2DCHROMIUM(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
H A Dgles2_implementation.cc1617 GLsizei height, GLint border, GLsizei image_size, const void* data) {
1623 << width << ", " << height << ", " << border << ", "
1630 if (border != 0) {
1631 SetGLError(GL_INVALID_VALUE, "glCompressedTexImage2D", "border != 0");
1741 GLsizei height, GLint border, GLenum format, GLenum type,
1748 << width << ", " << height << ", " << border << ", "
1756 if (border != 0) {
1757 SetGLError(GL_INVALID_VALUE, "glTexImage2D", "border != 0");
3863 GLsizei height, GLint border, GLenum format, GLenum type,
3870 << width << ", " << height << ", " << border << ", "
1615 CompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei image_size, const void* data) argument
1739 TexImage2D( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
3861 AsyncTexImage2DCHROMIUM( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
[all...]
H A Dgles2_trace_implementation_impl_autogen.h148 GLint border,
153 target, level, internalformat, width, height, border, imageSize, data);
177 GLint border) {
180 target, level, internalformat, x, y, width, height, border);
717 GLint border,
727 border,
1439 GLint border,
1449 border,
143 CompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) argument
170 CopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
712 TexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
1434 AsyncTexImage2DCHROMIUM(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) argument
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp64 RoundedRect border = style->getRoundedBorderFor(paintRect); local
65 paintInfo.context->clipRoundedRect(border);
83 // The theme will tell us whether or not we should also paint the CSS border.
221 RoundedRect border = obj.style()->getRoundedBorderFor(borderRect, includeLogicalLeftEdge, includeLogicalRightEdge); local
224 border.setRadii(segmentBorder.radii());
227 return border;
331 RoundedRect border = backgroundRoundedRectAdjustedForBleedAvoidance(obj, context, rect, bleedAvoidance, box, boxSize, includeLeftEdge, includeRightEdge); local
332 if (border.isRenderable()) {
333 context->fillRoundedRect(border, bgColor);
336 clipRoundedInnerRect(context, rect, border);
351 RoundedRect border = isBorderFill ? backgroundRoundedRectAdjustedForBleedAvoidance(obj, context, rect, bleedAvoidance, box, boxSize, includeLeftEdge, includeRightEdge) : getBackgroundRoundedRect(obj, rect, box, boxSize.width(), boxSize.height(), includeLeftEdge, includeRightEdge); local
1330 allCornersClippedOut(const RoundedRect& border, const LayoutRect& clipRect) argument
[all...]
/external/deqp/modules/egl/
H A DteglGLES2SharingThreadedTests.cpp1066 CopyTexImage2D (SharedPtr<Texture> texture, GLint level, GLint internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, bool useSync, bool serverSync);
1080 CopyTexImage2D::CopyTexImage2D (SharedPtr<Texture> texture, GLint level, GLint internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, bool useSync, bool serverSync) argument
1089 , m_border (border)
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp1410 void WebGLRenderingContextBase::compressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, ArrayBufferView* data) argument
1421 if (border) {
1422 synthesizeGLError(GL_INVALID_VALUE, "compressedTexImage2D", "border not 0");
1440 border, data->byteLength(), data->baseAddress());
1482 void WebGLRenderingContextBase::copyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
1486 if (!validateTexFuncParameters("copyTexImage2D", NotTexSubImage2D, target, level, internalformat, width, height, border, internalformat, GL_UNSIGNED_BYTE))
1508 webContext()->copyTexImage2D(target, level, internalformat, x, y, width, height, border);
3343 void WebGLRenderingContextBase::texImage2DBase(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels, ExceptionState& exceptionState) argument
3348 ASSERT(validateTexFuncParameters("texImage2D", NotTexSubImage2D, target, level, internalformat, width, height, border, format, type));
3352 webContext()->texImage2D(target, level, convertTexInternalFormat(internalformat, type), width, height, border, forma
3386 validateTexFunc(const char* functionName, TexFuncValidationFunctionType functionType, TexFuncValidationSourceType sourceType, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, GLint xoffset, GLint yoffset) argument
3459 texImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, ArrayBufferView* pixels, ExceptionState& exceptionState) argument
4790 validateTexFuncParameters(const char* functionName, TexFuncValidationFunctionType functionType, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp365 // It's possible for our border/padding to change, but for the overall logical width of the block to
1254 // (c) have border/padding,
1415 // If we use border-box sizing, have percentage padding, and our parent has changed width then the width available to our children has changed even
1902 // Note that we don't clip out overflow for positioned objects. We just stick to the border box.
1913 // FIXME: overflow: auto/scroll regions need more math here, since painting in the border box is different from painting in the padding box (one is scrolled, the other is
1989 // to the border of the root selection block.
2075 // The border can potentially be further extended by our containingBlock().
2083 // The border can potentially be further extended by our containingBlock().
2445 RoundedRect border = style()->getRoundedBorderFor(borderRect); local
2446 if (!locationInContainer.intersects(border))
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DlibGLESv2.cpp734 GLint border, GLsizei imageSize, const GLvoid* data)
737 "GLsizei height = %d, GLint border = %d, GLsizei imageSize = %d, const GLvoid* data = 0x%0.8p)",
738 target, level, internalformat, width, height, border, imageSize, data);
745 0, 0, width, height, border, GL_NONE, GL_NONE, data))
752 0, 0, 0, width, height, 1, border, GL_NONE, GL_NONE, data))
852 void __stdcall glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
855 "GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d, GLint border = %d)",
856 target, level, internalformat, x, y, width, height, border);
863 0, 0, x, y, width, height, border))
870 0, 0, 0, x, y, width, height, border))
733 glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data) argument
4099 glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels) argument
4970 glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels) argument
5111 glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data) argument
8282 glTexImage3DOES(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddlist.c2097 GLint x, GLint y, GLsizei width, GLint border)
2110 n[7].i = border;
2114 x, y, width, border));
2123 GLsizei height, GLint border)
2137 n[8].i = border;
2141 x, y, width, height, border));
4160 GLsizei width, GLint border,
4167 border, format, type, pixels));
4178 n[5].i = border;
4186 border, forma
2096 save_CopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) argument
2120 save_CopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
4158 save_TexImage1D(GLenum target, GLint level, GLint components, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
4193 save_TexImage2D(GLenum target, GLint level, GLint components, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
4229 save_TexImage3D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
4642 save_CompressedTexImage1DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid * data) argument
4678 save_CompressedTexImage2DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) argument
4715 save_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/v8/src/
H A Djsregexp.cc1765 int border,
1770 masm->CheckCharacterLT(border, below);
1773 masm->CheckCharacterGT(border - 1, above_or_equal);
1898 int* border) {
1906 *border = (ranges->at(start_index) & ~kMask) + kSize;
1908 if (ranges->at(*new_start_index) > *border) break;
1927 if (*border - 1 > String::kMaxOneByteCharCode && // Latin1 case.
1937 *border = new_border;
1946 if (ranges->at(*new_end_index) == *border) {
1949 if (*border >
1764 EmitBoundaryTest(RegExpMacroAssembler* masm, int border, Label* fall_through, Label* above_or_equal, Label* below) argument
1893 SplitSearchSpace(ZoneList<int>* ranges, int start_index, int end_index, int* new_start_index, int* new_end_index, int* border) argument
2053 int border = 0; local
[all...]
/external/mesa3d/src/mesa/main/
H A Ddlist.c2097 GLint x, GLint y, GLsizei width, GLint border)
2110 n[7].i = border;
2114 x, y, width, border));
2123 GLsizei height, GLint border)
2137 n[8].i = border;
2141 x, y, width, height, border));
4160 GLsizei width, GLint border,
4167 border, format, type, pixels));
4178 n[5].i = border;
4186 border, forma
2096 save_CopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) argument
2120 save_CopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
4158 save_TexImage1D(GLenum target, GLint level, GLint components, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
4193 save_TexImage2D(GLenum target, GLint level, GLint components, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
4229 save_TexImage3D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
4642 save_CompressedTexImage1DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid * data) argument
4678 save_CompressedTexImage2DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data) argument
4715 save_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/WebKit/Source/core/rendering/style/
H A DRenderStyle.h383 bool hasBorder() const { return surround->border.hasBorder(); }
476 const BorderData& border() const { return surround->border; } function in class:blink::RenderStyle
477 const BorderValue& borderLeft() const { return surround->border.left(); }
478 const BorderValue& borderRight() const { return surround->border.right(); }
479 const BorderValue& borderTop() const { return surround->border.top(); }
480 const BorderValue& borderBottom() const { return surround->border.bottom(); }
487 const NinePieceImage& borderImage() const { return surround->border.image(); }
488 StyleImage* borderImageSource() const { return surround->border.image().image(); }
489 const LengthBox& borderImageSlices() const { return surround->border
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dindirect.c2261 __glx_TexImage_1D2D( unsigned opcode, unsigned dim, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels ) argument
2277 (void) memcpy((void *)(gc->pc + 44), (void *)(&border), 4);
2299 (void) memcpy((void *)(pc + 48), (void *)(&border), 4);
2308 void __indirect_glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
2310 __glx_TexImage_1D2D(X_GLrop_TexImage1D, 1, target, level, internalformat, width, 1, border, format, type, pixels );
2314 void __indirect_glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
2316 __glx_TexImage_1D2D(X_GLrop_TexImage2D, 2, target, level, internalformat, width, height, border, format, type, pixels );
4086 void __indirect_glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) argument
4097 (void) memcpy((void *)(gc->pc + 28), (void *)(&border), 4);
4103 void __indirect_glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) argument
5470 __glx_TexImage_3D4D( unsigned opcode, unsigned dim, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei extent, GLint border, GLenum format, GLenum type, const GLvoid * pixels ) argument
5523 __indirect_glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid * pixels) argument
[all...]

Completed in 718 milliseconds

123456