forked from MoonsideGames/MoonWorks
Compare commits
2 Commits
c43df10c2a
...
ad5de7874c
Author | SHA1 | Date |
---|---|---|
Caleb Cornett | ad5de7874c | |
TheSpydog | 030745361b |
|
@ -102,7 +102,7 @@ namespace MoonWorks.Graphics
|
||||||
|
|
||||||
public CommandBuffer AcquireCommandBuffer()
|
public CommandBuffer AcquireCommandBuffer()
|
||||||
{
|
{
|
||||||
return new CommandBuffer(this, Refresh.Refresh_AcquireCommandBuffer(Handle, 0));
|
return new CommandBuffer(this, Refresh.Refresh_AcquireCommandBuffer(Handle));
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe void Submit(CommandBuffer commandBuffer)
|
public unsafe void Submit(CommandBuffer commandBuffer)
|
||||||
|
|
|
@ -272,14 +272,12 @@ namespace MoonWorks.Graphics
|
||||||
const uint DDS_MAGIC = 0x20534444;
|
const uint DDS_MAGIC = 0x20534444;
|
||||||
const uint DDS_HEADERSIZE = 124;
|
const uint DDS_HEADERSIZE = 124;
|
||||||
const uint DDS_PIXFMTSIZE = 32;
|
const uint DDS_PIXFMTSIZE = 32;
|
||||||
const uint DDSD_CAPS = 0x1;
|
|
||||||
const uint DDSD_HEIGHT = 0x2;
|
const uint DDSD_HEIGHT = 0x2;
|
||||||
const uint DDSD_WIDTH = 0x4;
|
const uint DDSD_WIDTH = 0x4;
|
||||||
const uint DDSD_PITCH = 0x8;
|
const uint DDSD_PITCH = 0x8;
|
||||||
const uint DDSD_FMT = 0x1000;
|
|
||||||
const uint DDSD_LINEARSIZE = 0x80000;
|
const uint DDSD_LINEARSIZE = 0x80000;
|
||||||
const uint DDSD_REQ = (
|
const uint DDSD_REQ = (
|
||||||
DDSD_CAPS | DDSD_HEIGHT | DDSD_WIDTH | DDSD_FMT
|
DDSD_HEIGHT | DDSD_WIDTH
|
||||||
);
|
);
|
||||||
const uint DDSCAPS_MIPMAP = 0x400000;
|
const uint DDSCAPS_MIPMAP = 0x400000;
|
||||||
const uint DDSCAPS_TEXTURE = 0x1000;
|
const uint DDSCAPS_TEXTURE = 0x1000;
|
||||||
|
|
Loading…
Reference in New Issue