summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/python/p_texture.i
blob: 2dd9e5050ea9fadfe222abbc83bfc008636fb24e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
 /**************************************************************************
 * 
 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
 * All Rights Reserved.
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 * 
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 **************************************************************************/

/**
 * @file
 * SWIG interface definion for Gallium types.
 *
 * @author Jose Fonseca <jrfonseca@tungstengraphics.com>
 */


%nodefaultctor pipe_texture;
%nodefaultctor st_surface;
%nodefaultctor pipe_buffer;

%nodefaultdtor pipe_texture;
%nodefaultdtor st_surface;
%nodefaultdtor pipe_buffer;

%ignore pipe_texture::screen;

%immutable st_surface::texture;
%immutable st_surface::face;
%immutable st_surface::level;
%immutable st_surface::zslice;

%newobject pipe_texture::get_surface;


%extend pipe_texture {
   
   ~pipe_texture() {
      struct pipe_texture *ptr = $self;
      pipe_texture_reference(&ptr, NULL);
   }
   
   unsigned get_width(unsigned level=0) {
      return u_minify($self->width0, level);
   }
   
   unsigned get_height(unsigned level=0) {
      return u_minify($self->height0, level);
   }
   
   unsigned get_depth(unsigned level=0) {
      return u_minify($self->depth0, level);
   }
  
   /** Get a surface which is a "view" into a texture */
   struct st_surface *
   get_surface(unsigned face=0, unsigned level=0, unsigned zslice=0)
   {
      struct st_surface *surface;
      
      if(face >= ($self->target == PIPE_TEXTURE_CUBE ? 6U : 1U))
         SWIG_exception(SWIG_ValueError, "face out of bounds");
      if(level > $self->last_level)
         SWIG_exception(SWIG_ValueError, "level out of bounds");
      if(zslice >= u_minify($self->depth0, level))
         SWIG_exception(SWIG_ValueError, "zslice out of bounds");
      
      surface = CALLOC_STRUCT(st_surface);
      if(!surface)
         return NULL;
      
      pipe_texture_reference(&surface->texture, $self);
      surface->face = face;
      surface->level = level;
      surface->zslice = zslice;
      
      return surface;

   fail:
      return NULL;
   }
   
};

struct st_surface
{
   %immutable;
   
   struct pipe_texture *texture;
   unsigned face;
   unsigned level;
   unsigned zslice;
   
};

%extend st_surface {
   
   %immutable;
   
   unsigned format;
   unsigned width;
   unsigned height;
   
   ~st_surface() {
      pipe_texture_reference(&$self->texture, NULL);
      FREE($self);
   }
   
   %cstring_output_allocate_size(char **STRING, int *LENGTH, free(*$1));
   void get_tile_raw(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, char **STRING, int *LENGTH)
   {
      struct pipe_texture *texture = $self->texture;
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
      unsigned stride;

      stride = util_format_get_stride(texture->format, w);
      *LENGTH = util_format_get_nblocksy(texture->format, h) * stride;
      *STRING = (char *) malloc(*LENGTH);
      if(!*STRING)
         return;

      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_READ,
                                          x, y, w, h);
      if(transfer) {
         pipe_get_tile_raw(pipe, transfer, 0, 0, w, h, *STRING, stride);
         pipe->tex_transfer_destroy(pipe, transfer);
      }
   }

   %cstring_input_binary(const char *STRING, unsigned LENGTH);
   void put_tile_raw(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, const char *STRING, unsigned LENGTH, unsigned stride = 0)
   {
      struct pipe_texture *texture = $self->texture;
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
     
      if(stride == 0)
         stride = util_format_get_stride(texture->format, w);
      
      if(LENGTH < util_format_get_nblocksy(texture->format, h) * stride)
         SWIG_exception(SWIG_ValueError, "offset must be smaller than buffer size");
         
      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_WRITE,
                                          x, y, w, h);
      if(!transfer)
         SWIG_exception(SWIG_MemoryError, "couldn't initiate transfer");
         
      pipe_put_tile_raw(pipe, transfer, 0, 0, w, h, STRING, stride);
      pipe->tex_transfer_destroy(pipe, transfer);

   fail:
      return;
   }

   void get_tile_rgba(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, float *rgba) 
   {
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_READ,
                                          x, y, w, h);
      if(transfer) {
         pipe_get_tile_rgba(pipe, transfer, 0, 0, w, h, rgba);
         pipe->tex_transfer_destroy(pipe, transfer);
      }
   }

   void
      put_tile_rgba(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, const float *rgba)
   {
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_WRITE,
                                          x, y, w, h);
      if(transfer) {
         pipe_put_tile_rgba(pipe, transfer, 0, 0, w, h, rgba);
         pipe->tex_transfer_destroy(pipe, transfer);
      }
   }

   %cstring_output_allocate_size(char **STRING, int *LENGTH, free(*$1));
   void
   get_tile_rgba8(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, char **STRING, int *LENGTH) 
   {
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
      float *rgba;
      unsigned char *rgba8;
      unsigned i, j, k;

      *LENGTH = 0;
      *STRING = NULL;
      
      if (!$self)
         return;

      *LENGTH = h*w*4;
      *STRING = (char *) malloc(*LENGTH);
      if(!*STRING)
         return;
      
      rgba = malloc(h*w*4*sizeof(float));
      if(!rgba)
         return;
      
      rgba8 = (unsigned char *) *STRING;

      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_READ,
                                          x, y,
                                          w, h);
      if(transfer) {
         pipe_get_tile_rgba(pipe, transfer, 0, 0, w, h, rgba);
         for(j = 0; j < h; ++j) {
            for(i = 0; i < w; ++i)
               for(k = 0; k <4; ++k)
                  rgba8[j*w*4 + i*4 + k] = float_to_ubyte(rgba[j*w*4 + i*4 + k]);
         }
         pipe->tex_transfer_destroy(pipe, transfer);
      }
      
      free(rgba);
   }

   void get_tile_z(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, unsigned *z)
   {
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_READ,
                                          x, y, w, h);
      if(transfer) {
         pipe_get_tile_z(pipe, transfer, 0, 0, w, h, z);
         pipe->tex_transfer_destroy(pipe, transfer);
      }
   }

   void put_tile_z(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, const unsigned *z)
   {
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_WRITE,
                                          x, y, w, h);
      if(transfer) {
         pipe_put_tile_z(pipe, transfer, 0, 0, w, h, z);
         pipe->tex_transfer_destroy(pipe, transfer);
      }
   }
   
