Graphics: Move Gal/Texture to Texture
This commit is contained in:
parent
9ab3690839
commit
85ad59c40e
5 changed files with 1913 additions and 1912 deletions
|
@ -1,5 +1,5 @@
|
||||||
using OpenTK.Graphics.OpenGL;
|
using OpenTK.Graphics.OpenGL;
|
||||||
using Ryujinx.Graphics.Gal.Texture;
|
using Ryujinx.Graphics.Texture;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.OpenGL
|
namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
|
|
|
@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.Texture
|
namespace Ryujinx.Graphics.Texture
|
||||||
{
|
{
|
||||||
public class ASTCDecoderException : Exception
|
public class ASTCDecoderException : Exception
|
||||||
{
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.Texture
|
namespace Ryujinx.Graphics.Texture
|
||||||
{
|
{
|
||||||
class ASTCPixel
|
class ASTCPixel
|
||||||
{
|
{
|
|
@ -1,11 +1,12 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.Texture
|
namespace Ryujinx.Graphics.Texture
|
||||||
{
|
{
|
||||||
public class BitArrayStream
|
public class BitArrayStream
|
||||||
{
|
{
|
||||||
public BitArray BitsArray;
|
public BitArray BitsArray;
|
||||||
|
|
||||||
public int Position { get; private set; }
|
public int Position { get; private set; }
|
||||||
|
|
||||||
public BitArrayStream(BitArray BitArray)
|
public BitArrayStream(BitArray BitArray)
|
|
@ -1,7 +1,7 @@
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.Texture
|
namespace Ryujinx.Graphics.Texture
|
||||||
{
|
{
|
||||||
public struct IntegerEncoded
|
public struct IntegerEncoded
|
||||||
{
|
{
|
Loading…
Add table
Add a link
Reference in a new issue