mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-30 20:55:44 +00:00
19 lines
411 B
C#
19 lines
411 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Graphics
|
|||
|
{
|
|||
|
class RgbaTexture2D : Texture2D
|
|||
|
{
|
|||
|
public RgbaTexture2D(int width, int height)
|
|||
|
: base(width, height)
|
|||
|
{ }
|
|||
|
|
|||
|
protected override PixelInternalFormat InternalFormat
|
|||
|
{
|
|||
|
get { return PixelInternalFormat.CompressedRgba; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|