~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to src/gallium/frontends/dri/dri_drawable.h

  • Committer: mmach
  • Date: 2022-09-22 19:58:36 UTC
  • Revision ID: netbit73@gmail.com-20220922195836-9nl9joew85y8d25o
2022-07-04 12:44:28

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************
 
2
 *
 
3
 * Copyright 2009, VMware, Inc.
 
4
 * All Rights Reserved.
 
5
 *
 
6
 * Permission is hereby granted, free of charge, to any person obtaining a
 
7
 * copy of this software and associated documentation files (the
 
8
 * "Software"), to deal in the Software without restriction, including
 
9
 * without limitation the rights to use, copy, modify, merge, publish,
 
10
 * distribute, sub license, and/or sell copies of the Software, and to
 
11
 * permit persons to whom the Software is furnished to do so, subject to
 
12
 * the following conditions:
 
13
 *
 
14
 * The above copyright notice and this permission notice (including the
 
15
 * next paragraph) shall be included in all copies or substantial portions
 
16
 * of the Software.
 
17
 *
 
18
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
19
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
20
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
 
21
 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
 
22
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 
23
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 
24
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
25
 *
 
26
 **************************************************************************/
 
27
 
 
28
#ifndef DRI_DRAWABLE_H
 
29
#define DRI_DRAWABLE_H
 
30
 
 
31
#include "pipe/p_compiler.h"
 
32
#include "pipe/p_format.h"
 
33
#include "frontend/api.h"
 
34
#include "dri_util.h"
 
35
 
 
36
struct pipe_surface;
 
37
struct st_framebuffer;
 
38
struct dri_context;
 
39
 
 
40
struct dri_drawable
 
41
{
 
42
   struct st_framebuffer_iface base;
 
43
   struct st_visual stvis;
 
44
 
 
45
   struct dri_screen *screen;
 
46
 
 
47
   /* dri */
 
48
   __DRIdrawable *dPriv;
 
49
   __DRIscreen *sPriv;
 
50
 
 
51
   __DRIbuffer old[__DRI_BUFFER_COUNT];
 
52
   unsigned old_num;
 
53
   unsigned old_w;
 
54
   unsigned old_h;
 
55
 
 
56
   struct pipe_box *damage_rects;
 
57
   unsigned int num_damage_rects;
 
58
 
 
59
   struct pipe_resource *textures[ST_ATTACHMENT_COUNT];
 
60
   struct pipe_resource *msaa_textures[ST_ATTACHMENT_COUNT];
 
61
   unsigned int texture_mask, texture_stamp;
 
62
 
 
63
   struct pipe_fence_handle *throttle_fence;
 
64
   bool flushing; /* prevents recursion in dri_flush */
 
65
 
 
66
   /* hooks filled in by dri2 & drisw */
 
67
   void (*allocate_textures)(struct dri_context *ctx,
 
68
                             struct dri_drawable *drawable,
 
69
                             const enum st_attachment_type *statts,
 
70
                             unsigned count);
 
71
 
 
72
   void (*update_drawable_info)(struct dri_drawable *drawable);
 
73
 
 
74
   bool (*flush_frontbuffer)(struct dri_context *ctx,
 
75
                             struct dri_drawable *drawable,
 
76
                             enum st_attachment_type statt);
 
77
 
 
78
   void (*update_tex_buffer)(struct dri_drawable *drawable,
 
79
                             struct dri_context *ctx,
 
80
                             struct pipe_resource *res);
 
81
   void (*flush_swapbuffers)(struct dri_context *ctx,
 
82
                             struct dri_drawable *drawable);
 
83
};
 
84
 
 
85
static inline struct dri_drawable *
 
86
dri_drawable(__DRIdrawable * driDrawPriv)
 
87
{
 
88
   return (struct dri_drawable *) (driDrawPriv)
 
89
      ? driDrawPriv->driverPrivate : NULL;
 
90
}
 
91
 
 
92
/***********************************************************************
 
93
 * dri_drawable.c
 
94
 */
 
95
bool
 
96
dri_create_buffer(__DRIscreen * sPriv,
 
97
                  __DRIdrawable * dPriv,
 
98
                  const struct gl_config * visual, bool isPixmap);
 
99
 
 
100
void dri_destroy_buffer(__DRIdrawable * dPriv);
 
101
 
 
102
void
 
103
dri_drawable_get_format(struct dri_drawable *drawable,
 
104
                        enum st_attachment_type statt,
 
105
                        enum pipe_format *format,
 
106
                        unsigned *bind);
 
107
 
 
108
void
 
109
dri_pipe_blit(struct pipe_context *pipe,
 
110
              struct pipe_resource *dst,
 
111
              struct pipe_resource *src);
 
112
 
 
113
void
 
114
dri_flush(__DRIcontext *cPriv,
 
115
          __DRIdrawable *dPriv,
 
116
          unsigned flags,
 
117
          enum __DRI2throttleReason reason);
 
118
 
 
119
extern const __DRItexBufferExtension driTexBufferExtension;
 
120
extern const __DRI2throttleExtension dri2ThrottleExtension;
 
121
#endif
 
122
 
 
123
/* vim: set sw=3 ts=8 sts=3 expandtab: */