mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
100 lines
2.6 KiB
C++
100 lines
2.6 KiB
C++
// Copyright (c) 2012- 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
|
|
|
|
#include <vector>
|
|
#include "GPU/Common/GPUDebugInterface.h"
|
|
#include "Windows/W32Util/DialogManager.h"
|
|
#include "Windows/W32Util/Misc.h"
|
|
|
|
class VertexDecoder;
|
|
|
|
class CtrlVertexList: public GenericListControl {
|
|
public:
|
|
CtrlVertexList(HWND hwnd);
|
|
~CtrlVertexList();
|
|
|
|
void SetRaw(bool raw) {
|
|
raw_ = raw;
|
|
Update();
|
|
}
|
|
|
|
protected:
|
|
virtual bool WindowMessage(UINT msg, WPARAM wParam, LPARAM lParam, LRESULT& returnValue) { return false; };
|
|
virtual void GetColumnText(wchar_t *dest, int row, int col);
|
|
virtual int GetRowCount();
|
|
|
|
private:
|
|
void FormatVertCol(wchar_t *dest, const GPUDebugVertex &vert, int col);
|
|
void FormatVertColRaw(wchar_t *dest, int row, int col);
|
|
void FormatVertColRawType(wchar_t *dest, const void *data, int type, int offset);
|
|
void FormatVertColRawColor(wchar_t *dest, const void *data, int type);
|
|
|
|
std::vector<GPUDebugVertex> vertices;
|
|
std::vector<u16> indices;
|
|
int rowCount_;
|
|
bool raw_;
|
|
VertexDecoder *decoder;
|
|
};
|
|
|
|
class TabVertices : public Dialog {
|
|
public:
|
|
TabVertices(HINSTANCE _hInstance, HWND _hParent);
|
|
~TabVertices();
|
|
|
|
virtual void Update() {
|
|
values->Update();
|
|
}
|
|
|
|
protected:
|
|
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
private:
|
|
void UpdateSize(WORD width, WORD height);
|
|
|
|
CtrlVertexList *values;
|
|
};
|
|
|
|
class CtrlMatrixList: public GenericListControl {
|
|
public:
|
|
CtrlMatrixList(HWND hwnd);
|
|
|
|
protected:
|
|
virtual bool WindowMessage(UINT msg, WPARAM wParam, LPARAM lParam, LRESULT& returnValue) { return false; };
|
|
virtual void GetColumnText(wchar_t *dest, int row, int col);
|
|
virtual int GetRowCount();
|
|
};
|
|
|
|
class TabMatrices : public Dialog {
|
|
public:
|
|
TabMatrices(HINSTANCE _hInstance, HWND _hParent);
|
|
~TabMatrices();
|
|
|
|
virtual void Update() {
|
|
values->Update();
|
|
}
|
|
|
|
protected:
|
|
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
private:
|
|
void UpdateSize(WORD width, WORD height);
|
|
|
|
CtrlMatrixList *values;
|
|
};
|