2013-06-25 14:15:09 +00:00
|
|
|
// Copyright (c) 2013- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-01-11 05:43:41 +00:00
|
|
|
#include "GPU/Software/DrawPixel.h"
|
2021-11-20 22:22:55 +00:00
|
|
|
#include "GPU/Software/FuncId.h"
|
2022-01-11 05:43:41 +00:00
|
|
|
#include "GPU/Software/Sampler.h"
|
2021-11-20 22:22:55 +00:00
|
|
|
#include "GPU/Software/TransformUnit.h" // for DrawingCoords
|
2013-06-25 14:15:09 +00:00
|
|
|
|
2022-01-02 00:25:34 +00:00
|
|
|
#ifdef _DEBUG
|
|
|
|
#define SOFTGPU_MEMORY_TAGGING_BASIC
|
|
|
|
#endif
|
|
|
|
// #define SOFTGPU_MEMORY_TAGGING_DETAILED
|
|
|
|
|
2013-10-07 08:02:58 +00:00
|
|
|
struct GPUDebugBuffer;
|
2022-01-14 03:07:41 +00:00
|
|
|
struct BinCoords;
|
2013-10-07 08:02:58 +00:00
|
|
|
|
2013-06-25 14:15:09 +00:00
|
|
|
namespace Rasterizer {
|
|
|
|
|
2022-01-11 05:43:41 +00:00
|
|
|
struct RasterizerState {
|
|
|
|
PixelFuncID pixelID;
|
|
|
|
SamplerID samplerID;
|
|
|
|
SingleFunc drawPixel;
|
|
|
|
Sampler::LinearFunc linear;
|
|
|
|
Sampler::NearestFunc nearest;
|
2022-01-21 02:17:23 +00:00
|
|
|
uint32_t texaddr[8]{};
|
2022-01-11 08:00:03 +00:00
|
|
|
int texbufw[8]{};
|
|
|
|
u8 *texptr[8]{};
|
2022-01-15 23:20:21 +00:00
|
|
|
float textureLodSlope;
|
2022-01-16 02:20:25 +00:00
|
|
|
int screenOffsetX;
|
|
|
|
int screenOffsetY;
|
2022-01-12 03:42:40 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
uint8_t maxTexLevel : 3;
|
|
|
|
bool enableTextures : 1;
|
|
|
|
uint8_t texLevelMode : 2;
|
|
|
|
bool shadeGouraud : 1;
|
|
|
|
bool throughMode : 1;
|
|
|
|
int8_t texLevelOffset : 8;
|
|
|
|
bool mipFilt : 1;
|
|
|
|
bool minFilt : 1;
|
|
|
|
bool magFilt : 1;
|
2022-01-15 21:17:40 +00:00
|
|
|
bool antialiasLines : 1;
|
2022-01-12 03:42:40 +00:00
|
|
|
};
|
|
|
|
|
2022-01-12 05:23:29 +00:00
|
|
|
#if defined(SOFTGPU_MEMORY_TAGGING_DETAILED) || defined(SOFTGPU_MEMORY_TAGGING_BASIC)
|
|
|
|
uint32_t listPC;
|
|
|
|
#endif
|
|
|
|
|
2022-01-12 03:42:40 +00:00
|
|
|
GETexLevelMode TexLevelMode() const {
|
|
|
|
return GETexLevelMode(texLevelMode);
|
|
|
|
}
|
2022-01-11 05:43:41 +00:00
|
|
|
};
|
|
|
|
|
2022-01-11 08:00:03 +00:00
|
|
|
void ComputeRasterizerState(RasterizerState *state);
|
|
|
|
|
2013-07-24 08:42:04 +00:00
|
|
|
// Draws a triangle if its vertices are specified in counter-clockwise order
|
2022-01-14 03:07:41 +00:00
|
|
|
void DrawTriangle(const VertexData &v0, const VertexData &v1, const VertexData &v2, const BinCoords &range, const RasterizerState &state);
|
2022-02-09 07:11:12 +00:00
|
|
|
void DrawRectangle(const VertexData &v0, const VertexData &v1, const BinCoords &range, const RasterizerState &state);
|
2022-01-14 03:07:41 +00:00
|
|
|
void DrawPoint(const VertexData &v0, const BinCoords &range, const RasterizerState &state);
|
|
|
|
void DrawLine(const VertexData &v0, const VertexData &v1, const BinCoords &range, const RasterizerState &state);
|
|
|
|
void ClearRectangle(const VertexData &v0, const VertexData &v1, const BinCoords &range, const RasterizerState &state);
|
2013-06-25 14:15:09 +00:00
|
|
|
|
2014-06-15 16:30:37 +00:00
|
|
|
bool GetCurrentTexture(GPUDebugBuffer &buffer, int level);
|
2013-10-07 08:02:58 +00:00
|
|
|
|
2019-10-28 08:33:30 +00:00
|
|
|
// Shared functions with RasterizerRectangle.cpp
|
2021-11-20 22:22:55 +00:00
|
|
|
Vec3<int> AlphaBlendingResult(const PixelFuncID &pixelID, const Vec4<int> &source, const Vec4<int> &dst);
|
2019-10-28 08:33:30 +00:00
|
|
|
|
|
|
|
} // namespace Rasterizer
|