mirror of
https://github.com/fadden/6502bench.git
synced 2025-04-04 09:29:51 +00:00
Add GetPixelIndex() to VisBitmap8
This commit is contained in:
parent
5a400ab738
commit
cf4086ae26
@ -55,13 +55,15 @@ namespace PluginCommon {
|
||||
mNextColorIdx = 0;
|
||||
}
|
||||
|
||||
// TODO: add GetPixelIndex, which returns the index we passed into SetPixelIndex
|
||||
|
||||
public int GetPixel(int x, int y) {
|
||||
byte pix = mData[x + y * Width];
|
||||
return mPalette[pix];
|
||||
}
|
||||
|
||||
public byte GetPixelIndex(int x, int y) {
|
||||
return mData[x + y * Width];
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets the color for a single pixel.
|
||||
/// </summary>
|
||||
|
Loading…
x
Reference in New Issue
Block a user