summaryrefslogtreecommitdiff
path: root/bsd-core/mga/Makefile
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2007-06-24 18:54:36 +1000
committerBen Skeggs <skeggsb@gmail.com>2007-06-24 18:54:36 +1000
commit5c7c07fd49b154623f9dfdab1fe1f2cda8508036 (patch)
treeb11fdec6462626812a4e4eea71aba5f0e4b8b5b1 /bsd-core/mga/Makefile
parent068ffc1e1bf5607f836839a1fc621a95547251e3 (diff)
nouveau: rename engtab functions
Diffstat (limited to 'bsd-core/mga/Makefile')
0 files changed, 0 insertions, 0 deletions
"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); }; int nv50_cursor_create(struct nv50_crtc *crtc); int nv50_cursor_destroy(struct nv50_crtc *crtc); #endif /* __NV50_CURSOR_H__ */