You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
536 B
24 lines
536 B
//
|
|
// msaa.h
|
|
//
|
|
|
|
#ifndef MSAA_H
|
|
#define MSAA_H
|
|
|
|
// when we ditch atl, this should be a static class! we don't need to allocate any memory!
|
|
class CMSAAControl : public ITfMSAAControl,
|
|
public CComObjectRoot_CreateInstance<CMSAAControl>
|
|
{
|
|
public:
|
|
CMSAAControl() {}
|
|
|
|
BEGIN_COM_MAP_IMMX(CMSAAControl)
|
|
COM_INTERFACE_ENTRY(ITfMSAAControl)
|
|
END_COM_MAP_IMMX()
|
|
|
|
// ITfMSAAControl
|
|
STDMETHODIMP SystemEnableMSAA();
|
|
STDMETHODIMP SystemDisableMSAA();
|
|
};
|
|
|
|
#endif // MSAA_H
|