summaryrefslogtreecommitdiff
path: root/libkmstest/extcpuframebuffer.h
blob: 172841fc6d02dcfb8e34042a1fcfb366590da434 (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
#pragma once

#include "kms++.h"

namespace kms
{

class ExtCPUFramebuffer : public IMappedFramebuffer
{
public:
	ExtCPUFramebuffer(uint32_t width, uint32_t height, PixelFormat format,
			  uint8_t* buffer, uint32_t pitch);
	ExtCPUFramebuffer(uint32_t width, uint32_t height, PixelFormat format,
			  uint8_t* buffers[4], uint32_t pitches[4]);
	virtual ~ExtCPUFramebuffer();

	uint32_t width() const { return m_width; }
	uint32_t height() const { return m_height; }

	PixelFormat format() const { return m_format; }
	unsigned num_planes() const { return m_num_planes; }

	uint32_t stride(unsigned plane) const { return m_planes[plane].stride; }
	uint32_t size(unsigned plane) const { return m_planes[plane].size; }
	uint32_t offset(unsigned plane) const { return 0; }
	uint8_t* map(unsigned plane) { return m_planes[plane].map; }

private:
	struct FramebufferPlane {
		uint32_t size;
		uint32_t stride;
		uint8_t *map;
	};

	uint32_t m_width;
	uint32_t m_height;
	PixelFormat m_format;

	unsigned m_num_planes;
	struct FramebufferPlane m_planes[4];
};
}
pt">= sis_final_context; dev->driver.ioctls = sis_ioctls; dev->driver.max_ioctl = sis_max_ioctl; dev->driver.name = DRIVER_NAME; dev->driver.desc = DRIVER_DESC; dev->driver.date = DRIVER_DATE; dev->driver.major = DRIVER_MAJOR; dev->driver.minor = DRIVER_MINOR; dev->driver.patchlevel = DRIVER_PATCHLEVEL; dev->driver.use_agp = 1; dev->driver.use_mtrr = 1; } #ifdef __FreeBSD__ static int sis_probe(device_t dev) { return drm_probe(dev, sis_pciidlist); } static int sis_attach(device_t nbdev) { drm_device_t *dev = device_get_softc(nbdev); bzero(dev, sizeof(drm_device_t)); sis_configure(dev); return drm_attach(nbdev, sis_pciidlist); } static device_method_t sis_methods[] = { /* Device interface */ DEVMETHOD(device_probe, sis_probe), DEVMETHOD(device_attach, sis_attach), DEVMETHOD(device_detach, drm_detach), { 0, 0 } }; static driver_t sis_driver = { "drm", sis_methods, sizeof(drm_device_t) }; extern devclass_t drm_devclass; #if __FreeBSD_version >= 700010 DRIVER_MODULE(sisdrm, vgapci, sis_driver, drm_devclass, 0, 0); #else DRIVER_MODULE(sisdrm, pci, sis_driver, drm_devclass, 0, 0); #endif MODULE_DEPEND(sisdrm, drm, 1, 1, 1); #elif defined(__NetBSD__) || defined(__OpenBSD__) #ifdef _LKM CFDRIVER_DECL(sis, DV_TTY, NULL); #else CFATTACH_DECL(sis, sizeof(drm_device_t), drm_probe, drm_attach, drm_detach, drm_activate); #endif #endif