~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/i965/intel_regions.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 
92
92
/* Upload data to a rectangular sub-region
93
93
 */
94
 
void intel_region_data(struct intel_context *intel, 
95
 
                       struct intel_region *dest,
96
 
                       GLuint dest_offset,
97
 
                       GLuint destx, GLuint desty,
98
 
                       const void *src, GLuint src_stride,
99
 
                       GLuint srcx, GLuint srcy,
100
 
                       GLuint width, GLuint height);
 
94
GLboolean intel_region_data(struct intel_context *intel, 
 
95
                            struct intel_region *dest,
 
96
                            GLuint dest_offset,
 
97
                            GLuint destx, GLuint desty,
 
98
                            const void *src, GLuint src_stride,
 
99
                            GLuint srcx, GLuint srcy,
 
100
                            GLuint width, GLuint height);
101
101
                          
102
102
/* Copy rectangular sub-regions
103
103
 */