Actualmente estoy tratando de acostumbrarme a la API de DirectX y me pregunto cuál es el enfoque habitual para representar un sprite en DirectX 11 (por ejemplo, para un clon de tetris).¿Cuál es la mejor práctica para renderizar sprites en DirectX 11?
¿Hay una interfaz similar a ID3DX10Sprite
, y si no, cuál sería el método habitual para dibujar sprites en DirectX 11?
Editar: Aquí está el código HLSL que trabajó para mí (el cálculo de la proyección de coordenadas que se podría hacer mejor):
struct SpriteData
{
float2 position;
float2 size;
float4 color;
};
struct VSOut
{
float4 position : SV_POSITION;
float4 color : COLOR;
};
cbuffer ScreenSize : register(b0)
{
float2 screenSize;
float2 padding; // cbuffer must have at least 16 bytes
}
StructuredBuffer<SpriteData> spriteData : register(t0);
float2 GetVertexPosition(uint VID)
{
[branch] switch(VID)
{
case 0:
return float2(0, 0);
case 1:
return float2(1, 0);
case 2:
return float2(0, 1);
default:
return float2(1, 1);
}
}
float4 ComputePosition(float2 positionInScreenSpace, float2 size, float2 vertexPosition)
{
float2 origin = float2(-1, 1);
float2 vertexPositionInScreenSpace = positionInScreenSpace + (size * vertexPosition);
return float4(origin.x + (vertexPositionInScreenSpace.x/(screenSize.x/2)), origin.y - (vertexPositionInScreenSpace.y/(screenSize.y/2)), 1, 1);
}
VSOut VShader(uint VID : SV_VertexID, uint SIID : SV_InstanceID)
{
VSOut output;
output.color = spriteData[SIID].color;
output.position = ComputePosition(spriteData[SIID].position, spriteData[SIID].size, GetVertexPosition(VID));
return output;
}
float4 PShader(float4 position : SV_POSITION, float4 color : COLOR) : SV_TARGET
{
return color;
}
Podría darme un ejemplo de código corto por favor? Me cuesta empezar con el buffer. –
Eche un vistazo a todas las muestras D3D11 de DXSDK, y observe cuidadosamente cómo lo hacen para crear búferes, vincularlos, actualizarlos, etc. – Stringer
Wow, gracias. Esto realmente me ayudó a comenzar :) –