/*
   void
   sample_rgba(float *rgba) {
      st_sample_surface($self, rgba);
   }
*/
   
   unsigned compare_tile_rgba(struct st_context *ctx, unsigned x, unsigned y, unsigned w, unsigned h, const float *rgba, float tol = 0.0) 
   {
      struct pipe_context *pipe = ctx->pipe;
      struct pipe_transfer *transfer;
      float *rgba2;
      const float *p1;
      const float *p2;
      unsigned i, j, n;
      
      rgba2 = MALLOC(h*w*4*sizeof(float));
      if(!rgba2)
         return ~0;

      transfer = pipe->get_tex_transfer(pipe,
                                          $self->texture,
                                          $self->face,
                                          $self->level,
                                          $self->zslice,
                                          PIPE_TRANSFER_READ,
                                          x, y, w, h);
      if(!transfer) {
         FREE(rgba2);
         return ~0;
      }

      pipe_get_tile_rgba(pipe, transfer, 0, 0, w, h, rgba2);
      pipe->tex_transfer_destroy(pipe, transfer);

      p1 = rgba;
      p2 = rgba2;
      n = 0;
      for(i = h*w; i; --i) {
         unsigned differs = 0;
         for(j = 4; j; --j) {
            float delta = *p2++ - *p1++;
            if (delta < -tol || delta > tol)
                differs = 1;
         }
         n += differs;
      }
      
      FREE(rgba2);
      
      return n;
   }

};

%{
   static enum pipe_format
   st_surface_format_get(struct st_surface *surface)
   {
      return surface->texture->format;
   }
   
   static unsigned
   st_surface_width_get(struct st_surface *surface)
   {
      return u_minify(surface->texture->width0, surface->level);
   }
   
   static unsigned
   st_surface_height_get(struct st_surface *surface)
   {
      return u_minify(surface->texture->height0, surface->level);
   }
%}

/* Avoid naming conflict with p_inlines.h's pipe_buffer_read/write */ 
%rename(read) read_; 
%rename(write) write_; 

%extend pipe_buffer {
   
   ~pipe_buffer() {
      struct pipe_buffer *ptr = $self;
      pipe_buffer_reference(&ptr, NULL);
   }
   
   unsigned __len__(void) 
   {
      assert(p_atomic_read(&$self->reference.count) > 0);
      return $self->size;
   }
   
   %cstring_output_allocate_size(char **STRING, int *LENGTH, free(*$1));
   void read_(char **STRING, int *LENGTH)
   {
      struct pipe_screen *screen = $self->screen;
      
      assert(p_atomic_read(&$self->reference.count) > 0);
      
      *LENGTH = $self->size;
      *STRING = (char *) malloc($self->size);
      if(!*STRING)
         return;
      
      pipe_buffer_read(screen, $self, 0, $self->size, *STRING);
   }
   
   %cstring_input_binary(const char *STRING, unsigned LENGTH);
   void write_(const char *STRING, unsigned LENGTH, unsigned offset = 0) 
   {
      struct pipe_screen *screen = $self->screen;
      
      assert(p_atomic_read(&$self->reference.count) > 0);
      
      if(offset > $self->size)
         SWIG_exception(SWIG_ValueError, "offset must be smaller than buffer size");

      if(offset + LENGTH > $self->size)
         SWIG_exception(SWIG_ValueError, "data length must fit inside the buffer");

      pipe_buffer_write(screen, $self, offset, LENGTH, STRING);

fail:
      return;
   }
};