summaryrefslogtreecommitdiff
path: root/shared-core/nv40_graph.c
diff options
context:
space:
mode:
authorMichel Dänzer <michel@tungstengraphics.com>2007-06-15 10:25:50 +0200
committerMichel Dänzer <michel@tungstengraphics.com>2007-06-15 10:25:50 +0200
commit82e2c3304d3f1697537b73a2c888c8c6b1b6cdc8 (patch)
tree35ac4019b776499da31220d295dd4607a56c3284 /shared-core/nv40_graph.c
parent914a810a82af6f82e69a94448570772f20a94953 (diff)
Wake up vblank waitqueue in drm_handle_vblank().
Diffstat (limited to 'shared-core/nv40_graph.c')
0 files changed, 0 insertions, 0 deletions
span class="hl com"> * 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. * */ #ifndef __NV50_CURSOR_H__ #define __NV50_CURSOR_H__ #include "nv50_display.h" struct nv50_crtc; struct nv50_cursor { struct mem_block *block; int x, y; bool visible; bool enabled; int (*show) (struct nv50_crtc *crtc); int (*hide) (struct nv50_crtc *crtc); int (*set_pos) (struct nv50_crtc *crtc, int x, int y); int (*set_offset) (struct nv50_crtc *crtc); int (*set_bo) (struct nv50_crtc *crtc, drm_handle_t handle); int (*enable) (struct nv50_crtc *crtc); int (*disable) (struct nv50_crtc *crtc);