Searched refs:buffers (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_clear.c44 * Clear the given buffers to the specified values.
49 unsigned buffers,
60 buffers &= ~PIPE_CLEAR_DEPTHSTENCIL;
62 lp_setup_clear( llvmpipe->setup, color->f, depth, stencil, buffers );
48 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
H A Dlp_clear.h39 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers,
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_clear.c44 * Clear the given buffers to the specified values.
49 unsigned buffers,
60 buffers &= ~PIPE_CLEAR_DEPTHSTENCIL;
62 lp_setup_clear( llvmpipe->setup, color->f, depth, stencil, buffers );
48 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
H A Dlp_clear.h39 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_clear.h37 * Clear the given buffers to the specified values.
42 struct pipe_framebuffer_state *framebuffer, unsigned buffers,
45 if (buffers & PIPE_CLEAR_COLOR) {
53 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
55 pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
41 util_clear(struct pipe_context *pipe, struct pipe_framebuffer_state *framebuffer, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_clear.h38 softpipe_clear(struct pipe_context *pipe, unsigned buffers,
H A Dsp_clear.c44 * Clear the given buffers to the specified values.
48 softpipe_clear(struct pipe_context *pipe, unsigned buffers, argument
66 if (buffers & PIPE_CLEAR_COLOR) {
72 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_clear.h37 * Clear the given buffers to the specified values.
42 struct pipe_framebuffer_state *framebuffer, unsigned buffers,
45 if (buffers & PIPE_CLEAR_COLOR) {
53 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
55 pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
41 util_clear(struct pipe_context *pipe, struct pipe_framebuffer_state *framebuffer, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_clear.h38 softpipe_clear(struct pipe_context *pipe, unsigned buffers,
H A Dsp_clear.c44 * Clear the given buffers to the specified values.
48 softpipe_clear(struct pipe_context *pipe, unsigned buffers, argument
66 if (buffers & PIPE_CLEAR_COLOR) {
72 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
/external/chromium_org/media/audio/
H A Daudio_util.cc81 int buffers = 0; local
84 if (base::StringToInt(buffers_str, &buffers) && buffers > 0) {
85 return buffers;
88 // Use 4 buffers for Vista, 3 for everyone else:
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dbuffers.h2 * \file buffers.h
44 _mesa_DrawBuffersARB(GLsizei n, const GLenum *buffers);
47 _mesa_drawbuffers(struct gl_context *ctx, GLuint n, const GLenum *buffers,
/external/mesa3d/src/mesa/main/
H A Dbuffers.h2 * \file buffers.h
44 _mesa_DrawBuffersARB(GLsizei n, const GLenum *buffers);
47 _mesa_drawbuffers(struct gl_context *ctx, GLuint n, const GLenum *buffers,
/external/chromium_org/third_party/tlslite/tlslite/
H A DFileObject.py61 data = str(data) # XXX Should really reject non-string non-buffers
72 # XXX Should really reject non-string non-buffers
88 buffers = []
90 buffers.append(data)
100 buffers.append(data)
101 return "".join(buffers)
108 buffers = []
110 buffers.append(data)
118 buffers.append(data)
122 buffers[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_clear.c39 unsigned buffers,
62 if ((buffers & PIPE_CLEAR_COLOR) && fb->cbufs[0]) {
70 if ((buffers & PIPE_CLEAR_DEPTHSTENCIL) && fb->zsbuf) {
71 if (buffers & PIPE_CLEAR_DEPTH)
75 (buffers & PIPE_CLEAR_STENCIL))
107 svga_clear(struct pipe_context *pipe, unsigned buffers, argument
114 if (buffers & PIPE_CLEAR_COLOR)
121 ret = try_clear( svga, buffers, color, depth, stencil );
128 ret = try_clear( svga, buffers, color, depth, stencil );
38 try_clear(struct svga_context *svga, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
H A Dsvga_pipe_vertex.c40 const struct pipe_vertex_buffer *buffers)
48 memcmp(svga->curr.vb, buffers, count * sizeof buffers[0]) == 0)
53 pipe_resource_reference(&svga->curr.vb[i].buffer, buffers[i].buffer);
54 if (svga_buffer_is_user_buffer(buffers[i].buffer))
62 memcpy(svga->curr.vb, buffers, count * sizeof buffers[0]);
38 svga_set_vertex_buffers(struct pipe_context *pipe, unsigned count, const struct pipe_vertex_buffer *buffers) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_clear.c39 unsigned buffers,
62 if ((buffers & PIPE_CLEAR_COLOR) && fb->cbufs[0]) {
70 if ((buffers & PIPE_CLEAR_DEPTHSTENCIL) && fb->zsbuf) {
71 if (buffers & PIPE_CLEAR_DEPTH)
75 (buffers & PIPE_CLEAR_STENCIL))
107 svga_clear(struct pipe_context *pipe, unsigned buffers, argument
114 if (buffers & PIPE_CLEAR_COLOR)
121 ret = try_clear( svga, buffers, color, depth, stencil );
128 ret = try_clear( svga, buffers, color, depth, stencil );
38 try_clear(struct svga_context *svga, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil) argument
H A Dsvga_pipe_vertex.c40 const struct pipe_vertex_buffer *buffers)
48 memcmp(svga->curr.vb, buffers, count * sizeof buffers[0]) == 0)
53 pipe_resource_reference(&svga->curr.vb[i].buffer, buffers[i].buffer);
54 if (svga_buffer_is_user_buffer(buffers[i].buffer))
62 memcpy(svga->curr.vb, buffers, count * sizeof buffers[0]);
38 svga_set_vertex_buffers(struct pipe_context *pipe, unsigned count, const struct pipe_vertex_buffer *buffers) argument
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLDrawBuffers.h44 void drawBuffersWEBGL(const Vector<GC3Denum>& buffers);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_bitstream.h53 const void * const *buffers,
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_bitstream.h53 const void * const *buffers,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_driver.c96 nouveau_clear(struct gl_context *ctx, GLbitfield buffers) argument
109 buf = buffers & (1 << i);
124 buffers &= ~buf;
128 (buffers & BUFFER_BIT_DEPTH &&
130 (buffers & BUFFER_BIT_STENCIL ?
140 buffers &= ~(BUFFER_BIT_DEPTH | BUFFER_BIT_STENCIL);
144 if (buffers)
145 _mesa_meta_Clear(ctx, buffers);
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_driver.c96 nouveau_clear(struct gl_context *ctx, GLbitfield buffers) argument
109 buf = buffers & (1 << i);
124 buffers &= ~buf;
128 (buffers & BUFFER_BIT_DEPTH &&
130 (buffers & BUFFER_BIT_STENCIL ?
140 buffers &= ~(BUFFER_BIT_DEPTH | BUFFER_BIT_STENCIL);
144 if (buffers)
145 _mesa_meta_Clear(ctx, buffers);
/external/chromium_org/media/video/
H A Dmock_video_decode_accelerator.h30 void(const std::vector<PictureBuffer>& buffers));
/external/chromium_org/ppapi/c/dev/
H A Dppp_video_capture_dev.h37 * and the array of buffers that the browser will use to send pixel data.
41 * |buffer_count| is the number of buffers, and |buffers| is the array of
42 * PPB_Buffer_Dev buffers.
44 * Note: the buffers are passed without an extra reference. The plugin is
45 * expected to add its own references to the buffers.
51 const PP_Resource buffers[]);
63 * - PP_ERROR_NOMEMORY: not enough memory was available to allocate buffers.

Completed in 386 milliseconds

1234567891011>>